/* Homepage CSS - Brighton Dance Centre */

/* Why Choose Us Section */
.why-choose {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
    overflow: visible;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #00CED1;
}

.why-choose h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    color: #2D2D2D;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.why-choose h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #00CED1;
    border-radius: 2px;
}

.features-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
}

.feature {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    min-height: 150px;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #00CED1;
    border-radius: 12px 12px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: rgba(0, 206, 209, 0.2);
}

.feature:hover::before {
    opacity: 1;
}

.feature h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: #2D2D2D;
    margin-bottom: 12px;
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}


/* Location Section */
.location-section {
    padding: 80px 0;
    background: #fff;
}

.location-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #2D2D2D;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.location-intro {
    font-size: 1.2rem;
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.location-item {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 8px;
}

.location-item h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #00CED1;
    text-transform: uppercase;
}

.location-list {
    list-style: none;
    padding: 0;
}

.location-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
    line-height: 1.6;
}

.location-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #00CED1;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

.location-footer {
    text-align: center;
    padding: 30px;
    background: #f0fffe;
    border-radius: 8px;
    margin-top: 40px;
}

.location-footer p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

.location-footer strong {
    color: #2D2D2D;
    font-weight: 600;
}

/* Brighton Location Showcase */
.brighton-showcase {
    padding: 100px 0;
    background: #f0fffe;
    position: relative;
    overflow: hidden;
}

.brighton-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(0,206,209,0.05);
    border-radius: 50%;
}

.brighton-showcase h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 30px;
    color: #2D2D2D;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.brighton-showcase h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #00CED1;
    margin: 20px auto;
}

.showcase-intro {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
    margin: 0 auto 60px;
}

.showcase-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.showcase-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #00CED1;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-left: 20px;
}

.showcase-content h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: #00CED1;
}

.location-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.location-features li {
    padding: 15px;
    padding-left: 40px;
    position: relative;
    color: #666;
    font-size: 1.05rem;
    background: #f8f8f8;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.location-features li:hover {
    background: #f0fffe;
    transform: translateX(5px);
}

.location-features li::before {
    content: '✓';
    position: absolute;
    left: 15px;
    color: #00CED1;
    font-weight: bold;
    font-size: 1.3rem;
}

.areas-served {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #666;
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.areas-served strong {
    color: #00CED1;
    font-weight: 700;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .brighton-showcase h2 {
        font-size: 2rem;
    }
    
    .showcase-content h3 {
        font-size: 1.5rem;
    }
    
    .location-features li {
        font-size: 1rem;
    }
}

/* Brighton Pricing Section */
.brighton-pricing {
    padding: 80px 0;
    background: #f8f8f8;
}

.brighton-pricing h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #2D2D2D;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.price-option {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.price-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.price-option.featured {
    border: 2px solid #FF6B6B;
}

.price-option .badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF6B6B;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.price-option h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: #2D2D2D;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.price-option .price {
    font-size: 2.5rem;
    color: #00CED1;
    font-weight: bold;
    margin: 20px 0;
    font-family: 'Bebas Neue', sans-serif;
}

.price-option p {
    color: #666;
    margin: 15px 0;
    line-height: 1.6;
}

.price-option .duration {
    padding: 15px;
    background: #f8f8f8;
    border-radius: 5px;
    color: #2D2D2D;
    font-weight: 600;
    margin-top: 20px;
}

.pricing-note {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #f0fffe;
    border-radius: 8px;
}

.pricing-note strong {
    color: #2D2D2D;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .price-option .price {
        font-size: 2rem;
    }
}

/* Booking Urgency Section */
.booking-urgency {
    padding: 100px 0;
    background: #00CED1;
    position: relative;
    overflow: hidden;
}

.booking-urgency::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.urgency-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.urgency-box h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.urgency-box p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 20px;
    line-height: 1.8;
}

.urgency-box p strong {
    color: #fff;
    font-weight: 700;
    font-size: 1.3rem;
}

.urgency-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.urgency-buttons .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.urgency-buttons .btn-primary {
    background: #fff;
    color: #00CED1;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.urgency-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.urgency-buttons .btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.urgency-buttons .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .urgency-box h2 {
        font-size: 2.5rem;
    }
    
    .urgency-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .urgency-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

.brighton-location h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    color: #2D2D2D;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brighton-location h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    margin: 30px 0 20px;
    color: #2D2D2D;
    text-transform: uppercase;
}

