/* 
   Theme: Dark Luxury (Gold & Charcoal)
   Fonts: Manrope (Body), Playfair Display (Headings)
*/

:root {
    --bg-dark: #121212;
    --bg-card: #1E1E1E;
    --bg-secondary: #0F0F0F;

    --primary-gold: #D4AF37;
    --primary-gold-hover: #FDB931;
    --primary-gradient: linear-gradient(135deg, #D4AF37, #C5A028);

    --text-main: #F0F0F0;
    --text-muted: #A0A0A0;
    --text-dark: #121212;

    --transition: all 0.3s ease;
    --container-width: 1200px;
    --nav-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.text-gold {
    color: var(--primary-gold);
}

.text-white {
    color: white;
}

.mt-4 {
    margin-top: 1.5rem;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #fff;
}

.section-subtitle {
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--text-dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.primary-glow {
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    margin-left: 15px;
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #1ebc57;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

/* Navbar */
.navbar {
    height: var(--nav-height);
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.dot {
    color: var(--primary-gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:not(.nav-btn):hover {
    color: var(--primary-gold);
}

.nav-btn {
    padding: 10px 24px;
    background: var(--primary-gradient);
    color: var(--text-dark);
    border-radius: 30px;
    font-weight: 600;
}

.nav-btn:hover {
    opacity: 0.9;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('salon_hero_bg.png') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 0;
    /* Nav is fixed overlay */
}

/* Fallback if image not yet generated, using a dark gradient placeholder */
.hero {
    background-color: #0f0f0f;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #fff;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #d0d0d0;
    max-width: 500px;
}

/* Problem Section */
.problem-section {
    background-color: var(--bg-secondary);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.problem-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
}

.icon-box {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.problem-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: white;
}

.problem-card p {
    color: var(--text-muted);
}

/* Services Section */
.services-section {
    background-color: var(--bg-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.service-image {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.service-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Why Choose Us */
.why-us-section {
    padding: 100px 0;
    background: linear-gradient(to right, var(--bg-secondary) 50%, var(--bg-dark) 50%);
}

.why-us-section .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.why-us-content {
    flex: 1;
}

.why-us-image {
    flex: 1;
    position: relative;
}

.features-list {
    margin: 30px 0;
}

.features-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.check-icon {
    width: 30px;
    height: 30px;
    background: rgba(212, 175, 55, 0.15);
    color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
}

.features-list strong {
    display: block;
    color: #fff;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.features-list p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.image-wrapper {
    width: 100%;
    height: 500px;
    background: url('salon_hero_bg.png') no-repeat center center/cover;
    /* Reusing hero for now */
    border-radius: 20px;
    position: relative;
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-gold);
    border-radius: 20px;
    z-index: -1;
}

/* Process Section */
.process-section {
    background-color: var(--bg-dark);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 60px;
    position: relative;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--bg-card);
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.step:hover .step-number {
    background: var(--primary-gold);
    color: var(--text-dark);
}

.step h3 {
    margin-bottom: 10px;
    color: #fff;
    font-size: 1.2rem;
}

.step p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.step-line {
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    flex: 1;
    margin-top: 30px;
}

/* Testimonials */
.testimonials-section {
    background-color: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
    position: relative;
}

.stars {
    color: var(--primary-gold);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: #d0d0d0;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card .author {
    color: #fff;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('salon_hero_bg.png') center/cover fixed;
}

.cta-sub {
    color: #ddd;
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Footer */
.footer {
    background: #0b0b0b;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    display: block;
    margin-bottom: 20px;
}

.footer-info p {
    color: var(--text-muted);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-info i {
    color: var(--primary-gold);
    width: 20px;
}

.footer h4 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: var(--text-muted);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary-gold);
    color: var(--text-dark);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    color: #666;
    font-size: 0.9rem;
}

/* Animation Classes */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }

    .why-us-section .container {
        flex-direction: column;
    }

    .image-wrapper {
        height: 400px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-info p {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .process-steps {
        flex-direction: column;
        gap: 30px;
    }

    .step-line {
        display: none;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .btn-secondary {
        margin-left: 0;
    }
}