/* ====================== RESET & BASE ====================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Bebas Neue for headings and strong branding */
h1, h2, h3, .nav-links a, .action-button, .mobile-menu a,
.schedule-container h1, .contact-form-section h1 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

/* ====================== NAVIGATION ====================== */
.navbar {
    height: 80px;
    background: white;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

/* ====================== LOGO ====================== */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 75px;
    height: 75px;
    object-fit: contain;
}

/* Logo Text - Same font as nav and branding */
.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.1rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.2s ease;
}

.logo-text:hover {
    color: #333;
    transform: scale(1.02);
}

/* Prevent color change on click */
.logo-text:active,
.logo-text:visited {
    color: #1a1a1a;
}

/* Responsive Logo */
@media (max-width: 768px) {
    .logo-text {
        font-size: 1.7rem;
    }
    .logo img {
        width: 58px;
        height: 58px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.55rem;
    }
    .logo img {
        width: 50px;
        height: 50px;
    }
}

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-links a {
    text-decoration: none;
    padding: 10px 20px;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    border: 1.5px solid #444;
    border-radius: 0;
    transition: all 0.25s ease;
    color: #1a1a1a;
}

.nav-links a:hover,
.nav-links a.active {
    transform: translateY(-5px);
    background: #1a1a1a;
    color: white;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: black;
    border-radius: 2px;
    transition: all 0.4s ease;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100vh;
    background: rgba(245, 245, 245, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    padding: 100px 10% 40px;
    transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
}

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

.mobile-menu a {
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 700;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: #1a1a1a;
}

/* ====================== LOGO ====================== */
.logo-container a {
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.2s ease;
}

/* Prevent color change when clicked/active */
.logo-container a:active,
.logo-container a:visited,
.logo-container a:focus {
    color: #1a1a1a;
}

/* Optional: subtle hover effect on logo text */
.logo-container a:hover {
    color: #333;
   
}

/* Make logo responsive */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 2rem;
}

/* Smaller logo on mobile */
@media (max-width: 768px) {
    .logo-container {
        font-size: 1.65rem;        /* Reduced text size */
        gap: 8px;
    }
    
    .logo img {
        width: 55px;               /* Slightly smaller image */
        height: 55px;
    }
}

@media (max-width: 480px) {
    .logo-container {
        font-size: 1.45rem;
    }
    
    .logo img {
        width: 48px;
        height: 48px;
    }
}

/* ====================== HERO SECTION ====================== */
.Main-body {
    position: relative;
}