.brighton-location p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.brighton-location ul {
    list-style: none;
    padding: 0;
    margin: 20px auto;
    max-width: 600px;
}

.brighton-location li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #666;
    line-height: 1.6;
}

.brighton-location li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00CED1;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Social Proof Section */
.social-proof {
    background: #f8f8f8;
    padding: 60px 0;
    border-bottom: 1px solid #e0e0e0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.stat {
    padding: 20px;
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    font-weight: bold;
    color: #00CED1;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

/* Hero Section with Background Image */
.class-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hen-party-hero {
    background-image: url('../images/hen-party-dance-class-special.jpeg');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.class-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.class-hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.2rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.class-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #fff;
    line-height: 1.6;
}

.class-hero .hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.class-hero .hero-buttons .btn {
    min-width: 150px;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
}

.class-hero .hero-buttons .btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

.class-hero .hero-buttons .btn.btn-primary {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.class-hero .hero-buttons .btn.btn-primary:hover {
    background: #fff;
    color: var(--color-primary);
}

/* Original Hero Section (keeping for fallback) */
.hero {
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #F8F9FB;
    padding: var(--space-2xl) 0;
}

.hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    width: 100%;
}

.hero-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-3xl);
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-title {
    font-family: var(--font-body);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-2xl);
    color: var(--text-dark);
    letter-spacing: -0.02em;
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 10;
}

.hero-content {
    flex: 0 0 45%;
    animation: slideInLeft 1s ease-out;
    max-width: 500px;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: var(--space-xl);
    font-weight: 400;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

/* Hero Button Style */
.btn-hero {
    background-color: var(--white);
    color: var(--black);
    border: 2px solid var(--black);
    padding: 0.75rem 1.75rem;
    font-weight: 700;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-hero:hover {
    background-color: var(--black);
    color: var(--white);
    transform: skewX(-10deg);
    border-color: var(--black);
}

.btn-hero:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0,206,209,0.1);
    animation: shimmer 0.5s ease-out;
}

@keyframes shimmer {
    to {
        left: 100%;
    }
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
}

.btn-text:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.icon-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--text-dark);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.75rem;
    transition: all var(--transition-base);
}

.btn-text:hover .icon-play {
    background-color: var(--primary-color);
}

.hero-image {
    flex: 0 0 55%;
    position: relative;
    animation: slideInRight 1s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
}

/* Decorative Shapes */
.shape {
    position: absolute;
    z-index: 0;
}

/* Pastel Blue circle - hero section */
.shape-circle-blue {
    top: 15%;
    right: 8%;
    width: 120px;
    height: 120px;
    background-color: #E8F4FD;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    opacity: 0.6;
}

/* Pastel Orange circle - left */
.shape-circle-orange {
    bottom: 30%;
    left: 5%;
    width: 60px;
    height: 60px;
    background-color: #FFF0EB;
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
    opacity: 0.6;
}

/* Pastel semi-circle - top right */
.shape-semi-blue {
    top: 0;
    right: 20%;
    width: 200px;
    height: 100px;
    background-color: #E0E7FF;
    border-radius: 0 0 100px 100px;
    transform: rotate(180deg);
}

/* Pastel Pink square - intro section */
.intro .shape-rect-pink {
    position: absolute;
    bottom: -40px;
    left: 10%;
    width: 100px;
    height: 100px;
    background-color: #FFF5F9;
    border-radius: var(--radius-lg);
    transform: rotate(45deg);
    opacity: 0.5;
    z-index: 0;
    animation: float 7s ease-in-out infinite;
}

/* Pastel Yellow blob - bottom left */
.shape-rect-yellow {
    bottom: 15%;
    left: 12%;
    width: 90px;
    height: 90px;
    background-color: #FFFBF0;
    border-radius: 50% 30% 50% 30%;
    opacity: 0.6;
}

/* Pastel Coral star - top middle */
.shape-star-orange {
    top: 12%;
    left: 40%;
    width: 60px;
    height: 60px;
    background-color: #FFCCCB;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: float 5s ease-in-out infinite;
}

/* Additional Pastel Shapes */
/* Mint circle - bottom right */
.shape-circle-mint {
    bottom: 25%;
    right: 15%;
    width: 100px;
    height: 100px;
    background-color: #D1F2E5;
    border-radius: 50%;
    animation: float 7s ease-in-out infinite;
}

