/* Base Responsive Settings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    min-width: 320px;
    position: relative;
}

/* Prevent horizontal scroll */
.container,
section,
.hero,
.nav-container,
.gallery-grid,
.classes-grid,
.video-grid,
.bites-grid {
    max-width: 100%;
    overflow-x: hidden;
}

/* Parallax Container */
.parallax-container {
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    perspective: 1px;
}

.parallax-element {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.parallax-back {
    transform: translateZ(-1px) scale(2);
}

.parallax-base {
    transform: translateZ(0);
}

.parallax-front {
    transform: translateZ(0.5px) scale(0.5);
}

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

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(30, 58, 138, 0.3);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    min-width: 180px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 1001;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown-content a {
    display: block;
    padding: 0.8rem 1.2rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0;
}

.dropdown-content a:hover {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    transform: none;
    padding-left: 1.5rem;
    box-shadow: inset 5px 0 0 #60a5fa;
}

.dropdown:hover .dropdown-content,
.dropdown.active .dropdown-content,
.dropdown.hover .dropdown-content {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: fadeIn 0.3s ease-out;
}

.dropdown > a::after {
    content: ' ▼';
    font-size: 0.7rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.dropdown:hover > a::after,
.dropdown.active > a::after,
.dropdown.hover > a::after {
    transform: rotate(180deg);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, 
        rgba(30, 58, 138, 0.9), 
        rgba(59, 130, 246, 0.8), 
        rgba(96, 165, 250, 0.7)), 
                radial-gradient(circle at 20% 80%, rgba(30, 58, 138, 0.4) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.4) 0%, transparent 50%),
                conic-gradient(from 180deg at 50% 50%, #1e3a8a, #3b82f6, #60a5fa, #1e3a8a);
    background-size: cover, 800px 800px, 600px 600px, 100% 100%;
    background-position: center, left bottom, right top, center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="paisley" patternUnits="userSpaceOnUse" width="20" height="20"><path d="M10,2 C6,2 3,5 3,9 C3,13 6,16 10,16 C14,16 17,13 17,9 C17,5 14,2 10,2 Z" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23paisley)"/></svg>') repeat;
    opacity: 0.3;
    will-change: transform;
    animation: parallaxFloat 20s ease-in-out infinite;
}

@keyframes parallaxFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    50% { transform: translateY(-5px) rotate(-1deg); }
    75% { transform: translateY(-15px) rotate(0.5deg); }
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 2;
    transform: translateZ(0);
    will-change: transform;
}

.hero-content.parallax-scroll {
    transform: translateY(var(--scroll-y, 0));
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #60a5fa, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(96, 165, 250, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6, #60a5fa);
    color: white;
    border: none;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, #1e3a8a, #60a5fa) 1;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.2), rgba(96, 165, 250, 0.2));
    transition: left 0.3s ease;
}

.btn-secondary:hover::before {
    left: 0;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.4);
}

/* Main Content */
.main-content {
    margin-top: 0;
    min-height: 100vh;
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

/* Section Spacing and Z-index Management */
section {
    position: relative;
    z-index: 1;
    isolation: isolate;
    clear: both;
}

section:not(.hero) {
    margin-bottom: 2rem;
    padding: 4rem 0;
}

section.parallax-section {
    margin-bottom: 0;
}

.page-hero {
    background: linear-gradient(135deg, 
        rgba(30, 58, 138, 0.9), 
        rgba(59, 130, 246, 0.8), 
        rgba(96, 165, 250, 0.7)), 
                radial-gradient(circle at 20% 80%, rgba(30, 58, 138, 0.4) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.4) 0%, transparent 50%),
                conic-gradient(from 180deg at 50% 50%, #1e3a8a, #3b82f6, #60a5fa, #1e3a8a);
    background-size: cover, 800px 800px, 600px 600px, 100% 100%;
    background-position: center, left bottom, right top, center;
    background-attachment: fixed;
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
}

.page-hero-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="mandala" patternUnits="userSpaceOnUse" width="30" height="30"><circle cx="15" cy="15" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="15" cy="15" r="8" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23mandala)"/></svg>') repeat;
    will-change: transform;
    animation: floatingPattern 20s ease-in-out infinite;
    opacity: 0.6;
}