.hero-container {
    position: relative;
    width: 100%;
    min-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
    background: #000;
    z-index: 1;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Overlay Content - Button below video */
.overlay-content {
    position: relative;
    z-index: 2;
    margin-top: 45px;           /* Spacing between video and button */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    text-align: center;
    padding: 0 20px;
}

/* Action Button */
.action-button {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.35rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
    background: transparent;
    border: 3.5px solid #000;
    padding: 18px 48px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    outline: none;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

.action-button:hover {
    background: #000;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.action-button.btn-lg {
    font-size: 1.6rem;
    padding: 22px 56px;
}

/* ====================== FOOTER ====================== */
.footer {
    background: white;
    padding: 40px 5% 20px;
    border-top: 1px solid #eee;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-icons img {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.social-icons a:hover img {
    transform: translateY(-4px);
}

.footer-content p {
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: #555;
}

.legal-links {
    font-size: 0.9rem;
}

.legal-links a {
    color: #1a1a1a;
    text-decoration: none;
}

.legal-links .separator {
    margin: 0 8px;
    color: #ccc;
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .logo-container {
        font-size: 1.8rem;
    }

    .logo img {
        width: 60px;
        height: 60px;
    }

    .video-wrapper {
        max-width: 100%;
        border-radius: 12px;
        margin: 0 15px;
    }

    .overlay-content {
        margin-top: 35px;
    }

    .action-button {
        font-size: 1.4rem;
        padding: 16px 40px;
    }
}

@media (max-width: 480px) {
    .mobile-menu a {
        font-size: 1.6rem;
        padding: 16px 0;
    }
}

/* ====================== CONTACT PAGE ====================== */
.contact-page {
    min-height: calc(100vh - 80px - 220px);
    background: whitesmoke;
    padding: 80px 5% 100px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.contact-form-section h1 {
    font-size: 2.8rem;
    margin-bottom: 12px;
}

.subtitle {
    color: #aaa;
    margin-bottom: 40px;
    font-size: 1.15rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    color: #555;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    background: rgb(240, 223, 223);
    border: 1.5px solid #333;
    padding: 14px 16px;
    border-radius: 0;
    font-size: 1rem;
    transition: border-color 0.25s ease;
}

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

.submit-btn {
    background: #667eea;
    border: none;
    padding: 16px 32px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.25s ease;
    align-self: flex-start;
}

.submit-btn:hover {
    background: #5a6ee0;
    transform: translateY(-2px);
}

.form-status {
    margin-top: 12px;
    font-size: 0.95rem;
}

.form-status.success { color: #66ff99; }
.form-status.error { color: #ff6666; }

/* Contact Info */
.contact-info {
    background: #cccbcb;
    padding: 40px 32px;
    border: 1px solid #222;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 32px;
}

.info-item {
    margin-bottom: 28px;
}

.info-item strong {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* Responsive Contact */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .contact-info { order: -1; }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 60px 5% 80px;
    }
    .contact-form-section h1 {
        font-size: 2.4rem;
    }
}

/* ====================== SCHEDULE PAGE ====================== */
.schedule-page {
    min-height: calc(100vh - 80px - 220px);
    background: whitesmoke;
    padding: 80px 5% 100px;
}

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

.schedule-container h1 {
    font-size: 3rem;
    margin-bottom: 12px;
    text-align: center;
}

.schedule-table-wrapper {
    overflow-x: auto;
    margin-bottom: 100px;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1000px;
}

.schedule-table th,
.schedule-table td {
    padding: 18px 24px;
    text-align: center;
    border: 3px solid #333;
    font-size: 1.3rem;
}

.schedule-table th {
    font-weight: 800;
}

.schedule-notes {
    background: whitesmoke;
    padding: 40px;
    border: 1px solid #222;
    max-width: 800px;
    margin: 0 auto;
}

.schedule-notes h3 {
    margin-bottom: 20px;
}

.schedule-notes ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.schedule-notes li:before {
    content: "•";
    color: #667eea;
    margin-right: 12px;
}

/* Responsive Schedule */
@media (max-width: 992px) {
    .schedule-table th,
    .schedule-table td {
        padding: 14px 16px;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .schedule-page {
        padding: 60px 5% 80px;
    }
    .schedule-container h1 {
        font-size: 2.4rem;
    }
}

/* ====================== ABOUT PAGE ====================== */
.about-page {
    background: #f8f8f8;
    padding-bottom: 80px;
}

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

/* School Section */
.about-school {
    padding: 100px 0 80px;
    background: white;
}

.about-school h1 {
    font-size: 3.2rem;
    text-align: center;
    margin-bottom: 40px;
}

.about-text {
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Trainers Section */
.trainers-section {
    padding: 80px 0;
}

.trainers-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
}

.trainers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 60px;
}

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

.trainer-card:hover {
    transform: translateY(-10px);
}

.trainer-content {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
}

.trainer-text {
    flex: 1;
}

.trainer-text h3 {
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.trainer-text h4 {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 20px;
}

.trainer-image {
    flex: 1;
    max-width: 280px;
}

.trainer-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 768px) {
    .about-school {
        padding: 70px 0 50px;
    }
    
    .about-school h1 {
        font-size: 2.5rem;
    }

    .trainers-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .trainer-content {
        flex-direction: column;
        gap: 25px;
        padding: 30px;
        text-align: center;
    }

    .trainer-image {
        max-width: 220px;
        margin: 0 auto;
    }

    .trainer-text h3 {
        font-size: 1.9rem;
    }
}

@media (max-width: 480px) {
    .trainer-content {
        padding: 25px;
    }
}

/* ====================== CONTACT PAGE ====================== */
.contact-page {
    padding: 100px 5% 120px;
    background: #f8f8f8;
}

.contact-page h1 {
    font-size: 3.2rem;
    text-align: center;
    margin-bottom: 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.contact-info-box {
    background: white;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-info-box h2 {
    font-size: 2.4rem;
    margin-bottom: 30px;
}

.info-item {
    margin-bottom: 32px;
}

.info-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

/* MAP CONTAINER - SAME HEIGHT AS INFO BOX */
.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;               /* This is key */
    min-height: 520px;          /* Minimum height on large screens */
}

.map-container iframe {
    width: 100%;
    height: 100%;               /* Fill the entire container */
    border: 0;
    display: block;
}

.contact-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 16px 24px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 8px;
    transition: all 0.3s ease;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background: #20b858;
    transform: translateY(-3px);
}

.email-btn {
    background: #1a1a1a;
    color: white;
}

.email-btn:hover {
    background: #333;
    transform: translateY(-3px);
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-box {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 70px 5% 80px;
    }
    
    .contact-page h1 {
        font-size: 2.6rem;
    }
}