:root {
    /* Colors */
    --light-pink: #DA8B9D;
    --medium-pink: #C25766;
    --deep-fuchsia: #B0003A;
    --bordeaux: #7B1525;
    --light-gold: #F7E38A;
    --dark-gold: #D9B670;
    --dark-brown: #2A2020;
    --soft-white: #F2EAEA;

    /* Fonts */
    --font-title: 'Playfair Display', serif;
    --font-text: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-text);
    background-color: var(--soft-white);
    color: var(--dark-brown);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-title);
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gold-text {
    color: var(--dark-gold);
    background: linear-gradient(to right, var(--light-gold), var(--dark-gold));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-gold {
    background: linear-gradient(45deg, var(--dark-gold), var(--light-gold));
    color: var(--bordeaux);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(217, 182, 112, 0.4);
}

/* Header */
header {
    background-color: var(--dark-brown);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light-gold);
    font-family: var(--font-title);
    font-size: 1.5rem;
    text-decoration: none;
}

.logo i {
    font-size: 1.8rem;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: var(--soft-white);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--light-gold);
}

.contact-info-header {
    display: flex;
    gap: 20px;
    color: var(--light-gold);
    font-size: 0.8rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(218, 139, 157, 0.6), rgba(123, 21, 37, 0.6));
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--soft-white);
    max-width: 800px;
    padding: 20px;
}

.hero-logo-large {
    font-size: 4rem;
    color: var(--light-gold);
    margin-bottom: 20px;
    animation: float 6s ease-in-out infinite;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease-out forwards;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    color: var(--light-gold);
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--dark-brown);
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    nav ul.active {
        display: flex;
    }

    .contact-info-header {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}

/* Sections Common */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--bordeaux);
    margin-bottom: 10px;
    text-align: center;
}

.lotus-divider {
    color: var(--light-gold);
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.lotus-divider::before,
.lotus-divider::after {
    content: '';
    display: inline-block;
    width: 50px;
    height: 1px;
    background-color: var(--light-gold);
    vertical-align: middle;
    margin: 0 15px;
}

/* Salon Gallery Section */
.salon-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.salon-photo {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    border: 3px solid var(--light-gold);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 4/3;
}

.salon-photo:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(217, 182, 112, 0.3);
}

.salon-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.salon-photo:hover img {
    transform: scale(1.1);
}

/* About Section */
.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: var(--dark-brown);
    font-style: italic;
}

/* Why Us Section */
.bg-light {
    background-color: #fff;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.why-us-card {
    background: #fff;
    padding: 40px 20px;
    text-align: center;
    border: 1px solid var(--light-gold);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-us-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--light-gold), var(--dark-gold));
}

.why-us-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--bordeaux);
    margin-bottom: 20px;
}

.why-us-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-brown);
}

.why-us-card p {
    color: #666;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-category {
    background: #fff;
    border: 1px solid var(--light-pink);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-category:hover {
    transform: translateY(-5px);
    border-color: var(--light-gold);
}

.service-category h3 {
    color: var(--bordeaux);
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--light-gold);
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-category h3 i {
    color: var(--dark-gold);
}

.price-list {
    list-style: none;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.95rem;
    border-bottom: 1px dashed #eee;
    padding-bottom: 5px;
}

.price-list li:last-child {
    border-bottom: none;
}

.price-list li span:last-child {
    font-weight: 600;
    color: var(--medium-pink);
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 50px;
}

.contact-info h3,
.contact-form h3 {
    color: var(--bordeaux);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.contact-info i {
    color: var(--dark-gold);
    width: 20px;
}

.map-container {
    margin-top: 30px;
    border: 2px solid var(--light-gold);
    border-radius: 10px;
    overflow: hidden;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-text);
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--medium-pink);
}

/* Footer */
footer {
    background-color: var(--dark-brown);
    color: var(--soft-white);
    padding: 50px 0 20px;
    margin-top: 50px;
    border-top: 3px solid var(--light-gold);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-title);
    font-size: 2rem;
    color: var(--light-gold);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--soft-white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--light-gold);
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: var(--light-gold);
    font-size: 1.5rem;
    transition: transform 0.3s;
}

width: 100%;
height: 5px;
background: linear-gradient(to right, var(--light-gold), var(--dark-gold));
}

.why-us-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--bordeaux);
    margin-bottom: 20px;
}

.why-us-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-brown);
}

.why-us-card p {
    color: #666;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-category {
    background: #fff;
    border: 1px solid var(--light-pink);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-category:hover {
    transform: translateY(-5px);
    border-color: var(--light-gold);
}

.service-category h3 {
    color: var(--bordeaux);
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--light-gold);
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-category h3 i {
    color: var(--dark-gold);
}

.price-list {
    list-style: none;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.95rem;
    border-bottom: 1px dashed #eee;
    padding-bottom: 5px;
}

.price-list li:last-child {
    border-bottom: none;
}

.price-list li span:last-child {
    font-weight: 600;
    color: var(--medium-pink);
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 50px;
}

.contact-info h3,
.contact-form h3 {
    color: var(--bordeaux);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.contact-info i {
    color: var(--dark-gold);
    width: 20px;
}

.map-container {
    margin-top: 30px;
    border: 2px solid var(--light-gold);
    border-radius: 10px;
    overflow: hidden;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-text);
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--medium-pink);
}

/* Footer */
footer {
    background-color: var(--dark-brown);
    color: var(--soft-white);
    padding: 50px 0 20px;
    margin-top: 50px;
    border-top: 3px solid var(--light-gold);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-title);
    font-size: 2rem;
    color: var(--light-gold);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--soft-white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--light-gold);
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: var(--light-gold);
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.footer-social a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    font-size: 2.5rem;
    color: var(--bordeaux);
    margin-bottom: 20px;
}

.why-us-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-brown);
}

.why-us-card p {
    color: #666;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-category {
    background: #fff;
    border: 1px solid var(--light-pink);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-category:hover {
    transform: translateY(-5px);
    border-color: var(--light-gold);
}

.service-category h3 {
    color: var(--bordeaux);
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--light-gold);
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-category h3 i {
    color: var(--dark-gold);
}

.price-list {
    list-style: none;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.95rem;
    border-bottom: 1px dashed #eee;
    padding-bottom: 5px;
}

.price-list li:last-child {
    border-bottom: none;
}

.price-list li span:last-child {
    font-weight: 600;
    color: var(--medium-pink);
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 50px;
}

.contact-info h3,
.contact-form h3 {
    color: var(--bordeaux);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.contact-info i {
    color: var(--dark-gold);
    width: 20px;
}

.map-container {
    margin-top: 30px;
    border: 2px solid var(--light-gold);
    border-radius: 10px;
    overflow: hidden;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-text);
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--medium-pink);
}

/* Footer */
footer {
    background-color: var(--dark-brown);
    color: var(--soft-white);
    padding: 50px 0 20px;
    margin-top: 50px;
    border-top: 3px solid var(--light-gold);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-title);
    font-size: 2rem;
    color: var(--light-gold);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--soft-white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--light-gold);
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: var(--light-gold);
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.footer-social a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #888;
}

/* Instagram Button */
.instagram-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s;
}

.instagram-btn:hover {
    transform: scale(1.1);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .salon-gallery {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}
/* Gallery Section */
.salon-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.salon-gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.salon-gallery img:hover {
    transform: scale(1.03);
}

