/* --- CSS VARIABLES & RESET --- */
:root {
    --zumba-green: #D6EA06;
    --zumba-yellow: #FFEC00;
    --zumba-pink: #FF006E;
    --zumba-purple: #7400B8;
    --dark-bg: #121212;
    --light-bg: #F4F4F4;
    --text-dark: #222222;
    --text-light: #FFFFFF;
    --card-radius: 20px;
    --transition: all 0.3s ease-in-out;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-padding-top: 80px; /* Prevents nav from covering section titles on scroll */
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- BUTTONS & UTILS --- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--zumba-pink);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 0, 110, 0.4);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.05); background-color: #d9005d; }

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--zumba-green);
    color: var(--zumba-green);
}
.btn-secondary:hover { background-color: var(--zumba-green); color: var(--dark-bg); }

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--dark-bg);
    position: relative;
    display: inline-block;
    width: 100%;
}
.section-title::after {
    content: ''; display: block; width: 60px; height: 5px;
    background: var(--zumba-green); margin: 10px auto 0; border-radius: 5px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- NAVIGATION --- */
nav {
    position: fixed;
    top: 0; width: 100%;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    z-index: 1000;
    border-bottom: 3px solid var(--zumba-green);
}

.nav-container { display: flex; justify-content: space-between; align-items: center; }

.logo { display: flex; align-items: center; gap: 10px; color: var(--text-light); font-weight: 800; font-size: 1.2rem; }
.logo img { width: 50px; height: 50px; border-radius: 50%; border: 2px solid var(--zumba-green); object-fit: cover; }

.nav-links { display: flex; gap: 20px; }
.nav-links a {
    color: var(--text-light); font-weight: 600; font-size: 0.85rem;
    text-transform: uppercase; transition: var(--transition);
}
.nav-links a:hover { color: var(--zumba-green); }
.hamburger { display: none; color: white; font-size: 1.5rem; cursor: pointer; }

/* --- HERO SECTION --- */
#hero {
    min-height: 100vh; /* Changed from height to min-height for mobile */
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1524594152303-9fd13543fe6e?q=80&w=2070&auto=format&fit=crop'); 
    background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center;
    text-align: center; position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
    padding-bottom: 50px;
}

.hero-content h1 {
    font-size: 5rem; color: var(--text-light); line-height: 1;
    margin-bottom: 20px; text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}
.hero-content h1 span { color: var(--zumba-green); }
.hero-content p { color: #ddd; font-size: 1.2rem; margin-bottom: 40px; max-width: 700px; margin: 0 auto 40px auto; }
.hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* --- ABOUT US SECTION --- */
#about-us {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

#about-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--zumba-purple), var(--zumba-pink), var(--zumba-green), var(--zumba-yellow));
}

#about-us .section-title {
    background: linear-gradient(135deg, var(--zumba-purple), var(--zumba-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 50px;
}

#about-us .section-title::after {
    background: linear-gradient(90deg, var(--zumba-green), var(--zumba-yellow));
    width: 120px;
    height: 6px;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.mission-statement {
    text-align: center;
    margin-bottom: 60px;
    padding: 30px;
    background: rgba(255,255,255,0.8);
    border-radius: 20px;
    border-left: 5px solid var(--zumba-purple);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mission-statement h3 {
    font-size: 2rem;
    color: var(--zumba-purple);
    margin-bottom: 20px;
    font-weight: 700;
}

.mission-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--dark-bg);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.goals-container h4 {
    font-size: 1.8rem;
    color: var(--zumba-pink);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.goal-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.goal-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--zumba-green);
}

.goal-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--zumba-green), var(--zumba-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.goal-content {
    flex: 1;
}

.goal-content h5 {
    font-size: 1.2rem;
    color: var(--zumba-purple);
    margin-bottom: 15px;
    font-weight: 700;
}

.goal-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--dark-bg);
    margin: 0;
}

/* --- ABOUT SECTION (ORIGINAL) --- */
#about { padding: 80px 0; background: white; }

.fed-info-full { max-width: 900px; margin: 0 auto 60px auto; text-align: center; }
.fed-info-full h2 { font-size: 2.5rem; color: var(--dark-bg); margin-bottom: 20px; }
.fed-info-full p { font-size: 1.1rem; line-height: 1.6; margin-bottom: 20px; color: #444; }

.fed-list { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.fed-list li { display: flex; align-items: center; gap: 10px; font-weight: 600; color: #333; }
.fed-list li i { color: var(--zumba-pink); }

.leaders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px; align-items: start;
}

.leader-card {
    background: var(--light-bg); border-radius: var(--card-radius); padding: 30px;
    border-top: 5px solid var(--zumba-pink);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); transition: var(--transition);
}
.leader-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.15); }

