/* ==========================================
   YMS Brow Art - Clean & Mobile-First
   Theme: White & Gold
   ========================================== */

:root {
    --gold: #C9A955;
    --gold-dark: #A88B3D;
    --gold-muted: #E8DCC4;
    --white: #FFFFFF;
    --cream: #F9F7F4;
    --black: #1A1A1A;
    --gray-dark: #333333;
    --gray: #666666;
    --gray-light: #E5E5E5;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

a { text-decoration: none; color: inherit; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--gold-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--white);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 12px 0;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 3px;
}

.navbar:not(.scrolled) .logo-text { color: var(--white); }

.logo-subtext {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
}

.navbar:not(.scrolled) .logo-subtext { color: rgba(255,255,255,0.7); }

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray);
}

.navbar:not(.scrolled) .nav-links a { color: var(--white); }

.nav-cta {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 20px;
    background: var(--gold);
    color: var(--white);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 22px;
    height: 2px;
    background: var(--gray-dark);
    transition: all 0.3s ease;
}

.navbar:not(.scrolled) .mobile-menu-btn span { background: var(--white); }

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 80px 20px;
}

.hero-content {
    text-align: center;
    max-width: 600px;
}

.hero-tagline {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 8vw, 64px);
    font-weight: 300;
    color: var(--white);
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.divider-line {
    width: 50px;
    height: 1px;
    background: var(--gold);
}

.brow-icon {
    width: 50px;
    height: 16px;
    color: var(--gold);
}

.hero-subtitle {
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}


/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tagline {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 400;
    color: var(--black);
    margin-bottom: 16px;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-divider.left { justify-content: center; }

.section-divider .divider-line {
    width: 30px;
    background: var(--gold);
}

.divider-diamond {
    width: 6px;
    height: 6px;
    background: var(--gold);
    transform: rotate(45deg);
}

/* Services */
.services {
    padding: 80px 0;
    background: var(--white);
}

.service-category {
    margin-bottom: 48px;
}

.service-category:last-child { margin-bottom: 0; }

.category-title {
    font-family: var(--font-heading);
    font-size: 22px;
    text-align: center;
    margin-bottom: 32px;
    color: var(--black);
}

.category-title::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--gold);
    margin: 12px auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--gold);
}

.service-card.featured {
    border-color: var(--gold);
    background: var(--cream);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: var(--gold);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-name {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--black);
    margin-bottom: 6px;
}

.service-description {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 12px;
}

.service-price {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 500;
    color: var(--gold);
}

/* About */
.about {
    padding: 80px 0;
    background: var(--cream);
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.about-text .section-title { margin-bottom: 12px; }
.about-text .section-divider { margin-bottom: 24px; }

.about-description {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 32px;
    margin-top: 24px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-dark);
}

.feature-icon {
    width: 20px;
    height: 20px;
    color: var(--gold);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}


/* Gallery / Coming Soon */
.gallery {
    padding: 80px 0;
    background: var(--white);
}

.coming-soon-box {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
    padding: 48px 32px;
    border: 1px solid var(--gray-light);
    background: var(--cream);
}

.coming-soon-icon {
    width: 60px;
    height: 40px;
    margin: 0 auto 24px;
    color: var(--gold);
}

.coming-soon-icon svg {
    width: 100%;
    height: 100%;
}

.coming-soon-title {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 12px;
}

.coming-soon-text {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Book Section */
.book {
    padding: 80px 0;
    background: var(--white);
}

.book-content {
    max-width: 900px;
    margin: 0 auto;
}

.book-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.book-card {
    text-align: center;
    padding: 40px 24px;
    border: 1px solid var(--gray-light);
    transition: all 0.3s ease;
}

.book-card:hover {
    border-color: var(--gold);
}

.book-card.featured-booking {
    border-color: var(--gold);
    background: var(--cream);
}

.book-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 20px;
    color: var(--gold);
}

.book-icon svg {
    width: 100%;
    height: 100%;
}

.book-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 10px;
}

.book-card p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Contact */
.contact {
    padding: 80px 0;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info .section-title { margin-bottom: 12px; }
.contact-info .section-divider { margin-bottom: 32px; }

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 20px;
    height: 20px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-text h4 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.contact-text p,
.contact-text a {
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 1.5;
}

.contact-map {
    height: 320px;
    border: 1px solid var(--gray-light);
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(255,255,255,0.95), transparent);
    display: flex;
    justify-content: center;
}

/* Footer */
.footer {
    background: var(--black);
    padding: 48px 0 24px;
}

.footer-content {
    text-align: center;
    margin-bottom: 32px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 12px;
}

.footer-brand .logo-text {
    font-size: 28px;
    color: var(--gold);
}

