:root {
    --bg-light: #FCF9F5;
    /* Pearl Cream — main background */
    --bg-secondary: #F7EBE8;
    /* Rose Petal — secondary blocks */
    --bg-dark: #7D6B65;
    /* Soft Mocha — used for dark sections */
    --text-dark: #7D6B65;
    /* Soft Mocha — main text */
    --text-light: #FCF9F5;
    --accent: #EBDAD2;
    /* Misty Rose — accent elements */

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Jost', sans-serif;

    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    /* Hide default cursor */
}

html {
    scroll-behavior: smooth;
    cursor: none;
    overflow-x: hidden;
    max-width: 100vw;
    overscroll-behavior-x: none;
}

/* Custom Cursor */
.custom-cursor {
    width: 10px;
    height: 10px;
    background-color: #EBDAD2;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10005;
    transform: translate(-50%, -50%);
    transition: transform 0.1s;
}

.custom-cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid #EBDAD2;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10004;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s, transform 0.15s ease-out;
}

/* Hover effects for cursor */
.custom-cursor-follower.hover {
    width: 60px;
    height: 60px;
    background-color: rgba(235, 218, 210, 0.2);
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    overscroll-behavior-x: none;
    position: relative;
}

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

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

/* Typography */
h1,
h2,
h3,
.logo {
    font-family: var(--font-heading);
    font-weight: 300;
}

.highlight {
    font-style: italic;
    color: var(--accent);
    font-weight: 400;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    opacity: 0.6;
    font-weight: 400;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 45px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: var(--transition);
    cursor: none;
    /* using our custom cursor */
    border-radius: 2px;
}

.btn-primary {
    background-color: var(--bg-dark);
    color: var(--text-light);
    border: 1px solid var(--bg-dark);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--text-dark);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid var(--bg-dark);
}

.btn-outline:hover {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.dark-theme-btn {
    background-color: var(--text-light);
    color: var(--bg-dark);
    border: 1px solid var(--text-light);
}

.dark-theme-btn:hover {
    background-color: transparent;
    color: var(--text-light);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(252, 249, 245, 0.9) 0%, rgba(252, 249, 245, 0) 100%);
}

.navbar.scrolled {
    position: fixed;
    background-color: rgba(252, 249, 245, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px 50px;
    transition: var(--transition);
}

.logo {
    letter-spacing: 4px;
    text-transform: uppercase;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.logo-link:hover {
    opacity: 0.7;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    margin-left: 30px;
    font-size: 0.8rem;
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
}

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

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    margin-right: 40px;
}

.lang-switcher button {
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dark);
    opacity: 0.45;
    cursor: pointer;
    padding: 4px 2px;
    transition: var(--transition);
    position: relative;
}

.lang-switcher button.active {
    opacity: 1;
}

.lang-switcher button.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--text-dark);
}

.lang-switcher button:hover {
    opacity: 1;
}

.lang-sep {
    font-size: 0.7rem;
    opacity: 0.3;
    color: var(--text-dark);
    user-select: none;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 16px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    transition: var(--transition);
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    height: 1px;
    width: 100%;
    background-color: var(--text-dark);
    transition: var(--transition);
}

.hamburger.active {
    position: fixed;
    top: 30px;
    right: 30px;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 50px 50px;
    overflow: hidden;
    max-width: 100vw;
}

.hero-bg.right {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: #F7EBE8;
    z-index: -1;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
    z-index: 2;
}

.hero .title {
    font-size: 5.5rem;
    line-height: 1.05;
    margin: 20px 0 30px;
    font-weight: 300;
}

.hero .description {
    font-size: 1.15rem;
    margin-bottom: 50px;
    opacity: 0.8;
    line-height: 1.8;
    font-weight: 300;
}

.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* Stats */
.stats {
    background-color: var(--bg-dark);
    color: var(--text-light);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 60px 0;
}

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

