/* ===== CSS Variables ===== */
:root {
    --color-primary: #6B6F70;
    --color-cream: #F0EBE3;
    --color-dark: #4A4D4E;
    --color-light: #F8F6F3;
    --color-white: #FFFFFF;

    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;

    --transition: 0.3s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}


/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-white);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--color-primary);
    letter-spacing: 0.05em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--color-primary);
}

.nav-cta {
    background: var(--color-primary);
    color: var(--color-cream) !important;
    padding: 10px 20px;
    border-radius: 2px;
}

.nav-cta:hover {
    background: var(--color-dark) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(75, 79, 80, 0.7), rgba(75, 79, 80, 0.7)),
                url('images/hero-storefront.jpg') center center / cover no-repeat;
    color: var(--color-cream);
    padding: 100px 20px;
    position: relative;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.hero-tagline {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-address {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--color-cream);
    color: var(--color-primary);
    border-color: var(--color-cream);
}

.btn-primary:hover {
    background: transparent;
    color: var(--color-cream);
}

/* ===== Section Styles ===== */
section {
    padding: 100px 0;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 60px;
    color: var(--color-primary);
    letter-spacing: 0.05em;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: -40px auto 50px;
    color: var(--color-primary);
    font-size: 1rem;
    line-height: 1.6;
}

/* ===== Services Section ===== */
.services {
    background: var(--color-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--color-white);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--color-primary);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--color-dark);
    opacity: 0.8;
}

.service-list {
    list-style: none;
    text-align: left;
    margin-top: 15px;
    padding: 0;
}

.service-list li {
    font-size: 0.9rem;
    color: var(--color-primary);
    padding: 4px 0;
    padding-left: 15px;
    position: relative;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 1px;
    background: var(--color-primary);
}

/* ===== Gallery Section ===== */
.gallery {
    background: var(--color-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-cream);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    transition: var(--transition);
}

.gallery-placeholder:hover {
    background: var(--color-dark);
}

.gallery-placeholder.large {
    aspect-ratio: 4/3;
    min-height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

/* ===== Team Section ===== */
.team {
    background: var(--color-cream);
}

.team-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.team-row:last-child {
    margin-bottom: 0;
}

.team-member {
    flex: 0 1 180px;
    max-width: 200px;
    text-align: center;
}

.team-photo {
    aspect-ratio: 3/4;
    overflow: hidden;
    margin-bottom: 20px;
    background: var(--color-primary);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.team-member h3 {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 5px;
}

.team-member p {
    font-size: 0.9rem;
    color: var(--color-dark);
    opacity: 0.8;
    letter-spacing: 0.05em;
}

/* ===== About Section ===== */
.about {
    background: var(--color-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.8;
}

.about-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.salon-interior {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
}

/* ===== Contact Section ===== */
.contact {
    background: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    padding: 40px;
    background: var(--color-primary);
    color: var(--color-cream);
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}

.contact-item a {
    transition: var(--transition);
}

.contact-item a:hover {
    opacity: 0.8;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(240, 235, 227, 0.2);
    font-size: 0.9rem;
}

.contact-info .btn {
    margin-top: 20px;
    width: 100%;
    text-align: center;
}

.contact-map {
    min-height: 400px;
    background: var(--color-light);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* ===== FAQ Section ===== */
.faq {
    background: var(--color-cream);
}

.faq-container {
    max-width: 900px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--color-white);
    border-radius: 4px;
    overflow: hidden;
}

.faq-item summary {
    padding: 20px 25px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--color-primary);
    font-weight: 300;
    flex-shrink: 0;
    margin-left: 15px;
    transition: var(--transition);
}

.faq-item[open] summary::after {
    content: '\2212';
}

.faq-item summary h3 {
    font-size: 1.1rem;
    color: var(--color-dark);
    font-family: var(--font-body);
    font-weight: 400;
    margin: 0;
}

.faq-item p {
    padding: 0 25px 20px;
    color: var(--color-primary);
    line-height: 1.8;
    font-size: 0.95rem;
}

.faq-item p a {
    color: var(--color-dark);
    font-weight: 500;
    transition: var(--transition);
}

.faq-item p a:hover {
    opacity: 0.7;
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
}

.faq-cta p {
    color: var(--color-dark);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.faq-cta .btn-primary {
    background: var(--color-primary);
    color: var(--color-cream);
    border-color: var(--color-primary);
}

.faq-cta .btn-primary:hover {
    background: var(--color-dark);
    border-color: var(--color-dark);
}

/* ===== SEO Content Section ===== */
.seo-content {
    background: var(--color-light);
}

.seo-content-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--color-dark);
}

.seo-content-text p {
    margin-bottom: 20px;
    font-size: 1rem;
}

.seo-content-text h3 {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-top: 35px;
    margin-bottom: 15px;
}

.seo-content-text ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 25px;
}