.page-hero-parallax::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 100 100"><defs><pattern id="lotus" patternUnits="userSpaceOnUse" width="40" height="40"><path d="M20,10 Q15,15 15,20 Q15,25 20,30 Q25,25 25,20 Q25,15 20,10 Z" fill="none" stroke="rgba(255,255,255,0.06)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23lotus)"/></svg>') repeat;
    animation: particleFloat 25s ease-in-out infinite reverse;
    opacity: 0.4;
}

.page-hero-parallax::after {
    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 100 100"><defs><pattern id="paisley" patternUnits="userSpaceOnUse" width="25" height="25"><ellipse cx="12.5" cy="12.5" rx="3" ry="6" fill="rgba(255,255,255,0.04)" transform="rotate(45 12.5 12.5)"/></pattern></defs><rect width="100" height="100" fill="url(%23paisley)"/></svg>') repeat;
    animation: parallaxRotate 30s linear infinite;
    opacity: 0.3;
}

@keyframes parallaxRotate {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-20px) rotate(360deg); }
}

@keyframes floatingPattern {
    0%, 100% { 
        transform: translateX(0) translateY(0) scale(1);
        opacity: 0.6;
    }
    25% { 
        transform: translateX(10px) translateY(-10px) scale(1.05);
        opacity: 0.8;
    }
    50% { 
        transform: translateX(-5px) translateY(-20px) scale(0.95);
        opacity: 0.5;
    }
    75% { 
        transform: translateX(-10px) translateY(-5px) scale(1.02);
        opacity: 0.7;
    }
}

@keyframes particleFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    33% { 
        transform: translateY(-15px) rotate(120deg);
        opacity: 0.6;
    }
    66% { 
        transform: translateY(-8px) rotate(240deg);
        opacity: 0.4;
    }
}

/* Hero Image Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    text-align: center;
    color: white;
    max-width: 400px;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.slide-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.slide-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.slide-content p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 3;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active,
.dot:hover {
    background: white;
    transform: scale(1.2);
    border-color: rgba(30, 58, 138, 0.5);
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

.section-title:after {
    content: '';
    width: 100px;
    height: 3px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6, #60a5fa);
    display: block;
    margin: 1rem auto;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(30, 58, 138, 0.3);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.about-image img {
    width: 300px;
    height: 400px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.2);
    border: 3px solid transparent;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6, #60a5fa);
    background-clip: padding-box;
}

/* Online Classes Section */
.classes-hero {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6, #60a5fa);
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 3rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    z-index: 2;
    isolation: isolate;
}

.classes-hero::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="mandala" patternUnits="userSpaceOnUse" width="30" height="30"><circle cx="15" cy="15" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="15" cy="15" r="8" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23mandala)"/></svg>') repeat;
    z-index: -1;
}

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

.class-card {
    background: linear-gradient(145deg, #ffffff, #fef7ff);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(196, 69, 105, 0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 58, 138, 0.1);
    position: relative;
    overflow: hidden;
}

.class-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6, #60a5fa);
}

.class-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.25);
}