/* Peach triangle - top left */
.shape-triangle-peach {
    top: 20%;
    left: 15%;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid #FFE5CC;
    animation: float 6s ease-in-out infinite reverse;
}

/* Lavender blob - middle left */
.shape-blob-lavender {
    top: 50%;
    left: 8%;
    width: 90px;
    height: 90px;
    background-color: #E8D5FF;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 8s ease-in-out infinite;
}

/* Ensure proper layout on larger screens */
@media (min-width: 768px) {
    .hero .container {
        padding: 0 var(--space-lg);
    }
}

/* Force side-by-side layout on screens larger than 700px */
@media (min-width: 701px) {
    .hero-wrapper {
        display: flex !important;
        flex-direction: row !important;
    }
    
    .hero-content {
        flex: 0 0 45% !important;
        max-width: none !important;
    }
    
    .hero-image {
        flex: 0 0 55% !important;
        max-width: none !important;
    }
}


/* Introduction Section */
.intro {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.intro h2 {
    color: var(--text-dark);
    margin-bottom: var(--space-lg);
}

.intro p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
}

/* Featured Hen Parties Section */
.featured-hen-parties {
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.featured-hen-parties::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: var(--accent-color);
    opacity: 0.1;
    border-radius: 50%;
    z-index: var(--z-shapes);
}

.featured-hen-parties h2 {
    text-align: center;
    margin-bottom: var(--space-2xl);
    color: var(--text-dark);
}

.theme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.theme-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
}

.theme-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.theme-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.theme-card:hover img {
    transform: scale(1.1);
}

.theme-card-content {
    padding: var(--space-lg);
}

.theme-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--text-dark);
}

.theme-card p {
    margin-bottom: var(--space-md);
    color: var(--text-light);
}

.price {
    display: block;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 0;
}

.price-note {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: var(--space-md);
    margin-top: var(--space-xs);
}

.btn-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-align: left;
    padding: 0.875rem 1.25rem;
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-card-link:hover {
    background-color: var(--text-dark);
    color: var(--white);
    transform: translateX(5px);
}

.btn-card-link .arrow {
    font-size: 1.25rem;
    transition: transform var(--transition-fast);
}

.btn-card-link:hover .arrow {
    transform: translateX(5px);
}

/* Dance Classes Preview */
.dance-classes-preview {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.dance-classes-preview::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: var(--shape-yellow);
    opacity: 0.2;
    border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
    z-index: var(--z-shapes);
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: var(--space-3xl);
}

.classes-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

.class-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    padding: var(--space-lg) 0;
    border-bottom: 1px solid #E5E7EB;
    transition: all var(--transition-base);
}

.class-item:hover {
    transform: translateX(10px);
}

.class-number {
    font-size: 3rem;
    font-weight: 700;
    color: #E8E0FF;
    line-height: 1;
    flex-shrink: 0;
    min-width: 80px;
}

.class-content h3 {
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
    color: var(--text-dark);
}

.class-content p {
    color: var(--text-light);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.class-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
    display: inline-block;
}

.class-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Wedding Dance Section */
.wedding-dance {
    padding: var(--space-3xl) 0;
    background: #FAFCFF;
    position: relative;
    overflow: hidden;
    margin-top: var(--space-3xl);
}

.wedding-dance::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 80'%3E%3Cpath d='M0,40 Q300,0 600,40 T1200,40 L1200,80 L0,80 Z' fill='%23FFFBFD'/%3E%3C/svg%3E");
    background-size: cover;
    z-index: 1;
}

.wedding-dance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.wedding-content h2 {
    font-size: var(--fs-lg);
    color: var(--text-dark);
    margin-bottom: var(--space-lg);
}