.seo-content-text ul li {
    padding: 8px 0 8px 20px;
    position: relative;
    font-size: 0.95rem;
}

.seo-content-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 1px;
    background: var(--color-primary);
}

.seo-content-text a {
    color: var(--color-primary);
    font-weight: 500;
    transition: var(--transition);
}

.seo-content-text a:hover {
    opacity: 0.7;
}

/* ===== Footer ===== */
.footer {
    background: var(--color-dark);
    color: var(--color-cream);
    padding: 60px 0 30px;
}

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

.footer-logo .logo {
    color: var(--color-cream);
    margin-bottom: 10px;
    display: block;
}

.footer-logo p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-contact a:hover {
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-cream);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--color-cream);
    color: var(--color-dark);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(240, 235, 227, 0.2);
    font-size: 0.85rem;
    opacity: 0.7;
}

.fwd-credit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    opacity: 0.8;
    transition: var(--transition);
}

.fwd-credit:hover {
    opacity: 1;
}

.fwd-credit img {
    height: 30px;
    width: auto;
}

.fwd-credit span {
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animations for grid items */
.services-grid .fade-in:nth-child(2) { transition-delay: 0.1s; }
.services-grid .fade-in:nth-child(3) { transition-delay: 0.2s; }
.services-grid .fade-in:nth-child(4) { transition-delay: 0.3s; }

.gallery-grid .fade-in:nth-child(2) { transition-delay: 0.05s; }
.gallery-grid .fade-in:nth-child(3) { transition-delay: 0.1s; }
.gallery-grid .fade-in:nth-child(4) { transition-delay: 0.15s; }
.gallery-grid .fade-in:nth-child(5) { transition-delay: 0.2s; }
.gallery-grid .fade-in:nth-child(6) { transition-delay: 0.25s; }
.gallery-grid .fade-in:nth-child(7) { transition-delay: 0.3s; }
.gallery-grid .fade-in:nth-child(8) { transition-delay: 0.35s; }
.gallery-grid .fade-in:nth-child(9) { transition-delay: 0.4s; }
.gallery-grid .fade-in:nth-child(10) { transition-delay: 0.45s; }
.gallery-grid .fade-in:nth-child(11) { transition-delay: 0.5s; }
.gallery-grid .fade-in:nth-child(12) { transition-delay: 0.55s; }

.team-row .fade-in:nth-child(2) { transition-delay: 0.1s; }
.team-row .fade-in:nth-child(3) { transition-delay: 0.2s; }
.team-row .fade-in:nth-child(4) { transition-delay: 0.3s; }

/* ===== Mobile Styles ===== */
@media (max-width: 900px) {
    .about-content,
    .contact-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .about-images {
        order: -1;
    }

    .footer-content {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .team-row {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        box-shadow: var(--shadow);
    }

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

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

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

    .team-row {
        flex-wrap: wrap;
        gap: 20px;
    }

    section {
        padding: 60px 0;
    }

    .hero {
        padding: 80px 20px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .team-member {
        flex: 0 1 140px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .faq-item summary {
        padding: 15px 18px;
    }

    .faq-item summary h3 {
        font-size: 1rem;
    }

    .faq-item p {
        padding: 0 18px 15px;
    }

    .section-subtitle {
        margin: -30px auto 40px;
        padding: 0 10px;
    }

    .contact-info {
        padding: 30px 20px;
    }
}