.leader-header { display: flex; align-items: center; gap: 20px; margin-bottom: 25px; border-bottom: 1px solid #ddd; padding-bottom: 20px; }
.leader-img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 3px solid var(--zumba-green); flex-shrink: 0; background-color: #eee; }
.leader-info h3 { color: var(--dark-bg); font-size: 1.2rem; margin-bottom: 5px; line-height: 1.2; }
.leader-info span { font-size: 0.8rem; font-weight: 700; color: var(--zumba-pink); text-transform: uppercase; }
.leader-text { line-height: 1.7; color: #555; font-size: 0.95rem; }
.leader-list { margin-top: 15px; padding-left: 20px; }
.leader-list li { list-style-type: disc; margin-bottom: 8px; color: #444; }

/* --- CERTIFICATES SECTION --- */
#certificates { 
    padding: 80px 0; 
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

#certificates::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--zumba-pink), var(--zumba-green), var(--zumba-yellow), var(--zumba-purple));
}

#certificates .section-title {
    background: linear-gradient(135deg, var(--zumba-purple), var(--zumba-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 60px;
}

#certificates .section-title::after {
    background: linear-gradient(90deg, var(--zumba-pink), var(--zumba-green));
    width: 100px;
    height: 6px;
}

.certificate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.cert-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.cert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--zumba-pink), var(--zumba-purple), var(--zumba-green));
    border-radius: 20px;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cert-card:hover::before {
    opacity: 1;
}

.cert-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.cert-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.cert-card:hover img {
    transform: scale(1.1);
}

.cert-card p {
    margin: 0;
    padding: 20px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark-bg);
    text-align: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.95));
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0,0,0,0.05);
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cert-card p::before {
    content: '🏆';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--zumba-yellow);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* --- TEACHERS SECTION FIXED --- */
#teachers {
    /* Increased padding-top to push text below the diagonal cut */
    padding: 150px 0 100px 0; 
    background: var(--dark-bg);
    color: white;
    /* Changed percentage to pixels for top-left to stop it from cutting too deep on mobile */
    clip-path: polygon(0 50px, 100% 0, 100% 100%, 0 100%);
    position: relative;
    margin-top: -50px; /* Pulls it up slightly to overlap previous section cleanly */
    z-index: 2;
}

#teachers .section-title { 
    color: var(--zumba-yellow); 
    text-align: center;
    margin-bottom: 60px;
}
#teachers .section-title::after { background: var(--zumba-pink); }

.title-container {
    text-align: center;
    margin: 50px 0 30px 0;
}

.teacher-category-title {
    font-size: 2rem;
    color: var(--zumba-green);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.teacher-category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--zumba-pink), var(--zumba-yellow));
    border-radius: 2px;
}

.teacher-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
}

.teacher-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    position: relative;
}

.teacher-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--zumba-pink), var(--zumba-green), var(--zumba-yellow));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.teacher-card:hover::before {
    transform: scaleX(1);
}

.teacher-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: var(--zumba-green);
}

.teacher-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.teacher-card:hover .teacher-img {
    transform: scale(1.1);
}

.teacher-info {
    padding: 25px;
    text-align: center;
}

.teacher-info h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--zumba-yellow);
    font-weight: 700;
}

.teacher-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.8);
}

.zin-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--zumba-pink), var(--zumba-purple));
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-decoration: none;
}

.zin-btn:hover {
    background: transparent;
    border-color: var(--zumba-pink);
    color: var(--zumba-pink);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,0,110,0.4);
}

/* ... existing code ... */

/* --- MOBILE RESPONSIVE FIXES --- */
@media (max-width: 768px) {
    /* ... existing mobile styles ... */
    
    /* Fix for the Hero overlap issue */
    #hero { clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%); }

    /* Ensure teachers title isn't cut off on phone */
    #teachers {
        padding-top: 120px;
        clip-path: polygon(0 30px, 100% 0, 100% 100%, 0 100%);
    }

    /* Fix image sizes in cards */
    .teacher-img { height: 250px; }
    
    /* Fix location grid columns */
    .locations-grid { grid-template-columns: 1fr; }
}