.wedding-intro {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.wedding-features {
    list-style: none;
    margin-bottom: var(--space-xl);
}

.wedding-features li {
    position: relative;
    padding-left: var(--space-xl);
    margin-bottom: var(--space-md);
    color: var(--text-dark);
    font-weight: 500;
}

.wedding-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.wedding-cta {
    margin-top: var(--space-lg);
    font-size: var(--fs-sm);
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.wedding-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wedding-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    position: relative;
    z-index: 2;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 2px solid #FFE5EC;
}

/* Wedding section shapes */
.wedding-image .shape-circle-coral {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background-color: #FFF0F0;
    border-radius: 50%;
    opacity: 0.7;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.wedding-image .shape-rect-orange {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 120px;
    height: 120px;
    background-color: #FFF8F0;
    transform: rotate(45deg);
    opacity: 0.6;
    z-index: 1;
    animation: float 8s ease-in-out infinite reverse;
}

/* Testimonials */
.testimonials {
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial {
    text-align: center;
    padding: var(--space-2xl);
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial p {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: var(--space-lg);
    color: var(--text-dark);
}

.testimonial cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--space-sm);
}

.rating {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

/* Why Choose Us */
.why-choose {
    position: relative;
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
}

.feature {
    text-align: center;
    padding: var(--space-lg);
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.feature:hover {
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.feature h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-md);
}

/* Location Section */
.location-section {
    padding: var(--space-3xl) 0;
    background-color: var(--bg-light);
}

.location-section h2 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
}

.location-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: var(--space-3xl);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    max-width: 900px;
    margin: 0 auto var(--space-3xl);
}

.location-item h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--primary-color);
}

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

.location-list li {
    position: relative;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-md);
    color: var(--text-dark);
    line-height: 1.6;
}

.location-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.location-footer {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding-top: var(--space-xl);
    border-top: 1px solid #E5E7EB;
}

.location-footer p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.location-footer strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Book Now Section */
.book-now {
    padding: var(--space-3xl) 0;
    background-color: #FAFBFD;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.book-now-content {
    position: relative;
    z-index: 2;
}

.book-now h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: var(--text-dark);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.book-now p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: var(--space-xl);
}

.book-now-buttons {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
}

/* Subtle Circles */
.subtle-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.subtle-circle-1 {
    width: 200px;
    height: 200px;
    background-color: #E8F4FD;
    top: -50px;
    left: 10%;
    animation: float 12s ease-in-out infinite;
}

.subtle-circle-2 {
    width: 300px;
    height: 300px;
    background-color: #FFF0F5;
    bottom: -100px;
    right: 5%;
    animation: float 15s ease-in-out infinite reverse;
}

/* Responsive Design */
@media (max-width: 700px) {
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: var(--space-lg);
    }
    
    .hero-content {
        flex: 1 1 100%;
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
    }
    
    .hero-image {
        flex: 1 1 100%;
        max-width: 400px;
        margin: 0 auto var(--space-lg);
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    /* Adjust shape positions for mobile */
    .shape-circle-blue {
        right: 5%;
        width: 60px;
        height: 60px;
    }
    
    .shape-rect-pink {
        right: -20px;
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: var(--space-xl) 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
    }
    
    .btn-text {
        font-size: 0.875rem;
    }
    
    /* Hide some shapes on mobile */
    .shape-star-orange,
    .shape-semi-blue {
        display: none;
    }
    
    /* Adjust remaining shapes */
    .shape-circle-blue {
        width: 60px;
        height: 60px;
        top: 5%;
        right: 5%;
    }
    
    .shape-circle-orange {
        width: 80px;
        height: 80px;
        left: -40px;
    }
    
    .shape-rect-pink {
        width: 60px;
        height: 60px;
        top: 30%;
    }
    
    .shape-rect-yellow {
        width: 100px;
        height: 100px;
    }
    
    .theme-grid {
        grid-template-columns: 1fr;
    }
    
    .classes-detailed-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .class-item {
        gap: var(--space-md);
        padding: var(--space-md) 0;
    }
    
    .class-number {
        font-size: 2rem;
        min-width: 50px;
    }
    
    .class-content h3 {
        font-size: 1.25rem;
    }
    
    .class-content p {
        font-size: 0.875rem;
    }
    
    .wedding-dance-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .wedding-content {
        text-align: center;
    }
    
    .wedding-image {
        order: -1;
    }
    
    .wedding-image img {
        max-width: 350px;
    }
    
    .wedding-image .shape-circle-coral {
        width: 100px;
        height: 100px;
        top: -20px;
        right: -20px;
    }
    
    .wedding-image .shape-rect-orange {
        width: 80px;
        height: 80px;
        bottom: -20px;
        left: -20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .feature {
        padding: 30px 20px;
    }
    
    .why-choose h2 {
        font-size: 2.5rem;
        padding: 0 20px;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .subtle-circle-1 {
        width: 150px;
        height: 150px;
        top: -50px;
        left: -20px;
    }
    
    .subtle-circle-2 {
        width: 200px;
        height: 200px;
        bottom: -80px;
        right: -50px;
    }
    
    .book-now h2 {
        font-size: 1.75rem;
    }
    
    .book-now-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .book-now-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}