.stat-item h2 {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

.stat-separator {
    width: 1px;
    height: 60px;
    background-color: rgba(246, 237, 233, 0.2);
}

/* Lessons */
.lessons {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.lessons-grid {
    display: flex;
    align-items: center;
    gap: 50px;
}

.lessons-video {
    flex: 1;
}

.lessons-video-player {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.lessons-content {
    flex: 1;
    padding-left: 40px;
}

.lessons-desc {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.8;
}

.lessons-list {
    list-style: none;
}

.lessons-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1rem;
}

.lessons-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 15px;
    height: 1px;
    background-color: var(--accent);
}

/* Before After - Video Carousel */
.before-after {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.ba-carousel {
    position: relative;
    margin-top: 50px;
}

.ba-viewport {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.ba-carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 10px 0 40px;
}

.ba-carousel-track::-webkit-scrollbar {
    display: none;
}

.ba-slide {
    flex: 0 0 calc(33.333% - 14px);
    scroll-snap-align: start;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ba-slide:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.ba-slide video {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: top;
    display: block;
}

/* Carousel Arrows */
.ba-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    width: 44px;
    height: 44px;
    border: none;
    background: none;
    color: var(--bg-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 5;
    opacity: 0.8;
}

.ba-arrow:hover {
    opacity: 1;
}

.ba-arrow svg {
    width: 28px;
    height: 28px;
    stroke-width: 1;
}

.ba-arrow-left {
    left: -60px;
}

.ba-arrow-right {
    right: -60px;
}

@media (max-width: 1350px) {
    .ba-arrow-left { left: 10px; background: rgba(255,255,255,0.7); border-radius: 50%; opacity: 1; }
    .ba-arrow-right { right: 10px; background: rgba(255,255,255,0.7); border-radius: 50%; opacity: 1; }
}

.ba-arrow:hover {
    opacity: 1;
    transform: translateY(-60%) scale(1.1);
}

/* Carousel Dots */
.ba-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.ba-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid var(--bg-dark);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.ba-dot.active {
    background-color: var(--bg-dark);
    transform: scale(1.2);
}

/* Pricing */
.pricing {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-top: 60px;
    align-items: stretch;
}

.pricing-card {
    width: 400px;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
}

.pricing-card.light {
    background-color: transparent;
    border: 1px solid var(--bg-dark);
    border-right: none;
}

.pricing-card.dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    z-index: 2;
    transform: scale(1.05);
}

.plan-name {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.pricing-card.dark .plan-name {
    color: var(--accent);
}

.plan-price {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1;
}

.plan-desc {
    font-size: 0.95rem;
    margin-bottom: 40px;
    opacity: 0.7;
    min-height: 60px;
}

.plan-list {
    list-style: none;
    flex: 1;
}

.plan-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
}

.pricing-card.dark .plan-list li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.plan-list li.disabled {
    opacity: 0.4;
    text-decoration: line-through;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
}

.testimonials.dark-bg {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.testimonials-container {
    padding: 0 50px;
    overflow: hidden;
}

.testimonials-scroll {
    margin-top: 60px;
    display: flex;
    overflow-x: auto;
    padding-bottom: 40px;
    scrollbar-width: none;
    /* Firefox */
}

.testimonials-scroll::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
}

.testimo-wrapper {
    display: flex;
    gap: 30px;
}

.testimo-card {
    min-width: 350px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-left: 1px solid var(--accent);
    display: flex;
    flex-direction: column;
}

.testimo-card .quote {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 20px;
    flex: 1;
}

.testimo-card .author {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
}

/* About Stylist */
.about {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.about-grid {
    display: flex;
    gap: 80px;
    align-items: center;
}

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

.about-img::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid var(--bg-dark);
    z-index: -1;
}

.about-video-container {
    position: relative;
    width: 100%;
    padding-bottom: 125%; /* 4:5 Aspect Ratio for vertical-ish video */
    height: 0;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.about-video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.about-content {
    flex: 1;
}

.about-desc {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.signature {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 3rem;
    color: var(--accent);
    margin-top: 30px;
}

/* Footer */
.footer {
    padding: 80px 20px 40px;
    background-color: var(--bg-primary);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

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

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-dark);
}

.footer-tagline {
    font-size: 0.9rem;
    opacity: 0.6;
}

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

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    transition: var(--transition);
}

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

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-dark);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
    transition: var(--transition);
}

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

.footer-copy {
    font-size: 0.8rem;
    opacity: 0.4;
    text-align: center;
}

.footer-created {
    font-size: 0.75rem;
    opacity: 0.6;
    text-align: center;
    margin-top: 10px;
    font-family: var(--font-body);
}

.footer-created a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 400;
    transition: var(--transition);
}