.class-card h3 {
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.class-features {
    list-style: none;
    margin: 1rem 0;
}

.class-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.class-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

/* Performances Timeline */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(180deg, #1e3a8a, #3b82f6, #60a5fa);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(30, 58, 138, 0.3);
}

.timeline-item {
    padding: 1rem 2rem;
    position: relative;
    background: white;
    width: 45%;
    margin: 2rem 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 55%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 50%;
    top: 20px;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.timeline-item:nth-child(odd)::after {
    right: -10px;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

.timeline-date {
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    font-size: 0.9rem;
}

.timeline-content h3 {
    margin: 0.5rem 0;
    color: #333;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6, #60a5fa);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.contact-info::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="lotus" patternUnits="userSpaceOnUse" width="25" height="25"><path d="M12.5,5 Q8,8 8,12.5 Q8,17 12.5,20 Q17,17 17,12.5 Q17,8 12.5,5 Z" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23lotus)"/></svg>') repeat;
    opacity: 0.3;
}

.contact-info h3 {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.contact-item {
    display: flex;
    align-items: center;
    margin: 1rem 0;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: bold;
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #1e3a8a;
    box-shadow: 0 0 15px rgba(30, 58, 138, 0.2);
}

/* Gallery Sections */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.gallery-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    will-change: transform;
    position: relative;
    z-index: 2;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
}

.gallery-item.parallax-item {
    transform: translateY(var(--parallax-offset, 0));
}

.gallery-placeholder {
    height: 250px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6, #60a5fa);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.gallery-placeholder::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 50 50"><defs><pattern id="dance" patternUnits="userSpaceOnUse" width="15" height="15"><circle cx="7.5" cy="7.5" r="1" fill="rgba(255,255,255,0.2)"/></pattern></defs><rect width="50" height="50" fill="url(%23dance)"/></svg>') repeat;
    opacity: 0.3;
    animation: parallaxDrift 15s ease-in-out infinite;
}

@keyframes parallaxDrift {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(5px) translateY(-5px); }
    50% { transform: translateX(-5px) translateY(5px); }
    75% { transform: translateX(5px) translateY(5px); }
}

.gallery-content {
    padding: 1.5rem;
}

.gallery-content h3 {
    color: #333;
    margin-bottom: 1rem;
}

.gallery-content p {
    color: #666;
    line-height: 1.6;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.video-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
}

.video-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #333, #666);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    position: relative;
}

.play-button {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e3a8a, rgba(196, 69, 105, 0.9));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(30, 58, 138, 0.6);
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    margin-bottom: 2rem;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    background: linear-gradient(135deg, #1e3a8a, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: serif;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #555;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6, #60a5fa);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.author-info h4 {
    margin: 0;
    color: #333;
}

.author-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

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

.bite-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.bite-image {
    height: 180px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6, #60a5fa);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    position: relative;
}

.bite-image::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 40 40"><defs><pattern id="cultural" patternUnits="userSpaceOnUse" width="12" height="12"><rect x="5" y="5" width="2" height="2" fill="rgba(255,255,255,0.15)"/></pattern></defs><rect width="40" height="40" fill="url(%23cultural)"/></svg>') repeat;
}

.bite-content {
    padding: 1rem;
}

.bite-content h4 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1rem;
}

.bite-content p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #1e3a8a, #1e40af, #1d4ed8);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section h3 {
    background: linear-gradient(135deg, #60a5fa, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    background: linear-gradient(135deg, #60a5fa, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6, #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(96, 165, 250, 0.5);
}

.footer-contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

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

.footer-form-group input,
.footer-form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
}

.footer-form-group input::placeholder,
.footer-form-group textarea::placeholder {
    color: #ccc;
}

.footer-form-group input:focus,
.footer-form-group textarea:focus {
    outline: none;
    border-color: #1e3a8a;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 15px rgba(30, 58, 138, 0.3);
}

.footer-btn {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6, #60a5fa);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.footer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(96, 165, 250, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: #ccc;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(30, 58, 138, 0.3);
}

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

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Parallax Utilities */
.parallax-section {
    position: relative;
    background-attachment: scroll;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    will-change: transform;
    isolation: isolate;
    z-index: 1;
}

.parallax-slow {
    transform: translateY(var(--parallax-slow, 0));
}

.parallax-medium {
    transform: translateY(var(--parallax-medium, 0));
}

.parallax-fast {
    transform: translateY(var(--parallax-fast, 0));
}

.parallax-content {
    position: relative;
    z-index: 3;
    background: transparent;
    margin: 0;
    padding: 4rem 0;
    color: white;
    text-align: center;
}

.parallax-content h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    font-weight: 300;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out;
}

.parallax-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.3s both;
}

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

/* Enhanced card animations with parallax */
.class-card, .testimonial-card, .bite-card {
    will-change: transform;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.class-card:hover, .testimonial-card:hover, .bite-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(30, 58, 138, 0.2);
}

/* Floating elements */
.floating-element {
    animation: float 6s ease-in-out infinite;
}

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

.floating-element-delayed {
    animation: float 6s ease-in-out infinite 2s;
}