/* --- 2026 EVENTS SECTION --- */
#events-2026 {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

#events-2026::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--zumba-pink), var(--zumba-green), var(--zumba-yellow), var(--zumba-purple));
}

#events-2026 .section-title {
    background: linear-gradient(135deg, var(--zumba-purple), var(--zumba-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 60px;
}

#events-2026 .section-title::after {
    background: linear-gradient(90deg, var(--zumba-pink), var(--zumba-green));
    width: 120px;
    height: 6px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.event-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 2px solid transparent;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--zumba-pink), var(--zumba-purple), var(--zumba-green));
    border-radius: 25px;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.event-card:hover::before {
    opacity: 1;
}

.event-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.event-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--zumba-pink), var(--zumba-purple));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.event-content {
    padding: 30px;
}

.event-title {
    font-size: 1.5rem;
    color: var(--zumba-purple);
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 700;
}

.event-description p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-bg);
    margin-bottom: 20px;
}

.special-guests h4,
.event-highlights h4 {
    font-size: 1.1rem;
    color: var(--zumba-pink);
    margin-bottom: 15px;
    font-weight: 700;
}

.special-guests ul,
.event-highlights ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.special-guests li,
.event-highlights li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--dark-bg);
}

.special-guests li:last-child,
.event-highlights li:last-child {
    border-bottom: none;
}

.event-cta {
    background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,255,255,0.9));
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid var(--zumba-green);
    margin-bottom: 20px;
}

.event-cta p {
    margin: 0 0 10px 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.event-motto {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(214,234,6,0.1), rgba(255,0,110,0.1));
    border-radius: 15px;
    border: 2px solid var(--zumba-green);
}

.event-motto p {
    margin: 0 0 10px 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--dark-bg);
}

.event-slogan {
    font-weight: 700;
    color: var(--zumba-pink);
    font-size: 1rem;
    margin-top: 10px;
}

.event-link {
    color: var(--zumba-purple);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.event-link:hover {
    color: var(--zumba-pink);
    text-decoration: underline;
}

/* --- REGISTRATION SECTION --- */
#registration {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--zumba-purple), var(--zumba-pink));
    position: relative;
    overflow: hidden;
}

#registration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

#registration .section-title {
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 50px;
}

#registration .section-title::after {
    background: var(--zumba-yellow);
    width: 120px;
    height: 6px;
}

.registration-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255,255,255,0.95);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.promo-header h3 {
    font-size: 2.2rem;
    text-align: center;
    color: var(--zumba-purple);
    margin-bottom: 30px;
    line-height: 1.3;
}

.promo-text {
    text-align: center;
    margin-bottom: 40px;
}

.promo-text p {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--dark-bg);
    line-height: 1.6;
}

.promo-text strong {
    color: var(--zumba-pink);
    font-size: 1.3rem;
}

.promo-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,255,255,0.9));
    border-radius: 15px;
    border-left: 5px solid var(--zumba-green);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--zumba-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.feature-item p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-bg);
}

.event-details {
    margin-bottom: 40px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255,255,255,0.6);
    border-radius: 12px;
    border: 2px solid var(--zumba-green);
}

.detail-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    background: var(--zumba-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.detail-item strong {
    color: var(--zumba-purple);
    font-size: 1.1rem;
}

.registration-link {
    text-align: center;
    margin-bottom: 30px;
}

.registration-link p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--dark-bg);
}

.registration-btn {
    background: linear-gradient(135deg, var(--zumba-pink), var(--zumba-purple));
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255,0,110,0.4);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.registration-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255,0,110,0.6);
    background: linear-gradient(135deg, var(--zumba-purple), var(--zumba-pink));
}

.promo-footer {
    text-align: center;
}

.urgent-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--zumba-pink);
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

.welcome-text {
    font-size: 1.2rem;
    color: var(--zumba-purple);
    font-weight: 700;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* --- IMAGE MODAL --- */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

#modalCaption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10000;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--zumba-pink);
    text-decoration: none;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); }
    to { transform: scale(1); }
}

/* --- ALBUM SECTION --- */
#album { padding: 80px 0; background: #fff; }
.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 40px;
}
.album-item {
    overflow: hidden;
    border-radius: 15px;
    height: 250px;
}
.album-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.album-item:hover img {
    transform: scale(1.1);
}

