/* ============================================
   Morozova Nails Studio - Design Variant 4
   Aphrodite Theme - Complete Structure & Design
   ============================================ */

:root {
    --aphrodite-primary: #d4a574;
    --aphrodite-primary-dark: #b8905f;
    --aphrodite-secondary: #8b7355;
    --aphrodite-bg: #212529;
    --aphrodite-bg-light: #2a2e33;
    --aphrodite-text: #ffffff;
    --aphrodite-text-light: #b0b0b0;
    --aphrodite-border: #3a3e43;
    --aphrodite-accent: #d4a574;
    --aphrodite-shadow: rgba(0, 0, 0, 0.3);
    --aphrodite-shadow-hover: rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--aphrodite-text);
    background: var(--aphrodite-bg);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ============================================
   Navigation
   ============================================ */

.navbar-aphrodite {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(33, 37, 41, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px var(--aphrodite-shadow);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-aphrodite.scrolled {
    box-shadow: 0 4px 20px var(--aphrodite-shadow-hover);
}

.nav-container-aphrodite {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-aphrodite {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--aphrodite-text);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-menu-aphrodite {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link-aphrodite {
    text-decoration: none;
    color: var(--aphrodite-text);
    font-size: 0.95rem;
    font-weight: 400;
    position: relative;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link-aphrodite::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--aphrodite-primary);
    transition: width 0.3s ease;
}

.nav-link-aphrodite:hover,
.nav-link-aphrodite.active {
    color: var(--aphrodite-primary-dark);
}

.nav-link-aphrodite:hover::after,
.nav-link-aphrodite.active::after {
    width: 100%;
}

.menu-toggle-aphrodite {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle-aphrodite span {
    width: 25px;
    height: 2px;
    background: var(--aphrodite-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ============================================
   Hero Section
   ============================================ */

.hero-aphrodite {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 2rem 80px;
    background: var(--aphrodite-bg);
    text-align: center;
}

.hero-content-aphrodite {
    max-width: 800px;
}

.hero-greeting {
    font-size: 1rem;
    font-weight: 400;
    color: var(--aphrodite-text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-title-aphrodite {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 400;
    line-height: 1.2;
    margin: 1.5rem 0;
    color: var(--aphrodite-text);
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--aphrodite-text-light);
    margin: 2rem 0 3rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Buttons
   ============================================ */

.btn-aphrodite {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--aphrodite-primary);
    color: white;
}

.btn-primary:hover {
    background: var(--aphrodite-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--aphrodite-text);
    border: 1px solid var(--aphrodite-border);
}

.btn-secondary:hover {
    border-color: var(--aphrodite-primary);
    color: var(--aphrodite-primary-dark);
}

.btn-outline {
    background: transparent;
    color: var(--aphrodite-primary-dark);
    border: 2px solid var(--aphrodite-primary);
}

.btn-outline:hover {
    background: var(--aphrodite-primary);
    color: white;
}

/* ============================================
   Container & Sections
   ============================================ */

.container-aphrodite {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header-aphrodite {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--aphrodite-primary-dark);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title-aphrodite {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--aphrodite-text);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.section-description {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--aphrodite-text-light);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   Services Section
   ============================================ */

.services-aphrodite {
    padding: 100px 0;
    background: var(--aphrodite-bg);
}

.services-grid-aphrodite {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card-aphrodite {
    background: var(--aphrodite-bg-light);
    border: 1px solid var(--aphrodite-border);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card-aphrodite:hover {
    border-color: var(--aphrodite-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--aphrodite-shadow);
}

.service-icon-aphrodite {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-title-aphrodite {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--aphrodite-text);
    margin-bottom: 1rem;
}

.service-description-aphrodite {
    font-size: 0.95rem;
    color: var(--aphrodite-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link-aphrodite {
    color: var(--aphrodite-primary-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.service-link-aphrodite:hover {
    color: var(--aphrodite-primary);
}

.service-link-aphrodite span {
    margin-left: 0.5rem;
}

.services-footer-aphrodite {
    text-align: center;
}

/* ============================================
   About Section
   ============================================ */

.about-aphrodite {
    padding: 100px 0;
    background: var(--aphrodite-bg-light);
}

.about-content-aphrodite {
    max-width: 900px;
    margin: 0 auto;
}

.about-subtitle {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--aphrodite-primary-dark);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.about-lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--aphrodite-text);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-text-aphrodite p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--aphrodite-text-light);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-text-aphrodite .btn-aphrodite {
    margin-top: 2rem;
}

/* ============================================
   Why Choose Us Section
   ============================================ */

.why-choose-aphrodite {
    padding: 100px 0;
    background: var(--aphrodite-bg);
}

.features-grid-aphrodite {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.feature-box-aphrodite {
    padding: 2rem;
    background: var(--aphrodite-bg-light);
    border: 1px solid var(--aphrodite-border);
    transition: all 0.3s ease;
}

.feature-box-aphrodite:hover {
    border-color: var(--aphrodite-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--aphrodite-shadow);
}

.feature-title-aphrodite {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--aphrodite-text);
    margin-bottom: 1rem;
}

.feature-description-aphrodite {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--aphrodite-text-light);
    line-height: 1.7;
}

/* ============================================
   Prices Section
   ============================================ */

.prices-aphrodite {
    padding: 100px 0;
    background: var(--aphrodite-bg-light);
}

.prices-grid-aphrodite {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.price-card-aphrodite {
    background: var(--aphrodite-bg-light);
    border: 1px solid var(--aphrodite-border);
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
}

.price-card-aphrodite:hover {
    border-color: var(--aphrodite-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--aphrodite-shadow);
}

.price-header-aphrodite {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--aphrodite-border);
}

.price-category-aphrodite {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--aphrodite-text);
    letter-spacing: 0.5px;
}

.price-list-aphrodite {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.price-item-aphrodite {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--aphrodite-border);
}

.price-item-aphrodite:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.price-name-aphrodite {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--aphrodite-text);
}

.price-value-aphrodite {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--aphrodite-primary-dark);
    white-space: nowrap;
}

/* ============================================
   Contact Section
   ============================================ */

.contact-aphrodite {
    padding: 100px 0;
    background: var(--aphrodite-bg);
}

.contact-content-aphrodite {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-aphrodite {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item-aphrodite {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-label-aphrodite {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--aphrodite-primary-dark);
}

.contact-value-aphrodite {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--aphrodite-text-light);
    line-height: 1.8;
}

.map-container-aphrodite {
    height: 500px;
    border: 1px solid var(--aphrodite-border);
    background: var(--aphrodite-bg);
    overflow: hidden;
}

.map-container-aphrodite iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============================================
   Footer
   ============================================ */

.footer-aphrodite {
    background: var(--aphrodite-bg-light);
    padding: 3rem 0 2rem;
    border-top: 1px solid var(--aphrodite-border);
}

.footer-container-aphrodite {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-text {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--aphrodite-text-light);
    letter-spacing: 0.5px;
}

.social-aphrodite {
    display: flex;
    gap: 1.5rem;
}

.social-link-aphrodite {
    color: var(--aphrodite-primary-dark);
    transition: all 0.3s ease;
}

.social-link-aphrodite:hover {
    color: var(--aphrodite-primary);
    transform: translateY(-3px);
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 968px) {
    .nav-menu-aphrodite {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 70px);
        background: var(--aphrodite-bg);
        flex-direction: column;
        padding: 3rem 2rem;
        border-left: 1px solid var(--aphrodite-border);
        transition: right 0.3s ease;
        z-index: 999;
        box-shadow: -5px 0 30px var(--aphrodite-shadow);
    }

    .nav-menu-aphrodite.active {
        right: 0;
    }

    .menu-toggle-aphrodite {
        display: flex;
    }

    .menu-toggle-aphrodite.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .menu-toggle-aphrodite.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle-aphrodite.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .contact-content-aphrodite {
        grid-template-columns: 1fr;
    }

    .map-container-aphrodite {
        height: 400px;
    }

    .services-grid-aphrodite,
    .features-grid-aphrodite,
    .prices-grid-aphrodite {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-container-aphrodite,
    .container-aphrodite {
        padding: 0 1.5rem;
    }

    .hero-aphrodite {
        padding: 100px 1.5rem 60px;
    }

    .services-aphrodite,
    .about-aphrodite,
    .why-choose-aphrodite,
    .prices-aphrodite,
    .contact-aphrodite {
        padding: 80px 0;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-aphrodite {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .footer-container-aphrodite {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title-aphrodite {
        font-size: 2.5rem;
    }

    .service-card-aphrodite,
    .price-card-aphrodite {
        padding: 2rem 1.5rem;
    }
}
