/* ===== BEAUTY SALON THEME ===== */
:root {
    /* Beauty Salon Colors - Soft pinks, golds, and neutrals */
    --primary-pink: #f8a5c2;
    --light-pink: #f9d6e3;
    --dark-pink: #e75480;
    --gold: #d4af37;
    --light-gold: #f4e9c1;
    --cream: #fff9f0;
    --light-gray: #f8f9fa;
    --dark-gray: #333333;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    
    /* Theme Variables */
    --bg-primary: var(--cream);
    --bg-secondary: var(--light-gray);
    --bg-tertiary: white;
    
    --text-primary: var(--text-dark);
    --text-secondary: var(--text-light);
    --text-muted: #888888;
    
    --accent-primary: var(--dark-pink);
    --accent-secondary: var(--gold);
    --accent-light: var(--light-pink);
    
    --border-color: rgba(231, 84, 128, 0.2);
    --shadow-color: rgba(231, 84, 128, 0.1);
    
    --gradient-primary: linear-gradient(135deg, var(--dark-pink), var(--primary-pink));
    --gradient-gold: linear-gradient(135deg, var(--gold), #f7d98a);
    
    --transition: all 0.3s ease;
    --border-radius: 15px;
    --box-shadow: 0 10px 30px var(--shadow-color);
    --box-shadow-hover: 0 15px 40px rgba(231, 84, 128, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, .logo {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

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

.section {
    padding: 80px 0;
}

.dark-section {
    background-color: var(--bg-secondary);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 20px rgba(231, 84, 128, 0.3);
    background-color: rgba(255, 249, 240, 0.434); /* Increased transparency */
    backdrop-filter: blur(10px) saturate(140%); /* Stronger blur and added saturation */
    -webkit-backdrop-filter: blur(15px) saturate(140%); /* For Safari support */
}

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

/* ===== LOGO STYLING ===== */

/* Logo container */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/* Logo image */
.logo-img {
    height: 30px; /* Adjust based on your logo */
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-pink);
    letter-spacing: 0.5px;
}



.logo-svg text {
    fill: var(--dark-pink);
}

/* Responsive logo variants */
.logo-desktop {
    display: block;
    height: 50px;
    width: auto;
}

.logo-mobile {
    display: none;
    height: 40px;
    width: auto;
}

/* Logo with badge/icon */
.logo-badge {
    position: relative;
    display: inline-block;
}

.logo-badge::after {
    content: '✨';
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 0.8rem;
    animation: sparkle 2s infinite;
}

/* Logo with subtle animation */
@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.logo-animated {
    animation: logoFloat 3s ease-in-out infinite;
}

/* Sparkle animation for badge */
@keyframes sparkle {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* ===== RESPONSIVE LOGO ===== */
@media (max-width: 992px) {
    .logo-img {
        height: 45px;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .logo-desktop {
        display: none;
    }
    
    .logo-mobile {
        display: block;
    }
}

@media (max-width: 768px) {
    .logo {
        gap: 8px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 35px;
    }
    
    .logo-text {
        font-size: 1.1rem;
        display: none; /* Hide text on very small screens */
    }
    
    .logo-text.mobile-hidden {
        display: none;
    }
}

/* ===== DARK MODE LOGO SUPPORT ===== */
@media (prefers-color-scheme: dark) {
    .logo-img {
        filter: brightness(1.1);
    }
    
    .logo-svg {
        filter: brightness(1.1);
    }
}

/* ===== LOGO WITH BACKGROUND ===== */
.logo-with-bg {
    padding: 8px 15px;
    background: var(--light-pink);
    border-radius: 12px;
    border: 2px solid var(--gold);
}

/* ===== ANIMATED LOGO ON HOVER ===== */
.logo-hover-animate {
    position: relative;
    overflow: hidden;
}

.logo-hover-animate::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.logo-hover-animate:hover::before {
    left: 100%;
}

/* ===== NAVIGATION LINKS ===== */
.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 12px; /* Changed from 8px 0 */
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--dark-pink);
}

.nav-links a:hover::after {
    width: 80%;
}

/* Book Now Button */
.nav-links .book-btn {
    background: var(--gradient-primary);
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 50px;
    margin-left: 10px;
    font-weight: 600 !important;
}

.nav-links .book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 84, 128, 0.3);
    color: white !important; /* Important to override hover */
}

.nav-links .book-btn::after {
    display: none !important;
}

/* Icon styling in nav */
.nav-links a i {
    font-size: 0.9rem;
    min-width: 16px;
}

/* Mobile menu toggle - show only on mobile */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--dark-pink);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    margin-left: 10px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .nav-links {
        display: none; /* Hidden by default on mobile */
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
        flex-direction: column;
        gap: 15px;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        padding: 15px 20px;
        width: 100%;
        justify-content: center;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    .nav-links .book-btn {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    /* Adjust language switcher on mobile */
    .language-switcher {
        margin-left: auto;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--dark-pink);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}


/* ===== LANGUAGE SWITCHER WITH REAL FLAGS ===== */
.flag-icon {
    width: 24px;
    height: 16px;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.language-btn .flag-icon {
    width: 20px;
    height: 13px;
    margin-right: 8px;
}

.language-option .flag-icon {
    width: 18px;
    height: 12px;
    margin-right: 10px;
}

.language-switcher {
    position: relative;
    margin-left: 15px;
}

.language-btn {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    padding: 8px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
}

.language-btn:hover {
    border-color: var(--dark-pink);
    background: var(--light-pink);
}

.language-btn i {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-left: 0px;
}

.current-lang {
    font-size: 0.85rem;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 5px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
    min-width: 140px;
    display: none;
    z-index: 100;
}

.language-dropdown.active {
    display: block;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    font-size: 0.85rem;
}

.language-option:hover {
    background: var(--light-pink);
    color: var(--dark-pink);
}

.language-name {
    font-weight: 500;
}

/* Responsive language switcher */
@media (max-width: 768px) {
    .language-btn .current-lang {
        display: none;
    }
    
    .language-btn {
        padding: 8px;
    }
    
    .language-dropdown {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        margin: 0;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--dark-pink);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

/* Responsive language switcher */
@media (max-width: 768px) {
    .language-btn .current-lang {
        display: none;
    }
    
    .language-btn {
        padding: 8px;
    }
    
    .language-dropdown {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        margin: 0;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
}



/* ===== HERO SECTION ===== */
.hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-pink) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: var(--gradient-gold);
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    animation: fadeInLeft 1s ease;
}

.greeting {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.salon-name {
    font-size: 3.5rem;
    color: var(--dark-pink);
    margin-bottom: 15px;
    line-height: 1.2;
}

.salon-tagline {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 400;
}

.description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn {
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-whatApp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    margin-top: 15px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(231, 84, 128, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--dark-pink);
    border: 2px solid var(--dark-pink);
}

.btn-secondary:hover {
    background: var(--dark-pink);
    color: white;
    transform: translateY(-3px);
}

/* Owner Profile */
.owner-profile {
    position: relative;
    width: 400px;
    margin: 0 auto;
}

.owner-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    border: 10px solid white;
    box-shadow: var(--box-shadow);
}

.owner-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--text-dark);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    white-space: nowrap;
}

