/* Classes Page Styles */
/* =================== */

/* Hero Section */
.classes-hero {
    position: relative;
    padding: 120px 0 80px;
    background: #f0fffe;
    overflow: hidden;
    min-height: 500px;
}

.classes-hero .shape {
    position: absolute;
    opacity: 0.15;
}

.classes-hero .shape-circle-mint {
    width: 300px;
    height: 300px;
    background: #00CED1;
    border-radius: 50%;
    top: -150px;
    right: 10%;
    filter: blur(60px);
}

.classes-hero .shape-triangle-coral {
    width: 0;
    height: 0;
    border-left: 200px solid transparent;
    border-right: 200px solid transparent;
    border-bottom: 350px solid #FF6B6B;
    bottom: -175px;
    left: 5%;
    transform: rotate(25deg);
    filter: blur(40px);
}

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

.classes-hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: #2D2D2D;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

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

/* Breadcrumb */
.breadcrumb {
    background: #f8f8f8;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.breadcrumb ol {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.breadcrumb li {
    color: #666;
}

.breadcrumb li:not(:last-child)::after {
    content: "›";
    margin: 0 10px;
    color: #999;
}

.breadcrumb a {
    color: #00CED1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #FF6B6B;
}

.breadcrumb .active {
    color: #2D2D2D;
    font-weight: 600;
}

/* Dance Styles Section */
.dance-styles {
    padding: 80px 0;
    background: #fff;
}

.dance-styles h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 15px;
    color: #2D2D2D;
}

/* Styles Grid */
.styles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Style Card */
.style-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.style-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.style-content {
    padding: 25px;
}

.style-content h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #2D2D2D;
}

.style-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.style-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.style-meta span {
    font-weight: 600;
    color: #FF6B6B;
}

.style-meta .level {
    color: #00CED1;
}

.style-link {
    display: inline-block;
    color: #00CED1;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.style-link:hover {
    color: #FF6B6B;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 60px;
}

/* Intro Section (Pricing Section) */
.intro-section {
    background: #f8f8f8;
    padding: 60px 0;
}

/* Pricing Cards Container */
.pricing-container,
.price-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Individual Price Card */
.price-card {
    background: white;
    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-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

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

.price-card .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;
}

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

.price-card .price {
    font-size: 3rem;
    color: #FF6B6B;
    font-weight: bold;
    margin: 20px 0;
    font-family: 'Bebas Neue', sans-serif;
}

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

.price-card ul {
    list-style: none;
    padding: 20px 0;
    text-align: left;
}

.price-card li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
}

.price-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00CED1;
    font-weight: bold;
}

.price-card .btn {
    width: 100%;
    margin-top: 20px;
}

/* Responsive - Stack cards on mobile */
@media (max-width: 768px) {
    .pricing-container,
    .price-cards {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
}

/* Removed category styles as we're showing all classes in one grid */

.styles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.style-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.style-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.style-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.style-card:hover img {
    transform: scale(1.05);
}

.style-content {
    padding: 25px;
}

.style-content h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: #2D2D2D;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.style-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.style-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.style-meta span {
    display: inline-flex;
    align-items: center;
    color: #999;
}

.style-meta span::before {
    content: '';
    width: 4px;
    height: 4px;
    background: #00CED1;
    border-radius: 50%;
    margin-right: 8px;
}

.level::before {
    background: #00CED1;
}

.duration::before {
    background: #FF6B6B;
}

.style-link {
    color: #00CED1;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.style-link:hover {
    color: #FF6B6B;
    gap: 10px;
}

/* Class Information */
.class-info {
    background: #f8f8f8;
    padding: 80px 0;
}

.class-info h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
    color: #2D2D2D;
}

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

.info-card {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.info-card h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.5rem;
    color: #2D2D2D;
    margin-bottom: 20px;
    font-weight: 700;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card li {
    padding: 8px 0;
    color: #666;
    line-height: 1.6;
}

.info-card li strong {
    color: #2D2D2D;
    font-weight: 600;
}

.info-card .note {
    margin-top: 20px;
    padding: 12px;
    background: #f8f8f8;
    border-left: 3px solid #ddd;
    color: #666;
    font-size: 0.9rem;
    border-radius: 4px;
}

/* Removed New to Dance section styles - section no longer exists */

/* Removed Timetable Preview styles - section no longer exists */

/* Location Reminder */
.location-reminder {
    background: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.location-text h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: #2D2D2D;
    margin-bottom: 20px;
    line-height: 1.1;
}

.location-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
}

.location-details {
    margin-bottom: 40px;
}

.location-item {
    margin-bottom: 25px;
    padding-left: 30px;
    position: relative;
}

.location-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #2D2D2D;
    border-radius: 50%;
}

.location-item h4 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #2D2D2D;
    margin-bottom: 5px;
}

.location-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Removed btn-outline styles - button no longer exists */

.location-illustration {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-illustration img {
    width: 100%;
    max-width: 500px;
    height: auto;
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 0.3s;
}

/* CTA Section */
.classes-cta {
    background: #00CED1;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.classes-cta .shape-circle-yellow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 235, 59, 0.3);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    filter: blur(80px);
}

.classes-cta h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 15px;
}

.classes-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

/* Removed CTA button styles - buttons no longer exist */

/* Responsive Design */
@media (max-width: 1024px) {
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .location-illustration {
        display: none;
    }
}

@media (max-width: 768px) {
    .classes-hero {
        padding: 100px 0 60px;
    }
    
    .classes-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .styles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .dance-styles h2,
    .class-info h2,
    .location-reminder h2,
    .classes-cta h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .classes-hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .style-card img {
        height: 200px;
    }
    
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.style-card {
    animation: fadeInUp 0.6s ease-out;
}

.style-card:nth-child(2) {
    animation-delay: 0.1s;
}

.style-card:nth-child(3) {
    animation-delay: 0.2s;
}

/* 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;
}

/* Booking Info Section */
.booking-info {
    background: #00CED1;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.booking-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.05);
    animation: float 20s infinite ease-in-out;
}

.booking-info::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.04);
    animation: float 25s infinite ease-in-out reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.booking-info .container {
    position: relative;
    z-index: 1;
}

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

.booking-info p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.booking-info .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.booking-info .btn-primary {
    background: #fff;
    color: #FF6B6B;
    border: 2px solid #fff;
}

.booking-info .btn-primary:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

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

.booking-info .btn-secondary:hover {
    background: #fff;
    color: #00CED1;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Responsive Design for Booking Info */
@media (max-width: 768px) {
    .booking-info {
        padding: 60px 0;
    }
    
    .booking-info h2 {
        font-size: 2.5rem;
    }
    
    .booking-info p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .booking-buttons {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
    }
    
    .booking-info .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .booking-info h2 {
        font-size: 2rem;
        padding: 0 20px;
    }
    
    .booking-info p {
        font-size: 1rem;
    }
    
    .booking-info .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {
    .classes-hero,
    .classes-cta,
    .main-nav,
    .main-footer {
        display: none;
    }
    
    .dance-styles,
    .class-info {
        page-break-inside: avoid;
    }
}