/* ============================================
   SALON BEAUTY QUEEN - Bacău
   Elegant Feminine Beauty Salon
   Colors: Dusty Pink, Gold, White
   ============================================ */

:root {
    /* BOLD GLAM - Hot Pink + Black + Gold */
    --primary: #FF1493;       /* Hot pink */
    --secondary: #D4AF37;     /* Gold */
    --accent: #FF69B4;        /* Pink light */
    --cream: #FFF5F8;
    --white: #FFFFFF;
    --gray: #6B6B6B;
    --dark: #1A1A1A;
    --light: #FFF0F5;
    --neon: #FF00FF;

    --font-heading: 'Abril Fatface', Georgia, cursive;
    --font-body: 'Poppins', sans-serif;

    --shadow: 0 10px 40px rgba(201, 169, 166, 0.2);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--dark); background: var(--white); line-height: 1.7; }
img { max-width: 100%; height: auto; }
a { color: var(--secondary); text-decoration: none; transition: var(--transition); }

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; color: var(--dark); }
h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}
.btn-primary { background: var(--secondary); color: var(--white); }
.btn-primary:hover { background: #B8962F; transform: translateY(-3px); box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4); }
.btn-outline { background: transparent; border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--secondary); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: #3A2F2D; }

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(201, 169, 166, 0.15);
}
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--dark);
    font-weight: 700;
}
.logo span { color: var(--secondary); }
.logo .crown { color: var(--secondary); margin-right: 5px; }
.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}
.nav-menu a {
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.nav-menu a:hover { color: var(--secondary); }
.nav-cta { display: flex; align-items: center; gap: 20px; }
.nav-phone { color: var(--secondary); font-weight: 600; }
.nav-phone i { margin-right: 5px; }

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(201, 169, 166, 0.9), rgba(212, 175, 55, 0.7)),
                url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1920') center/cover;
    padding-top: 80px;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-content { color: var(--white); }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 25px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; text-shadow: 2px 2px 4px rgba(0,0,0,0.2); }
.hero p { font-size: 1.15rem; margin-bottom: 30px; opacity: 0.95; }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* Sections */
.section { padding: 100px 0; }
.section-light { background: var(--light); }
.section-cream { background: var(--cream); }
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}
.section-header p { color: var(--gray); margin-top: 15px; }
.divider {
    width: 60px;
    height: 3px;
    background: var(--secondary);
    margin: 20px auto 0;
    border-radius: 3px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.service-card:hover { transform: translateY(-10px); }
.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}
.service-icon i { font-size: 2rem; color: var(--white); }
.service-card h3 { margin-bottom: 15px; }
.service-card p { color: var(--gray); margin-bottom: 20px; }
.service-price {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Price List */
.price-section { background: var(--cream); }
.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}
.price-category {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
}
.price-category h3 {
    color: var(--secondary);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent);
}
.price-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed var(--accent);
}
.price-item:last-child { border-bottom: none; }
.price-item .name { color: var(--dark); }
.price-item .price { color: var(--secondary); font-weight: 600; }

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image {
    position: relative;
}
.about-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
}
.about-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--secondary);
    color: var(--white);
    padding: 25px 35px;
    border-radius: 20px;
    text-align: center;
}
.about-badge h4 { font-size: 2.5rem; }
.about-content h2 { margin-bottom: 20px; }
.about-content p { color: var(--gray); margin-bottom: 15px; }
.about-features { margin-top: 30px; }
.about-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.about-feature i { color: var(--secondary); font-size: 1.2rem; }

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.1); }

/* CTA */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}
.cta-section h2 { color: var(--white); margin-bottom: 15px; }
.cta-section p { margin-bottom: 30px; opacity: 0.9; }

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.contact-info h3 { margin-bottom: 30px; color: var(--secondary); }
.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}
.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-icon i { color: var(--secondary); }
.contact-item h4 { margin-bottom: 5px; }
.contact-item p { color: var(--gray); }
.contact-form {
    background: var(--cream);
    padding: 40px;
    border-radius: 20px;
}
.contact-form h3 { margin-bottom: 25px; color: var(--secondary); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid var(--accent);
    border-radius: 10px;
    font-family: inherit;
    transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}
.footer .logo { color: var(--white); margin-bottom: 15px; display: block; }
.footer-about p { color: rgba(255,255,255,0.7); }
.footer h4 { color: var(--secondary); margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.7); }
.footer-links a:hover { color: var(--secondary); }
.footer-bottom {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.5);
}

/* Fixed CTA */
.cta-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}
.cta-fixed .btn { box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4); }

/* Responsive */
@media (max-width: 992px) {
    .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-menu { display: none; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .hero-buttons { flex-direction: column; }
    .price-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}