.owner-badge i {
    color: white;
}




/* ===== SIMPLE & COMPACT SERVICES SECTION ===== */
.services-section {
    padding: 60px 0;
}

.services-compact {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.service-item-compact {
    background: white;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.10);
    transition: var(--transition);
}

.service-item-compact:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
    border-color: var(--dark-pink);
}

.service-header-compact {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--light-pink);
}

.service-item-compact h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    flex: 1;
}

.service-duration {
    background: var(--gradient-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 15px;
    white-space: nowrap;
    margin-left: 10px;
}

.service-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
    min-height: 20px;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-pink);
}

.service-book-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 84, 128, 0.3);
}

.service-note {
    text-align: center;
    margin-top: 40px;
    padding: 25px;
    background: var(--light-pink);
    border-radius: 12px;
    border-left: 4px solid var(--gold);
}

.service-note p {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.service-note i {
    color: var(--dark-pink);
}



/* ===== GALLERY SECTION ===== */
.gallery-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(231, 84, 128, 0.3);
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(231, 84, 128, 0.9), transparent);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-info {
    color: white;
}

.gallery-info h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
    font-weight: 600;
}

.gallery-info p {
    opacity: 0.9;
    font-size: 0.9rem;
}

.gallery-cta {
    text-align: center;
    margin-top: 40px;
}

/* Lightbox Modal */
.gallery-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    background: var(--dark-pink);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
}

.lightbox-prev,
.lightbox-next {
    background: var(--dark-pink);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== RESPONSIVE GALLERY ===== */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .gallery-item {
        height: 250px;
    }
}
/* ===== ABOUT SECTION ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-weight: 500;
}

.feature i {
    color: var(--gold);
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-item i {
    width: 150px;
    height: 50px;
    border-radius: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-pink);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 1.2rem;
}

.contact-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.appointment-box {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    border-top: 5px solid var(--gold);
}

.appointment-box h3 {
    color: var(--dark-pink);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.appointment-box h3 i {
    color: var(--gold);
    margin-right: 10px;
}

.appointment-box p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

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

.emergency-note {
    margin-top: 25px;
    padding: 15px;
    background: var(--light-pink);
    border-radius: 10px;
    color: var(--dark-pink);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--dark-pink), #d64c7f);
    color: white;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-logo i {
    color: var(--gold);
    font-size: 1.8rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--gold);
    transform: translateY(-3px);
    color: var(--dark-pink);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-links a::before {
    content: '›';
    font-size: 1.2rem;
    color: var(--gold);
    opacity: 0;
    transition: var(--transition);
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
    color: var(--gold);
    font-size: 1rem;
    margin-top: 3px;
    width: 20px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--gold);
}

.business-hours {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hour-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hour-item span:first-child {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.hour-time {
    color: var(--gold);
    font-weight: 600;
}

/* Footer */