.footer-brand .logo-subtext {
    color: rgba(255,255,255,0.5);
}

.footer-tagline {
    font-size: 12px;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
}

.footer-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

.footer-contact .divider { color: var(--gold); }

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
}

/* ========== RESPONSIVE ========== */

@media (max-width: 900px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    .nav-links.active { display: flex; }
    .nav-links a { color: var(--gray-dark) !important; font-size: 13px; }
    .nav-cta { display: none; }
    .mobile-menu-btn { display: flex; }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }


    .contact-grid { grid-template-columns: 1fr; }
    .contact-map { height: 280px; }

    .book-options { grid-template-columns: 1fr; gap: 16px; }
    .book-card { padding: 32px 20px; }
}

@media (max-width: 600px) {
    .container { padding: 0 16px; }

    /* Compact hero */
    .hero { min-height: auto; padding: 100px 16px 60px; }
    .hero-tagline { font-size: 10px; margin-bottom: 8px; }
    .hero-title { font-size: 36px; letter-spacing: 2px; margin-bottom: 12px; }
    .hero-divider { margin-bottom: 12px; gap: 12px; }
    .hero-divider .divider-line { width: 30px; }
    .hero-subtitle { font-size: 11px; margin-bottom: 20px; }
    .hero-buttons { flex-direction: column; width: 100%; gap: 10px; }
    .hero-buttons .btn { width: 100%; padding: 14px 24px; }

    /* Compact sections */
    .section-header { margin-bottom: 20px; }
    .section-tagline { font-size: 9px; }
    .section-title { font-size: 24px; margin-bottom: 10px; }

    /* Compact services - list style */
    .services { padding: 40px 0; }
    .service-category { margin-bottom: 32px; }
    .category-title { font-size: 18px; margin-bottom: 16px; }
    .category-title::after { margin-top: 8px; }
    .services-grid { gap: 0; }
    .service-card {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 16px;
        border-left: none;
        border-right: none;
        border-bottom: none;
    }
    .service-card:last-child { border-bottom: 1px solid var(--gray-light); }
    .service-icon { display: none; }
    .service-name { font-size: 14px; margin: 0; text-align: left; }
    .service-description { display: none; }
    .service-price { font-size: 16px; margin: 0; }

    /* Compact about */
    .about { padding: 40px 0; }
    .about-description { font-size: 13px; margin-bottom: 12px; }
    .about-features { gap: 8px 20px; margin-top: 16px; }
    .feature { font-size: 11px; }
    .feature-icon { width: 16px; height: 16px; }

    /* Compact gallery */
    .gallery { padding: 40px 0; }
    .coming-soon-box { padding: 32px 20px; }
    .coming-soon-icon { width: 50px; height: 30px; margin-bottom: 16px; }
    .coming-soon-title { font-size: 24px; margin-bottom: 10px; }
    .coming-soon-text { font-size: 12px; margin-bottom: 20px; }
    .coming-soon-box .btn { padding: 12px 24px; font-size: 11px; }

    /* Compact booking */
    .book { padding: 40px 0; }
    .book-card { padding: 24px 16px; }
    .book-icon { width: 32px; height: 32px; margin-bottom: 12px; }
    .book-card h3 { font-size: 18px; margin-bottom: 8px; }
    .book-card p { font-size: 12px; margin-bottom: 16px; }
    .book-card .btn { padding: 12px 20px; font-size: 10px; width: 100%; }

    /* Compact contact */
    .contact { padding: 40px 0; }
    .contact-info .section-divider { margin-bottom: 20px; }
    .contact-details { gap: 16px; }
    .contact-item { gap: 12px; }
    .contact-icon { width: 18px; height: 18px; }
    .contact-text h4 { font-size: 10px; margin-bottom: 2px; }
    .contact-text p, .contact-text a { font-size: 13px; }
    .contact-map { height: 200px; }
    .map-overlay { padding: 12px; }
    .map-overlay .btn { padding: 10px 20px; font-size: 10px; }

    /* Compact footer */
    .footer { padding: 32px 0 16px; }
    .footer-content { margin-bottom: 20px; }
    .footer-brand .logo-text { font-size: 22px; }
    .footer-tagline { font-size: 10px; margin-bottom: 12px; }
    .footer-contact { font-size: 11px; flex-direction: column; gap: 4px; }
    .footer-contact .divider { display: none; }
    .footer-bottom { padding-top: 16px; }
    .footer-bottom p { font-size: 10px; }
}

/* Remove hover effects on touch devices */
@media (hover: none) {
    .service-card:hover,
    .book-card:hover {
        transform: none;
        box-shadow: none;
    }
}
