:root {
    --gold: #d4af37;
    --gold-light: #e6c961;
    --gold-dark: #b8941f;
    --black: #1a1a1a;
    --dark-gray: #2d2d2d;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --text-light: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-light);
    background: var(--black);
    line-height: 1.6;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 5%;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

nav .container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.book-btn {
    background: var(--gold);
    color: var(--black);
    padding: 0.7rem 1.8rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-left: auto;
}

.mobile-menu-toggle {
    /* Display controlled by media queries */
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.book-btn {
    background: var(--gold);
    color: var(--black);
    padding: 0.7rem 1.8rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.book-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 85vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.85));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: 3px;
}

.hero .subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero .cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.cta-primary {
    background: var(--gold);
    color: var(--black);
    padding: 1rem 2.5rem;
    border-radius: 40px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

.cta-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
}

.cta-secondary {
    background: transparent;
    color: var(--gold);
    padding: 1rem 2.5rem;
    border: 2px solid var(--gold);
    border-radius: 40px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

/* About Section */
.about-section {
    padding: 4rem 5%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
}

/* Quick Services Preview */
.quick-services {
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.services-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-preview-card {
    background: var(--dark-gray);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-preview-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-preview-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.service-preview-card .price {
    color: var(--text-light);
    font-size: 0.95rem;
}

.view-all-btn {
    text-align: center;
}

/* Contact Section */
.contact-section {
    padding: 4rem 5%;
    background: var(--dark-gray);
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.contact-card {
    background: var(--black);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.contact-link,
.phone-link {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover,
.phone-link:hover {
    color: var(--gold-light);
}

.deposit-note {
    font-size: 0.85rem;
    color: var(--text-light);
    opacity: 0.7;
    margin-top: 1rem;
}

/* Page Header (for Services & Gallery pages) */
.page-header {
    text-align: center;
    padding: 6rem 5% 3rem;
    margin-top: 70px;
    background: var(--dark-gray);
}

.page-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Services Full Page */
.services-full {
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--dark-gray);
    padding: 2.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.3rem;
    color: var(--gold-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.service-duration {
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.7;
}

/* Gallery Page */
.gallery-page {
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.gallery-item-full {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    border: 2px solid var(--gold);
}

.gallery-item-full img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item-full:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.9), transparent);
    color: var(--gold);
    padding: 1.5rem;
    font-size: 1.1rem;
    font-family: 'Cormorant Garamond', serif;
}

/* Booking CTA */
.booking-cta {
    background: var(--dark-gray);
    text-align: center;
    padding: 4rem 5%;
}

.booking-cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.booking-cta .deposit-info {
    font-size: 0.95rem;
    color: var(--gold-light);
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background: var(--black);
    padding: 3rem 5% 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-content {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-text {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.footer-contact {
    margin-top: 1rem;
}

.footer-contact .phone-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-contact .phone-link:hover {
    color: var(--gold-light);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-light);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    nav .container {
        position: relative;
    }

    /* Hide desktop book button on mobile */
    .desktop-only {
        display: none !important;
    }

    /* Show hamburger menu on mobile */
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1001;
        margin-left: auto;
    }

    .mobile-menu-toggle span {
        width: 25px;
        height: 2px;
        background: var(--gold);
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: 0;
        left: auto;
        width: 250px;
        background: var(--black);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        border-left: 2px solid var(--gold);
        border-bottom: 2px solid var(--gold);
        box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.5);
        height: calc(100vh - 70px);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        text-align: right;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    /* Style book now link inside menu */
    .nav-book-btn {
        background: var(--gold);
        color: var(--black) !important;
        padding: 0.8rem 1.5rem;
        border-radius: 30px;
        font-weight: 600;
        display: inline-block;
        text-align: center;
        margin-top: 1rem;
    }

    .book-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .logo-img {
        height: 40px;
    }

    .hero {
        height: 70vh;
        min-height: 400px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .subtitle {
        font-size: 1rem;
    }

    .hero .cta-group {
        flex-direction: column;
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-preview {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid-full {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .booking-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .services-preview {
        grid-template-columns: 1fr;
    }
    
    .logo-text {
        font-size: 0.9rem;
    }
    
    .book-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.7rem;
    }
}

/* Desktop - hide hamburger menu and nav book button */
@media (min-width: 1025px) {
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .nav-book-btn {
        display: none !important;
    }
}
