/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #ffffff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #f4edc3;
    box-shadow: none;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 20px;
    position: relative;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    position: absolute;
    left: 20px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #000;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-link {
    font-size: 14px;
    letter-spacing: 0.05em;
    padding: 10px 20px;
    position: relative;
    color: #2c2c2c;
    font-weight: 400;
}

.nav-link:hover,
.nav-link.active {
    color: #000000;
}

.dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f4edc3;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 10px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-top: 1px solid #f0f0f0;
}

.dropdown-menu li:first-child {
    border-top: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    font-size: 13px;
    color: #000;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
}

/* ===== HERO SECTION ===== */
.hero {
    background-color: #f4edc3;
    padding: 150px 0 80px;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.hero-logo {
    margin-bottom: 40px;
}

.logo-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.logo-four {
    font-size: 120px;
    color: #e8998d;
    line-height: 1;
    font-weight: 400;
}

.logo-main {
    font-size: 48px;
    color: #000000;
    line-height: 0.95;
    font-weight: 700;
    text-align: left;
    letter-spacing: 0.05em;
}

.hero-subtitle {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.25em;
    margin-bottom: 40px;
    color: #2c2c2c;
    text-transform: uppercase;
}

.social-bar {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-bar a {
    color: #2c2c2c;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-bar a:hover {
    opacity: 1;
    color: #000000;
}

.social-bar svg {
    width: 19px;
    height: 19px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.cta-text h2 {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 40px;
}

.cta-button {
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    padding: 15px 35px;
    font-size: 13px;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    background-color: #000000;
    color: #ffffff;
}

.cta-about h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-about h3 a {
    text-decoration: underline;
}

.cta-about p {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
    font-weight: 300;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 80px 0;
    background-color: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.service-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-item:hover img {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
}

.service-overlay h3 {
    color: #ffffff;
    font-family: 'Raleway', sans-serif;
    font-size: 32px;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.gallery-category {
    margin-bottom: 80px;
}

.gallery-category:last-child {
    margin-bottom: 0;
}

.gallery-category-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #2c2c2c;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    aspect-ratio: 3 / 4;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== INSPIRATIONAL QUOTE SECTION ===== */
.quote-section {
    padding: 60px 0;
    background-color: #e8e8e8;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-content {
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin: 0 auto;
    overflow-x: auto;
}

.quote-text {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2c2c2c;
    font-weight: 400;
    margin: 0;
    white-space: nowrap;
}

.quote-line {
    display: inline;
    white-space: nowrap;
}

@keyframes typewriter {
    from {
        max-width: 0;
    }
    to {
        max-width: 100%;
    }
}

@keyframes blink {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: #2c2c2c;
    }
}

/* ===== TEAM SECTION ===== */
.team-section {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.section-title {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #2c2c2c;
    font-family: 'Helvetica', Arial, sans-serif;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-photo {
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 50%;
    width: 180px;
    height: 180px;
    flex-shrink: 0;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .team-photo img {
    transform: scale(1.1);
}

.team-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c2c2c;
    line-height: 1.3;
}

.team-role {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.team-bio {
    font-size: 12px;
    line-height: 1.6;
    color: #666;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    margin-bottom: 12px;
    text-align: left;
    max-width: 260px;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #f4edc3;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand img {
    max-width: 192px;
    margin-bottom: 30px;
}

.social-bar-footer {
    display: flex;
    gap: 15px;
}

.social-bar-footer a {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social-bar-footer a:hover {
    opacity: 1;
}

.social-bar-footer img {
    width: 22px;
    height: 22px;
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.footer-column address {
    font-style: normal;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.05em;
}

.footer-column address a {
    text-decoration: underline;
}

.footer-column address a:hover {
    color: #666;
}

.footer-nav ul {
    font-size: 14px;
    line-height: 2;
}

.footer-nav a {
    display: inline-block;
    padding: 5px 0;
}

.footer-nav a:hover {
    color: #666;
}

.footer-subnav {
    padding-left: 20px;
    font-size: 13px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.newsletter-form input {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    font-family: inherit;
}

.newsletter-form button {
    padding: 12px 20px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #333;
}

.form-success {
    display: none;
    font-size: 12px;
    color: #28a745;
    margin-top: 10px;
    font-weight: 700;
}

.form-success.show {
    display: block;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding-top: 30px;
    text-align: center;
}

.disclaimer {
    font-size: 10px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
    max-width: 800px;
    margin: 0 auto 15px;
}

.disclaimer a {
    text-decoration: underline;
}

.copyright {
    font-size: 10px;
    color: #666;
}

/* ===== FLOATING CONTACT BUTTON ===== */
.floating-contact-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #f4edc3 0%, #e8d99f 100%);
    color: #2c2c2c;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(244, 237, 195, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.floating-contact-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-contact-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(244, 237, 195, 0.6);
    background: linear-gradient(135deg, #e8d99f 0%, #f4edc3 100%);
}

.floating-contact-btn svg {
    flex-shrink: 0;
}

/* ===== PARALLAX EFFECTS ===== */
@media (min-width: 769px) {
    .hero,
    .cta-section,
    .quote-section,
    .team-section {
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: #000000;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #333;
    transform: translateY(-5px);
}

.back-to-top svg {
    fill: #ffffff;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet */
@media (max-width: 968px) {
    .cta-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .gallery-category-title {
        font-size: 28px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-info {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background-color: #f4edc3;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 15px 20px;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: rgba(0, 0, 0, 0.05);
        display: none;
        margin-top: 0;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .logo-four {
        font-size: 80px;
    }

    .logo-main {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 11px;
    }

    .cta-text h2 {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-overlay h3 {
        font-size: 32px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-category {
        margin-bottom: 60px;
    }

    .gallery-category-title {
        font-size: 24px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title {
        font-size: 36px;
    }

    .quote-text {
        font-size: 16px;
    }

    .quote-line {
        white-space: normal;
        border-right: none;
        animation: none !important;
        width: 100%;
        display: block;
    }
}

@media (max-width: 480px) {
    .navbar .container {
        padding: 10px 15px;
    }

    .nav-logo img {
        height: 40px;
    }

    .logo-four {
        font-size: 60px;
    }

    .logo-main {
        font-size: 24px;
    }

    .logo-text {
        gap: 10px;
    }

    .hero-subtitle {
        font-size: 10px;
        letter-spacing: 0.2em;
    }

    .cta-text h2 {
        font-size: 28px;
    }

    .cta-about p {
        font-size: 13px;
    }

    .service-overlay h3 {
        font-size: 28px;
    }

    .quote-section {
        padding: 40px 0;
    }

    .quote-text {
        font-size: 14px;
    }

    .quote-line {
        white-space: normal;
        border-right: none;
        animation: none !important;
        width: 100%;
        display: block;
    }

    .floating-contact-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .floating-contact-btn span {
        display: none;
    }
    
    .floating-contact-btn svg {
        width: 24px;
        height: 24px;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 80px;
        left: 20px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