.mobile-menu {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.mobile-menu:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu.active {
    background: rgba(30, 58, 138, 0.8);
    transform: rotate(90deg);
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0;
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }

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

    .nav-links li {
        margin: 1rem 0;
        width: 90%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        border-radius: 10px;
        width: 100%;
    }

    .dropdown-content {
        position: static;
        display: block;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(5px);
        margin-top: 0.5rem;
        border-radius: 10px;
        padding: 0.5rem 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown:hover .dropdown-content,
    .dropdown.active .dropdown-content,
    .dropdown.hover .dropdown-content {
        max-height: 300px;
    }

    .dropdown-content a {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        margin: 0.2rem 0;
    }

    .mobile-menu {
        display: block;
    }
}

/* Comprehensive Responsive Design */

/* Large Tablets and Small Laptops */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .about-content {
        gap: 2rem;
    }
    
    .classes-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .video-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    
    .container {
        padding: 0 10px;
    }

    /* Hero Section */
    .hero {
        height: 100vh;
        padding: 0 10px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }
    
    .hero .subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }

    /* Buttons */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        width: 280px;
        max-width: 90%;
    }

    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .about-image img,
    .about-image > div {
        width: 250px;
        height: 320px;
    }

    /* Sections */
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    section:not(.hero) {
        padding: 3rem 0;
    }
    
    .page-hero {
        padding: 5rem 0 2rem;
    }
    
    .page-hero h1 {
        font-size: 2.2rem;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 2rem;
    }

    /* Timeline */
    .timeline::after {
        left: 20px;
    }

    .timeline-item {
        width: calc(100% - 40px);
        left: 40px !important;
        padding: 1rem 1.5rem;
    }

    .timeline-item::after {
        left: -35px !important;
    }

    /* Grids */
    .classes-grid,
    .gallery-grid,
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .bites-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-contact-form {
        padding: 1.5rem;
    }

    /* Main Content */
    .main-content {
        padding: 3rem 0;
    }
    
    /* Parallax adjustments for mobile */
    .parallax-section {
        background-attachment: scroll;
    }
    
    .hero-parallax-bg,
    .page-hero-parallax {
        display: none;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    body {
        font-size: 13px;
    }
    
    .container {
        padding: 0 8px;
    }

    /* Navigation */
    .nav-container {
        padding: 0 10px;
    }
    
    .logo {
        font-size: 1.4rem;
    }

    /* Hero */
    .hero {
        padding: 0 8px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .subtitle {
        font-size: 1rem;
    }
    
    .hero p {
        font-size: 0.9rem;
        padding: 0 5px;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        width: 260px;
    }

    /* Sections */
    .section-title {
        font-size: 1.8rem;
    }
    
    section:not(.hero) {
        padding: 2rem 0;
    }
    
    .page-hero {
        padding: 4rem 0 2rem;
    }
    
    .page-hero h1 {
        font-size: 1.8rem;
    }

    /* Cards */
    .class-card,
    .gallery-item,
    .testimonial-card {
        margin: 0 5px;
    }
    
    .class-card,
    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }
    
    .gallery-placeholder,
    .video-placeholder {
        height: 200px;
    }
    
    .bite-image {
        height: 150px;
    }

    /* Timeline */
    .timeline-item {
        padding: 1rem;
    }
    
    .timeline-content h3 {
        font-size: 1.1rem;
    }

    /* Footer */
    .footer-content {
        padding: 0 10px;
    }
    
    .footer-contact-form {
        padding: 1rem;
    }
    
    .footer-form-group input,
    .footer-form-group textarea {
        padding: 0.6rem;
        font-size: 0.85rem;
    }
    
    .footer-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    /* About image */
    .about-image img,
    .about-image > div {
        width: 200px;
        height: 260px;
    }
    
    /* Slider controls */
    .slider-controls {
        padding: 0 10px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .container {
        padding: 0 5px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        width: 240px;
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .class-card,
    .contact-form,
    .contact-info,
    .footer-contact-form {
        padding: 1rem;
    }
    
    .about-image img,
    .about-image > div {
        width: 180px;
        height: 240px;
    }
}

/* Responsive Images and Media */
img {
    max-width: 100%;
    height: auto;
}

/* Responsive Tables */
table {
    width: 100%;
    overflow-x: auto;
    display: block;
    white-space: nowrap;
}

@media (max-width: 768px) {
    table {
        font-size: 14px;
    }
}

/* Fix for long text overflow */
.gallery-content h3,
.class-card h3,
.testimonial-text,
.bite-content h4 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Mobile-specific animations */
@media (max-width: 768px) {
    .floating-element,
    .floating-element-delayed {
        animation: none;
    }
    
    /* Reduce parallax effects on mobile */
    .parallax-slow,
    .parallax-medium,
    .parallax-fast {
        transform: none !important;
    }
    
    /* Ensure content is scrollable */
    .hero-content,
    .page-hero {
        position: relative;
        z-index: 2;
    }
}
