/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d32f2f;
    --secondary-color: #1a1a1a;
    --accent-color: #ffa000;
    --text-dark: #212121;
    --text-light: #ffffff;
    --bg-light: #f5f5f5;
    --bg-dark: #1a1a1a;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.nav-brand:hover {
    opacity: 0.8;
}

.nav-brand h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.nav-brand .tagline {
    color: var(--text-light);
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-top: -5px;
}

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

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(211,47,47,0.1)" stroke-width="1"/></pattern></defs><rect width="1200" height="800" fill="%231a1a1a"/><rect width="1200" height="800" fill="url(%23grid)"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.3) 0%, rgba(26, 26, 26, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--text-light);
    max-width: 800px;
    padding: 0 20px;
}

.hero-logo {
    max-width: 500px;
    width: 100%;
    height: auto;
    margin: 0 auto 2rem;
    display: block;
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s backwards;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: transparent;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(211, 47, 47, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border-color: var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--text-dark);
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
}

/* Instagram Reels Section */
.instagram-reels {
    background: white;
    padding: 5rem 0;
}

.reels-carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.reels-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    max-width: 540px;
    width: 100%;
}

.reel-wrapper {
    width: 100%;
    display: none;
    justify-content: center;
}

.reel-wrapper.active {
    display: flex;
}

.instagram-media {
    max-width: 540px !important;
    width: 100% !important;
    margin: 0 auto !important;
}

.carousel-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: #b71c1c;
    transform: scale(1.1);
}

.instagram-cta {
    text-align: center;
    margin-top: 2rem;
}

.instagram-cta .btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.instagram-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(188, 24, 136, 0.4);
}

/* About Section */
.about {
    background: var(--bg-light);
}

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

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.features-list {
    list-style: none;
    margin-top: 2rem;
}

.features-list li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Section Subtitle */
.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-top: -2rem;
    margin-bottom: 3rem;
}

/* Photo Gallery Section */
.photo-gallery {
    background: var(--bg-dark);
    padding: 5rem 0;
    color: var(--text-light);
}

.photo-gallery .section-title {
    color: var(--text-light);
}

.photo-gallery .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.gallery-carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.gallery-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 600px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.gallery-slide.active {
    opacity: 1;
    z-index: 1;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-btn {
    background: rgba(211, 47, 47, 0.9);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
    z-index: 10;
}

.gallery-btn:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.gallery-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
}

.indicator.active {
    background: var(--primary-color);
    width: 40px;
    border-radius: 6px;
}

.gallery-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Masters Section */
.masters {
    background: white;
}

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