.footer {
    background: linear-gradient(135deg, var(--dark-pink), #d14a78);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info {
    padding-right: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--light-gold);
}

.footer-logo i {
    font-size: 2.2rem;
    color: var(--light-gold);
}

.footer-description {
    opacity: 0.9;
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.9;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-contact a:hover {
    opacity: 1;
    color: var(--light-gold);
    transform: translateX(5px);
}

.footer-contact a i {
    width: 20px;
    text-align: center;
}

.footer-links-section h4,
.footer-hours-social h4 {
    color: var(--light-gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.footer-links-grid a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
    font-size: 0.9rem;
    padding: 3px 0;
}

.footer-links-grid a:hover {
    opacity: 1;
    color: var(--light-gold);
    transform: translateX(5px);
}

.footer-hours p {
    opacity: 0.9;
    line-height: 1.8;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
}

.social-icon:hover {
    background: var(--light-gold);
    color: var(--dark-pink);
    transform: translateY(-3px);
}

/* ===== ENHANCED FOOTER BOTTOM ===== */
.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    width: 100%;
}

.footer-bottom p {
    opacity: 0.9;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-creator {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.creator-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.made-with-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.heart-icon {
    color: #54aed5;
    animation: heartbeat 1.5s ease-in-out infinite;
    margin: 0 3px;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.separator {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    font-size: 0.9rem;
}

/* Developer Link Styles */
.developer-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.developed-by {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.developer-name {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--light-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.developer-name:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
    color: var(--light-gold);
}

.developer-name i {
    color: var(--gold);
    font-size: 0.7rem;
}

/* GitHub Link Styles */
.github-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.github-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    color: white;
}

.github-link i {
    font-size: 1rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .creator-info {
        flex-direction: column;
        gap: 12px;
    }
    
    .separator {
        display: none;
    }
    
    .developer-name,
    .github-link {
        padding: 5px 15px;
        font-size: 0.85rem;
    }
    
    .made-with-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .footer-bottom p {
        font-size: 0.8rem;
    }
    
    .developer-link {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .developed-by {
        font-size: 0.8rem;
    }
    
    .developer-name {
        padding: 4px 12px;
        font-size: 0.85rem;
    }
    
    .github-link {
        padding: 4px 12px;
        font-size: 0.8rem;
    }
}

/* ===== DARK THEME VARIANT (if you have theme toggle) ===== */
body.dark-theme .footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}

body.dark-theme .developer-name {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
}

body.dark-theme .github-link {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 0, 0, 0.3);
}
/* ===== RESPONSIVE FOOTER ===== */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-info {
        padding-right: 0;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-contact a {
        justify-content: center;
    }
    
    .footer-links-section,
    .footer-hours-social {
        text-align: center;
    }
    
    .social-icons-footer {
        justify-content: center;
    }
}
/* ===== ANIMATIONS ===== */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .hero-content,
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .salon-name {
        font-size: 3rem;
    }
    
    .owner-profile {
        width: 350px;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .language-switcher {
        margin-left: auto;
        margin-right: 20px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .owner-profile {
        width: 300px;
    }
    
    .owner-img {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .salon-name {
        font-size: 2.5rem;
    }
    
    .owner-profile {
        width: 280px;
    }
    
    .owner-img {
        height: 350px;
    }
    
    .owner-badge {
        flex-direction: column;
        padding: 10px 15px;
        text-align: center;
        white-space: normal;
        width: 90%;
    }
    
    .service-card,
    .appointment-box {
        padding: 25px 20px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .contact-item i {
        margin-bottom: 15px;
    }
}


/* Simple Services CSS */
.services-grid-simple {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.service-card-simple {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card-simple:hover {
    transform: translateY(-5px);
    border-color: var(--dark-pink);
    box-shadow: 0 8px 25px rgba(231, 84, 128, 0.15);
}

.service-header-simple {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-pink);
}

.service-card-simple h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
    font-weight: 600;
    flex-grow: 1;
}

.service-time-simple {
    background: var(--gradient-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 15px;
    white-space: nowrap;
    margin-left: 10px;
}

.service-desc-simple {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
    min-height: 40px;
}

.service-footer-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px dashed var(--border-color);
}

.service-price-simple {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-pink);
}

.book-btn-simple {
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.book-btn-simple:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 84, 128, 0.3);
}

.services-note-simple {
    text-align: center;
    margin-top: 40px;
    padding: 25px;
    background: var(--light-pink);
    border-radius: 12px;
    border-left: 4px solid var(--gold);
}

.services-note-simple p {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.services-note-simple i {
    color: var(--dark-pink);
}


