:root {
    /* Updated: Clean Minimalist Luxury */
    --primary-color: #C08081;
    /* Dusty Rose - Professional & Muted */
    --primary-dark: #8E5657;
    /* Earthy Red-Brown */
    --secondary-color: #FAFAFA;
    /* Pure Off-White */
    --accent-color: #D4AF37;
    /* Metallic Gold */
    --text-main: #222222;
    /* Sharp Black for Contrast */
    --text-muted: #666666;
    --white: #FFFFFF;

    /* Clean Glaze Effect */
    --glass-bg: rgba(255, 255, 255, 0.95);
    /* Almost solid for clarity */
    --glass-border: rgba(0, 0, 0, 0.05);
    /* Very faint grey border */
    --glass-blur: 10px;
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.04);
    /* Ultra-soft shadow */

    --transition-smooth: all 0.3s ease-in-out;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;

    --bg-gradient: #FFFFFF;
    /* Solid White Background for Professionalism */
}

/* Dark Theme Variables */
[data-theme="dark"] {
    --text-main: #f0f0f0;
    --text-muted: #d0d0d0;
    --secondary-color: #2a2a2a;
    --white: #1f1f1f;
    /* Replaces white cards */

    --glass-bg: rgba(30, 30, 30, 0.85);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.5);

    --bg-gradient: linear-gradient(135deg, #121212 0%, #29181b 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, #FFFAF0 0%, #FFF5F5 100%);
    color: var(--text-main);
    line-height: 1.7;
    /* Better readability */
    overflow-x: hidden;
}

/* Professional Typography & Spacing */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
    /* Modern tight spacing */
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

p {
    margin-bottom: 20px;
    font-weight: 300;
    /* Elegant body text */
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

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

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

.section-padding {
    padding: 80px 0;
}

/* Utilities */
.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    /* Standardized radius */
    box-shadow: var(--shadow-card);
}

/* Animations */
@keyframes shine {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(183, 110, 121, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(183, 110, 121, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(183, 110, 121, 0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-text {
    opacity: 0;
    animation: fadeUp 1s forwards cubic-bezier(0.5, 0, 0, 1);
}

.delay-200 {
    animation-delay: 0.2s;
    transition-delay: 0.2s;
}

.delay-400 {
    animation-delay: 0.4s;
    transition-delay: 0.4s;
}

/* Scroll Animation Classes (Toggled by JS) */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 1s ease-out;
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}


/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition-smooth);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    color: var(--primary-color);
}

.logo-accent {
    color: var(--accent-color);
}

/* Gold dot */

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

/* Refined Navbar Link */
.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    color: var(--text-main);
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    /* Thinner sophisticated line */
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-link:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 5px;
}

/* Button Styles */
.btn-shine {
    display: inline-block;
    padding: 12px 30px;
    /* 3-Color Gradient: Deep Rose -> Soft Gold -> Deep Rose */
    background: linear-gradient(90deg, #A65E68, #E6C87F, #A65E68);
    background-size: 200% auto;
    color: white;
    /* Clean white text */
    border-radius: 50px;
    font-weight: 600;
    animation: shine 6s infinite linear;
    /* Slower, more elegant speed */
    box-shadow: 0 4px 15px rgba(166, 94, 104, 0.4);
    border: none;
    cursor: pointer;
}

.btn-shine:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(183, 110, 121, 0.6);
}

.small-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.large-btn {
    font-size: 1.1rem;
    padding: 15px 40px;
}


/* Hero Section */
.hero-section {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('assets/hero_salon_luxury_1770301227756.png') no-repeat center center/cover;
    background-attachment: fixed;
    /* Parallax */
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(246, 235, 235, 0.3), rgba(255, 240, 245, 0.8));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-section h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    background: linear-gradient(45deg, #4a3b3b, #B76E79);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtext {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 40px;
    color: #666;
}

.floating-icons .float-icon {
    position: absolute;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.6;
    z-index: 1;
    filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.1));
    animation: float 4s ease-in-out infinite;
}

.i-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    font-size: 3rem;
}

.i-2 {
    bottom: 25%;
    right: 15%;
    animation-delay: 1.5s;
    font-size: 2.5rem;
}

.i-3 {
    top: 30%;
    right: 20%;
    animation-delay: 0.5s;
    font-size: 2rem;
}

/* About Section */
.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-text {
    flex: 1;
}

.glass-card-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.5s ease;
}

.glass-card-image:hover img {
    transform: scale(1.02);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #4a3b3b;
    position: relative;
    display: inline-block;
}

/* 3D Divider */
.divider-3d {
    height: 4px;
    width: 80px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 0 0 30px 0;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stats-grid {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.4);
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--primary-color);
}

/* Services */
.bg-gradient {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(240, 230, 230, 0.5) 100%);
}

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

.service-card {
    padding: 20px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.6);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(183, 110, 121, 0.2);
}

.service-img {
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.icon-box {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Portfolio */
.section-subtitle {
    display: block;
    margin-bottom: 40px;
    font-style: italic;
    color: #777;
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(183, 110, 121, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    backdrop-filter: blur(2px);
}

.overlay i {
    font-size: 2.5rem;
    color: white;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

/* Appointment */
.appointment-section {
    padding: 100px 0;
    background: url('assets/hero_salon_luxury_1770301227756.png') fixed center/cover;
    /* Reusing bg, could be different */
    position: relative;
}

.appointment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    /* Strong overlay to make text shine */
}

.appointment-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.big-glass {
    padding: 60px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid white;
}

.pulse-container {
    margin: 30px 0;
}

.btn-pulse {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    font-size: 1.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50px;
    animation: pulse-glow 2s infinite;
}

.btn-pulse:hover {
    background: #a05d68;
}

.phone-display a {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Contact */
.contact-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-info,
.map-container {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background: white;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-list i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

@keyframes bounce-icon {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.contact-list .fa-whatsapp {
    animation: bounce-icon 2s infinite;
    color: #25D366;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: 0.3s;
}

.social-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px) rotate(10deg);
}

.map-container {
    min-height: 400px;
    padding: 10px;
    /* Map frame looks better with small padding inside glass */
    border-radius: 20px;
    overflow: hidden;
}

/* Footer */
footer {
    background: #333;
    color: #eee;
    padding: 30px 0;
    text-align: center;
}

.designer-credit {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 10px;
}

.designer-credit i {
    color: #fe4a49;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        padding: 40px 0;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .contact-wrapper {
        flex-direction: column;
    }

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

    .hero-subtext {
        font-size: 1.1rem;
    }

    .i-1 {
        font-size: 2rem;
        top: 15%;
        left: 5%;
    }

    .i-2 {
        font-size: 1.8rem;
        bottom: 15%;
        right: 5%;
    }

    .i-3 {
        display: none;
    }

    .big-glass {
        padding: 30px 20px;
    }

    .btn-pulse {
        font-size: 1.2rem;
        padding: 12px 30px;
    }
}