.master-card {
    background: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.master-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.master-image {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.master-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.master-image .image-placeholder {
    font-size: 8rem;
    filter: brightness(1.2);
}

.master-info {
    padding: 1.5rem;
}

.master-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.master-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.master-rank {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.master-bio {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #555;
}

.master-achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.master-achievements span {
    background: rgba(211, 47, 47, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* History Section - Martial Arts */
.history {
    background: var(--bg-dark);
    color: var(--text-light);
}

.history .section-title {
    color: var(--text-light);
}

.history .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

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

.martial-art-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(211, 47, 47, 0.3);
    transition: var(--transition);
}

.martial-art-card:hover {
    background: rgba(211, 47, 47, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.3);
}

.martial-art-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.martial-art-card p {
    line-height: 1.8;
    opacity: 0.9;
    font-size: 1rem;
}

.martial-art-card a,
.master-card a {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.martial-art-card a:hover,
.master-card a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

/* History Detail Pages */
.history-detail {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.history-detail h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.history-detail h2:first-child {
    margin-top: 0;
}

.history-detail p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #555;
    font-size: 1.1rem;
}

.history-detail ul {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.history-detail ul li {
    margin-bottom: 0.8rem;
    color: #555;
}

.history-detail ul li strong {
    color: var(--primary-color);
}

.history-detail blockquote {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
}

.history-detail blockquote p {
    margin-bottom: 1rem;
    color: #333;
}

.history-detail blockquote p:last-child {
    margin-bottom: 0;
}

.back-link {
    text-align: center;
    margin-top: 2rem;
}

/* Classes Section */
.classes {
    background: var(--bg-dark);
    color: var(--text-light);
}

.classes .section-title {
    color: var(--text-light);
}

.classes .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.classes .section-title {
    color: var(--text-light);
}

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

.class-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid #e0e0e0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.class-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.class-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.class-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.class-card p {
    line-height: 1.8;
    color: #555;
}

/* Students Section - Reviews Carousel */
.students {
    background: white;
    padding: 5rem 0;
}

.reviews-carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
}

.reviews-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.review-slide.active {
    opacity: 1;
    transform: scale(1);
    position: relative;
    pointer-events: auto;
}

.review-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: var(--transition);
}

.review-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.reviewer-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.reviewer-info h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.review-stars {
    color: #ffa000;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.review-content {
    position: relative;
    margin-bottom: 1.5rem;
}

.quote-icon {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.15;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: Georgia, serif;
    z-index: 0;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.review-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.review-date {
    color: #999;
    font-size: 0.9rem;
}

.review-nav-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.review-nav-btn:hover {
    background: #b71c1c;
    transform: scale(1.1);
}

.review-indicators {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin: 2rem 0;
}

.review-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.review-indicator:hover {
    background: #999;
}

.review-indicator.active {
    background: var(--primary-color);
    width: 35px;
    border-radius: 5px;
}

.google-reviews-cta {
    text-align: center;
    margin-top: 3rem;
}

.curriculum-link-section {
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
    text-align: center;
    color: white;
}

.curriculum-link-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.curriculum-link-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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



/* Schedule Section */
.schedule {
    background: var(--bg-light);
}

.schedule-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.schedule-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border-left: 6px solid;
}

.schedule-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.schedule-card-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.schedule-card-header h3 {
    font-size: 1.4rem;
    margin: 0;
    color: var(--text-dark);
}

.schedule-time {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.schedule-card-body {
    padding: 0 2rem 1.5rem 2rem;
}

.schedule-duration {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

/* Schedule Card Colors */
.schedule-card.class-kids {
    border-left-color: #ff6b6b;
}

.schedule-card.class-juniors {
    border-left-color: #ffa000;
}

.schedule-card.class-teens {
    border-left-color: #4caf50;
}

.schedule-card.class-adults {
    border-left-color: #d32f2f;
}

.schedule-card.class-saturday {
    border-left-color: #2196f3;
}

.schedule-section-title {
    text-align: center;
    font-size: 2rem;
    margin: 3rem 0 2rem;
    color: var(--text-dark);
    position: relative;
}

.schedule-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

/* Contact Section */
.contact {
    background: var(--bg-dark);
    color: var(--text-light);
}

.contact .section-title {
    color: var(--text-light);
}

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

.contact-info h3,
.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-info p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
}

.contact-form select option {
    background: var(--bg-dark);
    color: var(--text-light);
}

/* Footer */
.footer {
    background: #0a0a0a;
    color: var(--text-light);
    padding: 2rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--primary-color);
}

.footer-copyright {
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-dark);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        padding: 2rem 0;
        gap: 1rem;
    }

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

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-logo {
        max-width: 350px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .image-placeholder {
        width: 100%;
        max-width: 300px;
        height: 300px;
        font-size: 6rem;
    }

    .reels-carousel {
        flex-direction: column;
        gap: 1rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .reels-container {
        min-height: 400px;
    }

    .instagram-media {
        max-width: 100% !important;
    }

    .gallery-carousel {
        gap: 1rem;
    }

    .gallery-container {
        height: 400px;
    }

    .gallery-btn {
        width: 45px;
        height: 45px;
        font-size: 2rem;
    }

    .classes-grid {
        grid-template-columns: 1fr;
    }

    .masters-grid {
        grid-template-columns: 1fr;
    }

    .martial-arts-grid {
        grid-template-columns: 1fr;
    }

    .reviews-carousel {
        gap: 1rem;
    }

    .review-card {
        padding: 2rem;
    }

    .reviewer-avatar {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .review-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .schedule-card-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.2rem 1.5rem;
    }

    .schedule-card-header h3 {
        font-size: 1.2rem;
    }

    .schedule-time {
        font-size: 1.1rem;
    }

    .schedule-card-body {
        padding: 0 1.5rem 1.2rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        max-width: 280px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .nav-brand h1 {
        font-size: 1.4rem;
    }

    .btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    .gallery-container {
        height: 300px;
    }

    .gallery-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .gallery-carousel {
        gap: 0.5rem;
    }

    .reviews-carousel {
        flex-direction: column;
        gap: 1rem;
    }

    .review-card {
        padding: 1.5rem;
    }

    .review-header {
        gap: 1rem;
    }

    .reviewer-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }

    .reviewer-info h4 {
        font-size: 1.1rem;
    }

    .review-text {
        font-size: 1rem;
    }

    .review-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }

    .reviews-container {
        min-height: 400px;
    }

    .schedule-card-header h3 {
        font-size: 1rem;
    }

    .schedule-time {
        font-size: 1rem;
    }

    .schedule-card-header {
        padding: 1rem;
    }

    .schedule-card-body {
        padding: 0 1rem 1rem 1rem;
    }

    .schedule-card:hover {
        transform: translateX(5px);
    }
}


/* Strava Community Section */
.strava-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.strava-section .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.strava-widgets {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.strava-widget {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.strava-widget h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.strava-widget iframe {
    border-radius: 8px;
    max-width: 100%;
}

.strava-cta {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    margin: 0 auto;
}

.strava-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.strava-cta .btn {
    background: #fc4c02;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.strava-cta .btn:hover {
    background: #e34402;
    transform: translateY(-2px);
}

/* Responsive Strava Section */
@media (max-width: 768px) {
    .strava-widgets {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .strava-widget {
        width: 100%;
        max-width: 320px;
    }
    
    .strava-widget iframe {
        width: 100% !important;
        max-width: 300px;
    }
}


/* Our Curriculum Section */
.curriculum-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.curriculum-title-special {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.logo-o {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-right: -10px;
}

.curriculum-programs {
    max-width: 900px;
    margin: 3rem auto 0;
}

.program-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 2rem;
}

.program-card.featured {
    border: 3px solid #d32f2f;
}

.program-header {
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    color: white;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.program-header h3 {
    font-size: 2rem;
    margin: 0;
    color: white;
}

.age-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
}

.program-content {
    padding: 2.5rem;
}

.program-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
}

.program-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.benefit {
    font-size: 1.1rem;
    font-weight: 600;
    color: #d32f2f;
    display: flex;
    align-items: center;
}

.program-content .btn {
    margin-top: 1.5rem;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
}

/* Responsive Curriculum */
@media (max-width: 768px) {
    .curriculum-title-special {
        font-size: 2rem;
    }
    
    .logo-o {
        width: 50px;
        height: 50px;
    }
    
    .program-header {
        flex-direction: column;
        text-align: center;
    }
    
    .program-header h3 {
        font-size: 1.5rem;
    }
    
    .program-content {
        padding: 1.5rem;
    }
    
    .program-benefits {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
}


/* Program Card Images */
.program-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    background: #000;
}

.program-card.featured .program-image {
    border-bottom: 3px solid #d32f2f;
}

/* Explore More / Related Links Section */
.related-links {
    background: #1a1a1a;
    padding: 3rem 0;
    text-align: center;
}

.related-links h3 {
    color: #ff6b35;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.related-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.related-link-card {
    background: #2d2d2d;
    padding: 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.related-link-card:hover {
    background: #ff6b35;
    transform: scale(1.05);
}

.related-link-card a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .related-links-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .related-link-card {
        padding: 1rem;
    }
    
    .related-link-card a {
        font-size: 1rem;
    }
}
