* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header and Navigation */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.logo-text {
    background: linear-gradient(135deg, #ff6b35, #f7931e, #e91e63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.admin-badge {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.logo h2 {
    background: linear-gradient(135deg, #ff6b35, #f7931e, #e91e63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-menu a:hover {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 50%, #ffcc80 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%23fff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23fff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="300" cy="700" r="120" fill="url(%23a)"/></svg>') no-repeat;
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    flex: 1;
    padding: 2rem;
    z-index: 2;
    position: relative;
    animation: slideInLeft 1s ease-out;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    animation: pulse 2s infinite;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.title-main {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #d32f2f, #e91e63, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.title-sub {
    display: block;
    font-size: 1.3rem;
    color: #8b4513;
    font-weight: 600;
    font-style: italic;
}

.hero-description {
    font-size: 1.2rem;
    color: #5d4037;
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #8b4513;
    font-weight: 500;
    margin-top: 0.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #e91e63, #ad1457);
    color: white;
}

.cta-btn.secondary {
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: white;
}

.cta-btn.tertiary {
    background: linear-gradient(135deg, #9c27b0, #7b1fa2);
    color: white;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #8b4513;
    font-weight: 500;
}

.feature-item i {
    color: #ff6b35;
    font-size: 1.1rem;
}

.image-container {
    position: relative;
}


.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    position: relative;
    animation: slideInRight 1s ease-out;
}

.dance-photo {
    width: 400px;
    height: 300px;
    border-radius: 20px;
    border: 3px solid #ff9800;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: linear-gradient(135deg, #fff8e1, #ffe0b2);
    display: block;
}

.dance-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* About Us Section */
.about-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 5rem 0;
}

.about-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #d32f2f;
    margin-bottom: 2rem;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-intro {
    font-size: 1.2rem;
    color: #5d4037;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 500;
}

.about-content > p {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.mission-section,
.what-we-offer,
.why-us-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mission-section h3,
.what-we-offer h3,
.why-us-section h3 {
    font-size: 1.5rem;
    color: #d32f2f;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mission-section p,
.why-us-section p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.offering-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.offering-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.offering-item i {
    color: #ff6b35;
    font-size: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.offering-item p {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    padding: 5rem 0;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #d32f2f;
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.team-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.team-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #9c27b0, #7b1fa2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
}

.team-icon i {
    font-size: 2rem;
    color: white;
}

.team-card h3 {
    font-size: 1.4rem;
    color: #d32f2f;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.team-role {
    font-size: 1rem;
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-credentials {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    text-align: left;
}

/* Why Moms Section */
.why-moms {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 5rem 0;
}

.why-moms h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #d32f2f;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: #d32f2f;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
}

/* Kids Classes Section */
.kids-classes {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    padding: 5rem 0;
}

.kids-classes h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #d32f2f;
    margin-bottom: 3rem;
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.class-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.class-card:hover {
    transform: translateY(-5px);
}

.class-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #9c27b0, #7b1fa2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem;
}

.class-icon i {
    font-size: 2rem;
    color: white;
}

.age-badge {
    background: linear-gradient(135deg, #e91e63, #ad1457);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.class-card h3 {
    font-size: 1.3rem;
    color: #d32f2f;
    margin-bottom: 1rem;
}

.class-card p {
    color: #666;
    line-height: 1.7;
}

/* Performances Section */
.performances {
    background: linear-gradient(135deg, #f3e5f5, #e1bee7);
    padding: 5rem 0;
}

.performances h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #d32f2f;
    margin-bottom: 3rem;
}

.performances-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.performance-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.performance-card:hover {
    transform: translateY(-5px);
}

.performance-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff9800, #f57c00);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem;
}

.performance-icon i {
    font-size: 2rem;
    color: white;
}

.performance-card h3 {
    font-size: 1.3rem;
    color: #d32f2f;
    margin-bottom: 1rem;
}

.performance-card p {
    color: #666;
    line-height: 1.7;
}

/* Events & Updates Section */
.events-updates {
    background: linear-gradient(135deg, #fff5ee, #ffeee6);
    padding: 5rem 0;
}

.events-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.events-column {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.events-column:hover {
    transform: translateY(-5px);
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 1.8rem;
    color: #d32f2f;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.section-header p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-card, .update-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
    border-left: 4px solid #ff6b35;
}

.event-card:hover, .update-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2);
}

.event-date {
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
    color: white;
    border-radius: 12px;
    padding: 0.8rem;
    text-align: center;
    min-width: 60px;
    flex-shrink: 0;
}

.date-day {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-top: 0.2rem;
    opacity: 0.9;
}

.update-date {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border-radius: 8px;
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex-shrink: 0;
}

.event-content, .update-content {
    flex: 1;
}

.event-content h3, .update-content h3 {
    font-size: 1.2rem;
    color: #d32f2f;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.event-content p, .update-content p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.no-events {
    text-align: center;
    padding: 3rem 1rem;
    color: #999;
}

.no-events i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ddd;
}

.no-events p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Events */
@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .events-column {
        padding: 1.5rem;
    }
    
    .event-card, .update-card {
        flex-direction: column;
        text-align: center;
    }
    
    .event-date {
        align-self: center;
    }
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 5rem 0;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #d32f2f;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quote-icon i {
    color: white;
    font-size: 1rem;
}

.testimonial-card p {
    font-style: italic;
    color: #666;
    margin-bottom: 1rem;
    margin-top: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    text-align: right;
    color: #d32f2f;
    font-weight: 600;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    padding: 5rem 0;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #d32f2f;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h3 {
    color: #d32f2f;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-item i {
    color: #ff9800;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: #d32f2f;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ffe0b2;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff9800;
}

.form-group textarea {
    resize: vertical;
    min-height: 48px;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #d32f2f;
    margin-bottom: 15px;
    font-weight: 700;
}

.gallery-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.gallery-scroll-container {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.gallery-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(211, 47, 47, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gallery-scroll-btn:hover {
    background: rgba(183, 28, 28, 0.95);
    transform: translateY(-50%) scale(1.1);
}

.gallery-scroll-left {
    left: -25px;
}

.gallery-scroll-right {
    right: -25px;
}

.gallery-scroll-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: translateY(-50%) scale(0.9);
}

.gallery-grid {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 10px 10px 20px 10px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    flex: 1;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-grid::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    cursor: pointer;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    flex: 0 0 280px;
    min-width: 280px;
    max-width: 280px;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-image-container {
    position: relative;
    overflow: hidden;
    height: 200px;
    width: 100%;
}

.gallery-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image-container img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content {
    color: white;
    text-align: left;
    width: 100%;
}

.gallery-overlay-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.gallery-overlay-content p {
    font-size: 0.9rem;
    margin: 0 0 10px 0;
    opacity: 0.9;
}

.gallery-overlay-content i {
    font-size: 1.5rem;
    position: absolute;
    top: 15px;
    right: 15px;
    opacity: 0.8;
}

.gallery-cta {
    text-align: center;
}

.no-gallery-photos {
    text-align: center;
    padding: 80px 20px;
    color: #666;
}

.no-gallery-photos i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #ddd;
}

.no-gallery-photos h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #999;
}

.no-gallery-photos p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.gallery-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    animation: zoomIn 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-modal-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.gallery-modal-info {
    background: white;
    padding: 25px;
    border-radius: 0 0 10px 10px;
    text-align: center;
    width: 100%;
    max-width: 500px;
}

.gallery-modal-info h3 {
    margin: 0 0 10px 0;
    color: #d32f2f;
    font-size: 1.4rem;
}

.gallery-modal-date {
    color: #ff6b35;
    font-size: 0.9rem;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.gallery-modal-desc {
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.gallery-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.gallery-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 24px;
    padding: 20px 25px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
    z-index: 1001;
}

.gallery-nav:hover {
    background: rgba(0, 0, 0, 0.8);
}

.gallery-prev {
    left: 30px;
}

.gallery-next {
    right: 30px;
}

/* Responsive Design for Gallery */
@media (max-width: 768px) {
    .gallery h2 {
        font-size: 2rem;
    }
    
    .gallery-grid {
        gap: 15px;
        padding: 10px 0 15px 0;
    }
    
    .gallery-item {
        flex: 0 0 220px;
        min-width: 220px;
        max-width: 220px;
    }
    
    .gallery-image-container {
        height: 160px;
    }
    
    .gallery-scroll-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .gallery-scroll-left {
        left: -20px;
    }
    
    .gallery-scroll-right {
        right: -20px;
    }
    
    .gallery-modal-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    .gallery-modal-content img {
        max-height: 60vh;
    }
    
    .gallery-close {
        top: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
    
    .gallery-nav {
        padding: 15px 20px;
        font-size: 20px;
    }
    
    .gallery-prev {
        left: 15px;
    }
    
    .gallery-next {
        right: 15px;
    }
}

.submit-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Bonus Section */
.bonus-section {
    background: linear-gradient(135deg, #f3e5f5, #e1bee7);
    padding: 5rem 0;
}

.bonus-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #d32f2f;
    margin-bottom: 3rem;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.bonus-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
}

.bonus-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #9c27b0, #7b1fa2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem;
}

.bonus-icon i {
    font-size: 2rem;
    color: white;
}

.bonus-card h3 {
    font-size: 1.3rem;
    color: #d32f2f;
    margin-bottom: 1rem;
}

.bonus-card p {
    color: #666;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #ff9800;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff9800;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-img {
        height: 35px;
    }
    
    .admin-badge {
        font-size: 0.6rem;
        padding: 1px 6px;
    }
    
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 20px 50px;
    }

    .title-main {
        font-size: 2.5rem !important;
    }

    .title-sub {
        font-size: 1.1rem !important;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-item {
        flex: 1;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-image {
        margin-top: 2rem;
    }

    .dance-photo {
        width: 300px;
        height: 200px;
    }

    .cta-buttons {
        justify-content: center;
    }

    .cta-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .classes-grid,
    .features-grid,
    .performances-grid,
    .testimonials-grid,
    .bonus-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .title-main {
        font-size: 2rem !important;
    }

    .title-sub {
        font-size: 1rem !important;
    }

    .hero-stats {
        flex-direction: row;
        justify-content: space-around;
    }

    .stat-number {
        font-size: 1.5rem !important;
    }

    .stat-label {
        font-size: 0.8rem !important;
    }

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

    .dance-photo {
        width: 250px;
        height: 180px;
    }

    section h2 {
        font-size: 2rem !important;
    }

    .cta-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-card,
.class-card,
.performance-card,
.testimonial-card,
.bonus-card {
    animation: fadeInUp 0.6s ease-out;
}