/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --color-primary: #1A1A2E;
    --color-secondary: #F0EDE8;
    --color-accent: #8B7355;
    --color-accent-hover: #A0845E;
    --color-gold: #D4B896;
    --color-background: #FFFFFF;
    --color-foreground: #1A1A2E;
    --color-muted-foreground: #6B6B6B;
    --color-border: #E5E5E5;
    
    /* Fonts */
    --font-playfair: 'Playfair Display', serif;
    --font-cormorant: 'Cormorant Garamond', serif;
    --font-montserrat: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-cormorant);
    color: var(--color-foreground);
    background-color: var(--color-background);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: transparent;
}

.navbar.scrolled {
    background-color: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-img {
    height: 32px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.nav-links-desktop {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    font-family: var(--font-montserrat);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: white;
    border-bottom-color: var(--color-accent);
}

.btn-nav {
    font-family: var(--font-montserrat);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.625rem 1.5rem;
    background-color: var(--color-accent);
    color: white;
    transition: all 0.3s;
    margin-left: 1rem;
}

.btn-nav:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(139, 115, 85, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger {
    position: relative;
    width: 24px;
    height: 2px;
    background-color: white;
    transition: all 0.3s;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: white;
    transition: all 0.3s;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.mobile-menu-toggle.active .hamburger {
    background-color: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-toggle.active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background-color: var(--color-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-20px);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-nav-link {
    font-family: var(--font-montserrat);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

.mobile-nav-link:hover {
    color: white;
}

.btn-mobile {
    font-family: var(--font-montserrat);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.75rem 2rem;
    background-color: var(--color-accent);
    color: white;
    margin-top: 1rem;
    transition: background-color 0.3s;
}

.btn-mobile:hover {
    background-color: var(--color-accent-hover);
}

@media (min-width: 1024px) {
    .nav-links-desktop {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
}

/* ===== STICKY BUTTONS ===== */
.sticky-buttons {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sticky-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    animation: fadeInUp 0.6s ease-out;
}

.sticky-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
}

.phone-btn {
    background-color: var(--color-accent);
    color: white;
}

/* ===== UTILITY CLASSES ===== */
.main-content {
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-light {
    padding: 5rem 0 7rem;
    background-color: var(--color-background);
}

.section-muted {
    padding: 5rem 0 7rem;
    background-color: var(--color-secondary);
}

.section-dark {
    padding: 5rem 0 7rem;
    background-color: var(--color-primary);
    color: white;
}

@media (min-width: 768px) {
    .section-light,
    .section-muted,
    .section-dark {
        padding: 7rem 0;
    }
}

/* ===== SECTION HEADINGS ===== */
.section-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.section-heading.left {
    text-align: left;
}

.section-eyebrow {
    font-family: var(--font-montserrat);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-playfair);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-dark .section-title {
    color: white;
}

.section-subtitle {
    font-family: var(--font-cormorant);
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--color-muted-foreground);
    max-width: 700px;
    margin: 0 auto;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* ===== BUTTONS ===== */
.btn-primary,
.btn-secondary,
.btn-dark,
.btn-accent,
.btn-accent-large {
    display: inline-block;
    font-family: var(--font-montserrat);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background-color: #2A2A3E;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(26, 26, 46, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--color-primary);
}

.btn-dark {
    background-color: var(--color-primary);
    color: white;
}

.btn-dark:hover {
    background-color: #2A2A3E;
}

.btn-accent {
    background-color: var(--color-accent);
    color: white;
}

.btn-accent:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(139, 115, 85, 0.3);
}

.btn-accent-large {
    background-color: var(--color-accent);
    color: white;
    padding: 1.25rem 3rem;
    font-size: 0.9rem;
}

.btn-accent-large:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(139, 115, 85, 0.3);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--color-primary);
    color: rgba(255, 255, 255, 0.8);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-logo {
    height: 40px;
    filter: brightness(0) invert(1);
    margin-bottom: 1.5rem;
}

.footer-text {
    font-family: var(--font-cormorant);
    font-size: 1.05rem;
    line-height: 1.8;
}

.footer-heading {
    font-family: var(--font-montserrat);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: white;
    margin-bottom: 1.5rem;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a,
.footer-contact a {
    font-family: var(--font-cormorant);
    font-size: 1rem;
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-copyright {
    font-family: var(--font-montserrat);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    font-family: var(--font-montserrat);
    font-size: 0.75rem;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: white;
}

/* ===== RESPONSIVE UTILITIES ===== */
@media (min-width: 640px) {
    .container,
    .container-narrow {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}
