:root {
    --gold: #ffcc00;
    --dark: #000000;
    --card-bg: #111111;
    --gray-text: #aaaaaa;
}

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

body {
    background-color: var(--dark);
    color: white;
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, .logo { font-family: 'Oswald', sans-serif; text-transform: uppercase; }

/* Navbar */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 5%; position: fixed; width: 100%; z-index: 1000;
    background: rgba(0,0,0,0.8);
}
.logo { font-size: 2.2rem; letter-spacing: 2px; 
    display: flex;
    align-items: center;
    gap: 8px; /* space between text and image */ }
.logo span { color: var(--gold); }
.logo-img {
    width: 80px;   /* adjust size */
    height:fit-content;
}
.logo-img:hover {
    transform: scale(1.2);
    transition: 0.3s;
}
.logo-img {
    width: 85px;
    animation: bounce 2s infinite;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a:not(.btn-yellow) {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:not(.btn-yellow):hover {
    color: var(--gold);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex; align-items: center; padding: 0 5%;
    /* IMAGE UPLOAD POSITION: Replace with your main boxer image */
    background: linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0.2)), 
                url('https://images.unsplash.com/photo-1549719386-74dfcbf7dbed?q=80&w=2000') center/cover;
}
.hero h1 { font-size: 4.5rem; line-height: 1; margin-bottom: 20px; }
.hero h1 span { color: var(--gold); }
.hero p { max-width: 500px; color: var(--gray-text); margin-bottom: 30px; }

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* About Section */
.about-section {
    padding: 100px 5%;
    position: relative;
    background: linear-gradient(180deg, #050505 0%, #0b0b0b 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: center;
}

.section-kicker {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: bold;
    margin-bottom: 15px;
}

.about-title {
    text-align: left;
    margin-bottom: 25px;
}

.about-copy p {
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 18px;
    max-width: 600px;
}

.about-stats {
    display: grid;
    gap: 18px;
}

.about-stat {
    background: var(--card-bg);
    border-left: 3px solid var(--gold);
    padding: 24px;
}

.about-stat strong {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 8px;
}

.about-stat span {
    color: var(--gray-text);
    line-height: 1.5;
}

/* Buttons */
.btn-yellow { background: var(--gold); color: black; padding: 12px 25px; text-decoration: none; font-weight: bold; border: none; cursor: pointer; }
.btn-outline { border: 1px solid white; color: white; padding: 12px 25px; text-decoration: none; }

/* Programs */
.programs { padding: 100px 5%; position: relative; }
.bg-number { position: absolute; font-size: 15rem; color: rgba(255,204,0,0.05); top: 0; right: 5%; font-weight: bold; z-index: -1; }
.program-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 50px; }
.program-card { background: var(--card-bg); padding: 30px; border-left: 3px solid transparent; transition: 0.3s; }
.program-card:hover { border-left: 3px solid var(--gold); background: #1a1a1a; transform: translateY(-5px); }
.time { color: var(--gold); font-size: 0.8rem; font-weight: bold; }

/* Registration Form */
.registration { 
    padding: 100px 5%; 
    /* IMAGE UPLOAD POSITION: Background for form section (optional) */
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('images/gym-bg.jpg');
}
.form-container { max-width: 600px; margin: 0 auto; background: #0a0a0a; padding: 40px; border: 1px solid #333; }
form input, form select { width: 100%; padding: 15px; margin-bottom: 15px; background: #1a1a1a; border: 1px solid #333; color: white; }
#submitBtn { width: 100%; padding: 15px; background: var(--gold); font-weight: bold; border: none; cursor: pointer; }

/* Success Modal */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.95); display: none; align-items: center; justify-content: center; z-index: 2000; }
.modal-overlay.active { display: flex; }
.modal-content { background: #111; padding: 50px; text-align: center; border: 2px solid var(--gold); border-radius: 10px; }

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 50px;
    letter-spacing: 5px;
}

/* --- TEAM GRID (With Images) --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 5%;
}

.category-card {
    position: relative;
    overflow: hidden;
    height: 450px;
    border: 1px solid #333;
}

.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.6);
    transition: 0.5s ease;
}

.category-card:hover img {
    filter: grayscale(0%) brightness(0.8);
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    text-align: center;
}

.card-overlay h3 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 10px;
}

/* --- PROGRAM BOXES (The Gold Line Look) --- */
.programs-section {
    padding: 100px 5%;
    background-color: #050505;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 4 columns like your image */
    gap: 15px;
}

.program-box {
    background: #111;
    padding: 30px;
    border-top: 2px solid transparent; /* The line is hidden by default */
    transition: 0.3s ease;
    min-height: 200px;
}

/* This creates the Gold Line on Hover */
.program-box:hover {
    border-top: 2px solid var(--gold);
    background: #181818;
}

.time-tag {
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: bold;
    border: 1px solid var(--gold);
    padding: 2px 8px;
    margin-bottom: 15px;
    display: inline-block;
}

.program-box h3 {
    margin: 10px 0;
    font-size: 1.4rem;
}

.program-box p {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.4;
}

/* Champions */
.champions-section {
    padding: 100px 5%;
    position: relative;
    background: linear-gradient(180deg, #080808 0%, #020202 100%);
}

.champions-kicker {
    text-align: center;
    margin-bottom: 10px;
}

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

.champion-card {
    background: #0f0f0f;
    border: 1px solid #252525;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.champion-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
}

.champion-card img {
    width: 100%;
    height: 400px;
    object-fit:cover;
    display: block;
}

.champion-info {
    padding: 28px;
}

.champion-tag {
    display: inline-block;
    color: var(--gold);
    border: 1px solid rgba(255, 204, 0, 0.5);
    padding: 5px 10px;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.champion-info h3 {
    font-size: 1.7rem;
    margin-bottom: 12px;
}

.champion-info p {
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 14px;
}

.champion-note {
    color: #f4f4f4;
    border-left: 3px solid var(--gold);
    padding-left: 14px;
}

/* Coaches */
.coaches-section {
    padding: 100px 5%;
    position: relative;
    background: linear-gradient(180deg, #060606 0%, #0b0b0b 100%);
}

.coaches-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 24px;
}

.coach-card {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    border: 1px solid #262626;
    background: #0e0e0e;
}

.coach-video,
.coach-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.coach-video {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    filter: brightness(0.6);
    transition: opacity 0.35s ease;
}

.coach-card img {
    filter: brightness(0.72);
    transition: transform 0.5s ease, filter 0.5s ease, opacity 0.35s ease;
    position: relative;
    z-index: 0;
}

.coach-card:hover img {
    transform: scale(1.06);
    filter: brightness(0.2);
    opacity: 0.12;
}

.coach-card:hover .coach-video {
    opacity: 1;
}

.coach-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 34px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 20%, rgba(0, 0, 0, 0.92) 100%);
    transform: translateY(55%);
    transition: transform 0.4s ease;
    z-index: 2;
}

.coach-card:hover .coach-overlay {
    transform: translateY(0);
}

.coach-role {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.coach-overlay h3 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.coach-overlay p {
    color: #d0d0d0;
    line-height: 1.7;
    max-width: 520px;
}

/* Punch Bag */
.punch-section {
    padding: 100px 5%;
    position: relative;
    background: radial-gradient(circle at top, #171717 0%, #050505 55%, #000 100%);
}

.punch-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.punch-title {
    text-align: left;
    margin-bottom: 22px;
}

.punch-copy p {
    max-width: 560px;
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 16px;
}

.punch-note {
    color: white;
    font-weight: 700;
}

.punch-stage {
    min-height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    padding: 20px 20px 40px;
    background: radial-gradient(circle at center, rgba(255, 204, 0, 0.08) 0%, rgba(255, 204, 0, 0.02) 28%, rgba(0, 0, 0, 0) 65%);
}

.punch-rope {
    width: 6px;
    height: 90px;
    background: linear-gradient(180deg, #7f7f7f 0%, #d6d6d6 100%);
}

#bag {
    width: 150px;
    max-width: 100%;
    transform-origin: top center;
    cursor: pointer;
    user-select: none;
    isolation: isolate;
    mix-blend-mode: lighten;
    filter: contrast(1.2) saturate(1.2) brightness(0.96) drop-shadow(0 26px 26px rgba(0, 0, 0, 0.55));
}

/* Contact */
.contact-section {
    padding: 100px 5%;
    position: relative;
    background: #050505;
}

.contact-kicker {
    text-align: center;
    margin-bottom: 10px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.contact-card {
    background: #111;
    border: 1px solid #272727;
    padding: 28px;
    min-height: 180px;
}

.map-card {
    padding: 20px;
}

.contact-card h3 {
    margin-bottom: 14px;
    color: var(--gold);
    font-size: 1.4rem;
}

.contact-card p,
.contact-card a {
    color: var(--gray-text);
    line-height: 1.8;
    text-decoration: none;
}

.contact-card a:hover {
    color: white;
}

.map-link {
    display: block;
    margin-top: 6px;
    border: 1px solid #333;
    overflow: hidden;
    background: #0c0c0c;
}

.map-link iframe {
    width: 100%;
    height: 180px;
    border: 0;
    display: block;
    filter: none;
}

.social-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.social-links {
    display: flex;
    gap: 14px;
    margin-top: 12px;
}

.social-links a {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    border: 1px solid #333;
    transition: 0.3s ease;
}

.social-links a:hover {
    border-color: var(--gold);
    background: var(--gold);
}

.social-links svg {
    width: 24px;
    height: 24px;
    fill: var(--gold);
    transition: 0.3s ease;
}

.social-links a:hover svg {
    fill: #000;
}

.creator-footer {
    padding: 10px 5% 10px;
    background: #020202;
    border-top: 1px solid #1d1d1d;
}

.creator-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.creator-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.creator-content p {
    color: var(--gray-text);
    font-size: 0.96rem;
    margin-left: 5px;
    margin-bottom: 0;
}

.creator-content strong {
    color: var(--gold);
      
}

.creator-links {
    margin-top: 0;
}



/* Responsive for Mobile */
@media (max-width: 900px) {
    .navbar {
        padding: 14px 4%;
        align-items: flex-start;
    }
    .logo {
        font-size: 1.5rem;
        gap: 6px;
        align-items: flex-start;
        flex-direction: column;
    }
    .logo-img {
        width: 62px;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 12px;
        max-width: 52%;
    }
    .nav-links a:not(.btn-yellow) {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }
    .nav-links .btn-yellow {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    .hero {
        padding: 130px 5% 60px;
        height: auto;
        min-height: 100vh;
        align-items: flex-end;
    }
    .hero h1 {
        font-size: 3.7rem;
    }
    .hero p {
        max-width: 100%;
    }
    .about-content { grid-template-columns: 1fr; }
    .coaches-grid { grid-template-columns: 1fr; }
    .punch-content { grid-template-columns: 1fr; }
    .program-grid { grid-template-columns: repeat(2, 1fr); }
    .creator-content { justify-content: flex-start; }
    .creator-meta { gap: 12px; }
}
@media (max-width: 500px) {
    .navbar {
        flex-direction: column;
        gap: 14px;
        align-items: flex-start;
    }
    .logo {
        font-size: 1.2rem;
        flex-direction: row;
        align-items: center;
    }
    .logo-img {
        width: 56px;
    }
    .nav-links {
        max-width: 100%;
        width: 100%;
        justify-content: flex-start;
        gap: 10px 12px;
    }
    .nav-links a:not(.btn-yellow) {
        font-size: 0.72rem;
    }
    .nav-links .btn-yellow {
        padding: 9px 14px;
        font-size: 0.8rem;
    }
    .hero {
        padding-top: 170px;
    }
    .hero h1 {
        font-size: 2.8rem;
    }
    .hero p {
        font-size: 0.95rem;
        line-height: 1.45;
    }
    .hero-btns {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-btns a {
        width: 100%;
        text-align: center;
    }
    .about-section { padding: 80px 5%; }
    .about-title { font-size: 2.2rem; }
    .champion-card img { height: 260px; }
    .punch-section { padding: 80px 5%; }
    .punch-title { font-size: 2.2rem; }
    .punch-stage { min-height: 340px; }
    #bag { width: 190px; }
    .program-grid { grid-template-columns: 1fr; }
}