/* --- CONTACT SECTION --- */
#contact { padding: 100px 0 80px; }
.contact-subtitle { text-align: center; font-size: 1.2rem; color: #666; margin-bottom: 50px; }

.locations-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 15px; }

.location-card {
    background: white; border: 1px solid #eee; border-radius: 15px; padding: 20px;
    text-align: center; transition: var(--transition); box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.location-card:hover { border-color: var(--zumba-green); transform: scale(1.05); }

.loc-icon { font-size: 1.8rem; color: var(--zumba-pink); margin-bottom: 10px; }
.loc-name { font-weight: 700; margin-bottom: 8px; display: block; font-size: 1rem; }
.loc-phone { font-size: 0.9rem; color: #666; margin-bottom: 12px; font-weight: 600; }
.loc-btn { font-size: 0.8rem; color: white; background: var(--dark-bg); padding: 6px 15px; border-radius: 6px; display: inline-block; }
.loc-btn:hover { background: var(--zumba-green); color: black; }

/* --- FOOTER --- */
footer { background: var(--dark-bg); color: white; padding: 40px 0; text-align: center; }
.social-icons { margin-bottom: 20px; }
.social-icons a { color: white; font-size: 1.5rem; margin: 0 10px; transition: 0.3s; }
.social-icons a:hover { color: var(--zumba-green); }

/* --- MOBILE RESPONSIVE FIXES (CRITICAL) --- */
@media (max-width: 768px) {
    /* Navigation */
    .hamburger { display: block; z-index: 1001; }
    .nav-links {
        display: none; position: absolute; top: 70px; left: 0; width: 100%;
        background: rgba(0,0,0,0.95); flex-direction: column; padding: 30px; 
        text-align: center; border-bottom: 3px solid var(--zumba-pink);
    }
    .nav-links.active { display: flex; }

    /* Hero */
    .hero-content h1 { font-size: 2.8rem; }
    .hero-content p { font-size: 1rem; padding: 0 10px; }
    #hero { clip-path: polygon(0 0, 100% 0, 100% 97%, 0 100%); }

    /* Typography & Spacing */
    .section-title { font-size: 2.2rem; }
    .fed-info-full h2 { font-size: 1.8rem; }
    .teacher-category-title { font-size: 1.5rem; }
    
    #about, #teachers, #certificates, #album, #contact { padding: 50px 0; }
    
    /* Grids */
    .leaders-grid { grid-template-columns: 1fr; }
    .leader-header { flex-direction: column; text-align: center; }
    
    .teacher-grid { grid-template-columns: 1fr; max-width: 350px; margin: 0 auto 30px auto; }
    
    .locations-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } /* 2 columns on mobile for locations */
    .location-card { padding: 15px 5px; }
    .loc-name { font-size: 0.9rem; }
    
    .certificate-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 20px;
    }
    
    .cert-card img {
        height: 180px;
    }
    
    .cert-card p {
        padding: 15px;
        font-size: 0.9rem;
        min-height: 70px;
    }
    
    .mission-statement {
        padding: 20px;
        margin-bottom: 40px;
    }
    
    .mission-statement h3 {
        font-size: 1.6rem;
    }
    
    .mission-text {
        font-size: 1rem;
    }
    
    .goals-container h4 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .goals-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .goal-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .goal-icon {
        margin-bottom: 15px;
    }
    
    .goal-content h5 {
        font-size: 1.1rem;
    }
    
    .goal-content p {
        font-size: 0.9rem;
    }
    
    .album-grid { grid-template-columns: repeat(2, 1fr); }
    .album-item { height: 150px; }
}

@media (max-width: 480px) {
    .locations-grid { grid-template-columns: 1fr; } /* 1 column on very small screens */
    /* Events Section */
    .events-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .event-image {
        height: 250px;
    }
    
    .event-content {
        padding: 20px;
    }
    
    .event-title {
        font-size: 1.3rem;
    }
    
    .event-badge {
        top: 15px;
        right: 15px;
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    .registration-content {
        padding: 25px;
        margin: 0 10px;
    }
    
    .promo-header h3 {
        font-size: 1.6rem;
    }
    
    .promo-text p {
        font-size: 1rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .detail-item {
        flex-direction: column;
        text-align: center;
        padding: 12px;
    }
    
    .registration-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .urgent-text {
        font-size: 1.1rem;
    }
    
    .welcome-text {
        font-size: 1rem;
    }
    .album-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 2.2rem; }
}