.footer-created a:hover {
    color: var(--accent);
    opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero .title {
        font-size: 4.5rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .pricing-grid {
        gap: 20px;
    }
}

@media (max-width: 900px) {
    .navbar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 30px 40px;
        width: 100%;
    }

    .lang-switcher {
        margin-right: 20px;
        margin-left: auto;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-light);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0;
        gap: 0;
        z-index: 999;
        visibility: hidden;
        opacity: 0;
        transition: opacity 0.4s ease, visibility 0s 0.4s;
    }

    .nav-links.active {
        visibility: visible;
        opacity: 1;
        transition: opacity 0.4s ease, visibility 0s 0s;
    }

    .nav-links a {
        display: block;
        margin-left: 0;
        font-family: var(--font-heading);
        font-size: 2.2rem;
        font-weight: 300;
        letter-spacing: 6px;
        line-height: 1;
        padding: 20px 0;
        color: var(--text-dark);
        text-transform: uppercase;
        position: relative;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
    }

    .nav-links.active a {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links.active a:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active a:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-links.active a:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-links.active a:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-links.active a:nth-child(5) {
        transition-delay: 0.5s;
    }

    .nav-links a::after {
        content: '';
        display: block;
        width: 30px;
        height: 1px;
        background-color: var(--accent);
        margin: 20px auto 0;
    }

    .nav-links a:last-child::after {
        display: none;
    }

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

    .hero {
        flex-direction: column;
        padding: 0;
        text-align: center;
        min-height: auto;
    }

    .hero-content {
        order: 2;
        padding: 40px 20px 60px;
        padding-right: 20px;
        position: relative;
        z-index: 2;
    }

    .hero .title {
        font-size: 3.2rem;
    }

    .hero-bg.right {
        display: none;
    }

    .hero-image {
        order: 1;
        position: relative;
        width: 100%;
        height: 60vh;
        top: auto;
        right: auto;
    }

    .hero-photo {
        width: 100%;
        height: 100%;
    }

    .stats {
        flex-direction: column;
        gap: 40px;
        padding: 60px 20px;
    }

    .stat-separator {
        width: 80px;
        height: 1px;
    }

    .lessons {
        padding: 80px 0;
    }

    .lessons-grid,
    .about-grid {
        flex-direction: column;
        gap: 40px;
        width: 100%;
        overflow: hidden;
    }

    .lessons-content {
        padding-left: 0;
        text-align: center;
    }

    .lessons-list li {
        text-align: left;
    }

    .lessons-video-player {
        height: 400px;
    }

    .before-after {
        padding: 80px 0;
    }

    .ba-slide {
        flex: 0 0 80%;
    }

    .ba-slide video {
        height: 55vh;
        object-position: top;
    }

    .ba-arrow-left {
        left: 5px;
    }

    .ba-arrow-right {
        right: 5px;
    }

    .ba-arrow {
        width: 36px;
        height: 36px;
    }

    .pricing {
        padding: 80px 0;
    }

    .pricing-grid {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin-top: 40px;
    }

    .pricing-card {
        width: 100%;
        max-width: 450px;
        padding: 40px 30px;
    }

    .pricing-card.light {
        border-right: 1px solid var(--bg-dark);
        border-bottom: none;
    }

    .pricing-card.dark {
        transform: scale(1);
    }

    .testimonials {
        padding: 80px 0;
    }

    .testimo-card {
        min-width: 280px;
        padding: 30px 20px;
    }

    .about {
        padding: 80px 0;
    }

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

    .about-img {
        width: 100%;
    }

    .about-video-container {
        padding-bottom: 150%; /* Slightly taller on mobile */
    }

    .footer {
        padding: 60px 20px 30px;
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        margin-bottom: 40px;
    }

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

@media (max-width: 480px) {
    .navbar {
        padding: 20px 20px;
    }

    .logo {
        font-size: 1.15rem;
        letter-spacing: 2px;
    }

    .lang-switcher {
        margin-right: 14px;
    }

    .lang-switcher button {
        font-size: 0.7rem;
    }

    .hamburger.active {
        top: 25px;
        right: 20px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .hero .title {
        font-size: 3.2rem;
    }


    .hero .description {
        font-size: 1rem;
    }

    .stat-item h2 {
        font-size: 2.5rem;
    }

    .btn {
        padding: 15px 30px;
        font-size: 0.8rem;
    }
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: var(--bg-primary);
}

.faq-item h3 {
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-dark);
}
/* Entrance Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.popup-overlay.active {
    display: flex;
}

.popup-content {
    background-color: var(--bg-light);
    width: 100%;
    max-width: 450px;
    position: relative;
    padding: 0;
    border-radius: 4px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    animation: popupFadeIn 0.5s ease-out;
    overflow: hidden;
}



.popup-content.popup-syllabus {
    max-width: 600px;
    padding: 40px 30px;
    max-height: 90vh;
    overflow-y: auto;
}

.syllabus-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 20px;
    opacity: 0.9;
    text-align: left;
}

.syllabus-text strong {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--bg-dark);
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: 500;
}



@keyframes popupFadeIn {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    line-height: 1;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    opacity: 0.8;
    transition: var(--transition);
}

.popup-close:hover {
    opacity: 1;
    background: #fff;
}



.popup-form-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent);
}



/* Beauty Club Page Specifics */
.club-hero {
    padding: 140px 0 80px;
}

.club-grid {
    display: grid;
    grid-template-columns: 4fr 6fr;
    gap: 60px;
    align-items: flex-start;
}

.club-video-side {
    position: relative;
}

.club-video-side video {
    width: 100%;
    height: auto;
    aspect-ratio: 9/16;
    object-fit: cover;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.club-form-side {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.club-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 30px;
}

.club-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.8;
}

.club-subtitle ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.pre-registration-form {
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: 2px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    opacity: 0.6;
}

.form-input {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(125, 107, 101, 0.2);
    background: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
}

.form-btn {
    width: 100%;
    margin-top: 20px;
    text-align: center;
    border: none;
    font-family: var(--font-body);
}

.form-success {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
    border-radius: 2px;
}

/* Responsive for Club Page */
@media (max-width: 900px) {
    .club-hero {
        padding: 100px 0 60px;
    }
    
    .club-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .club-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .club-hero {
        padding: 80px 0 40px;
    }
    
    .club-title {
        font-size: 1.8rem;
    }
    
    .club-subtitle {
        font-size: 1.05rem;
        margin-bottom: 30px;
    }
    
    .club-video-side video {
        aspect-ratio: 4/5; /* Less vertical on mobile to show more content higher up */
    }
    
    .about-desc {
        font-size: 0.95rem;
    }
    
    .pre-registration-form {
        padding: 30px 20px;
    }
}
