/* --- Global Resets & Variables --- */
:root {
    --accent-gold: #cfa959;
    /* Gold accent color from image */
    --accent-gold-hover: #b89246;
    --bg-dark: #111111;
    /* Dark theme background */
    --bg-card: #1a1a1a;
    --text-main: #ffffff;
    --text-muted: #cccccc;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    color: var(--text-main);
    margin-bottom: 40px;
}

/* --- Navigation --- */
.navbar {
    background: transparent;
    position: fixed;
    /* Place over the hero image and stick to top */
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(18, 18, 18, 0.95);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    /* Adds space between the logo image and the text */
}

.nav-logo-img {
    height: 49px;
    /* Adjust size as needed based on actual logo */
    width: 40px;
    border-radius: 50%;
    /* Keeps circular logos looking clean */
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-main);
    line-height: 1.2;
}

.logo .sub-logo {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--accent-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.nav-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.top-contact-info {
    display: flex;
    gap: 20px;
    margin-right: 30px; /* Align nicely above the links */
}

.top-contact-info a {
    color: #fff;
    font-size: 0.8rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.top-contact-info a:hover {
    color: var(--accent-gold);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-gold);
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    color: var(--text-main);
    cursor: pointer;
    z-index: 1001;
    /* Ensure it stays above the menu */
}

/* --- Mobile Navigation --- */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .top-contact-info {
        display: none;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-card);
        flex-direction: column;
        align-items: center;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        border-bottom: 1px solid #333;
    }

    .nav-links.active {
        max-height: 400px;
        /* Large enough to fit the links */
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 20px 0;
        border-bottom: 1px solid #333;
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }
}

/* --- Hero Section --- */
.hero {
    /* Custom generated warm salon background */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('file:///C:/Users/Pratiksha/.gemini/antigravity-ide/brain/a49d5dcd-5652-43f1-88e4-1d80992bbd3c/hero_background_warm_1786269477685.png') center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding-top: 80px;
    /* Offset for absolute navbar */
}

.hero-sub {
    color: var(--accent-gold);
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-content h2 {
    font-family: var(--font-heading);
    font-size: 4.2rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-content p {
    font-size: 1.0rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-radius: 2px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: #000;
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #000;
}

/* --- Services Section --- */
.services {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

/* --- Global Mobile Responsiveness --- */
@media (max-width: 768px) {

    /* Hero Section */
    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
        padding: 0 15px;
    }

    .hero-sub {
        font-size: 0.8rem;
    }

    /* Buttons */
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    /* General Section Padding */
    .services,
    .gallery,
    .about,
    .contact {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    /* About Section */
    .approach-features {
        gap: 40px;
    }

    /* Contact Section */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-list {
        gap: 20px;
    }
}

.services-showcase {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
    /* Space between each service section */
}

.service-row {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* Reverse the order for every alternating row */
.service-row.reverse {
    flex-direction: row-reverse;
}

.service-image-col {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.service-image-col img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: transform 0.5s ease;
}

.service-image-col:hover img {
    transform: scale(1.05);
    /* Slight zoom on hover */
}

.service-text-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-text-col h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.service-text-col p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

/* Scroll Animation Classes */
.slide-up-element {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-up-element.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsiveness for Services */
@media (max-width: 900px) {

    .service-row,
    .service-row.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .service-text-col {
        text-align: center;
    }

    .services-showcase {
        gap: 60px;
    }
}

/* --- Gallery Section --- */
.gallery {
    padding: 80px 0;
    background-color: var(--bg-dark);
    overflow: hidden;
}

.gallery-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.gallery-slider {
    width: 90%;
    overflow-x: auto;
    /* Remove smooth scroll behavior here to allow responsive javascript dragging */
    /* Hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
    cursor: grab;
}

.gallery-slider.active {
    cursor: grabbing;
}

.gallery-slider::-webkit-scrollbar {
    display: none;
}

.gallery-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

.gallery-track img {
    height: 450px;
    width: 350px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-track img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    z-index: 10;
}



/* --- Our Approach Section --- */
.about {
    padding: 100px 0;
    background-color: #151515;
}

/* --- Reviews CTA Section --- */
.google-reviews-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #151515, var(--bg-dark));
}

.review-cta-card {
    background-color: var(--bg-card);
    padding: 60px 40px;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border-top: 4px solid var(--accent-gold);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.review-cta-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--accent-gold);
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}

.title-underline {
    width: 60px;
    height: 2px;
    background-color: var(--accent-gold);
    margin: 20px auto 0;
}

.feature-block {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    background-color: var(--bg-card);
    border-radius: 4px;
    overflow: hidden;
}

.feature-block:last-child {
    margin-bottom: 0;
}

.feature-block.reverse {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 1;
}

.feature-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
}

.feature-content {
    flex: 1;
    padding: 40px;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.title-underline-small {
    width: 40px;
    height: 2px;
    background-color: var(--accent-gold);
    margin-bottom: 25px;
}

.feature-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.feature-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-gold);
}

.feature-list li strong {
    color: var(--text-main);
    font-weight: 500;
}

/* --- Footer / Contact Section --- */
.contact-section {
    background-color: var(--bg-dark);
    color: #fff;
    padding: 60px 0 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-desc {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 40px;
    max-width: 90%;
    line-height: 1.6;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: var(--text-main);
    transition: transform 0.3s;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-text strong {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.contact-text span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #f7f1eb;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 4px;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon .fa-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-icon .fa-whatsapp {
    color: #25D366;
}

.social-icon .fa-facebook-f {
    color: #1877F2;
}

.contact-hours-card {
    background-color: #161616;
    padding: 50px;
    border-radius: 8px;
}

.hours-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #333;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-extra-info {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-top: 1px solid #222;
    padding-top: 30px;
}

.hours-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hours-info-item i {
    color: var(--accent-gold);
    font-size: 2rem;
    flex-shrink: 0;
    width: 35px;
    display: flex;
    justify-content: center;
}

.hours-info-item span {
    color: #eee;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 30px;
    color: #666;
    font-size: 0.9rem;
}

/* --- Mobile Responsiveness --- */
@media(max-width: 768px) {


    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .gallery-track img {
        width: 250px;
        height: 300px;
    }

    .feature-block,
    .feature-block.reverse {
        flex-direction: column;
        gap: 0;
    }

    .feature-image img {
        min-height: 250px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-hours-card {
        padding: 30px;
    }

    .hours-list li {
        flex-direction: column;
        gap: 5px;
    }
}