/* =====================================================
   IOWA MARTIAL ARTS & WELLNESS CENTER
   REORGANIZATION WORKING COPY
   =====================================================

   Recommended Section Order
   1. Global / Reset
   2. Header
   3. Navigation
   4. Mobile Navigation
   5. Hero Sections
   6. Homepage
      - Intro
      - Programs
      - Reviews
      - Achievements
   7. About Page
   8. Program Pages
   9. Coaches
   10. Contact Page
   11. Footer
   12. Animations
   13. Responsive Breakpoints

   NOTE:
   This is a safe working copy of the uploaded stylesheet.
   Before moving selectors between sections, test each page.
   Keep the original stylesheet as a backup.
===================================================== */

/* ===========================
   GLOBAL
=========================== */

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

body{
    font-family:'Inter', sans-serif;
    background:#111;
    color:white;
    animation:fadeIn .4s ease;
}

@keyframes fadeIn{
    from{
        opacity:0;
    }
    to{
        opacity:1;
    }
}

:root{
    --section-dark: #111111;
    --section-light: #181818;
    --section-card: #222222;
    --accent-red: #d60000;
}

.section-dark{
    background: var(--section-dark);
}

.section-light{
    background: var(--section-light);
}

.section{
    padding: 80px 10%;
}

/* ===========================
   HEADER / NAVIGATION
=========================== */

header{
    display:flex;
    align-items:center;
    justify-content: space-between;

    background:black;
    padding:20px 30px;

    border-bottom:4px solid #d10000;

}

.logo-group {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.logo img{
    height: 75px;
    width:auto;
}

.tom-logo{
    height:90px;
    width:auto;
}

nav{
    justify-self:center;
}

nav ul{
    list-style:none;

    display:flex;
    align-items:center;
    justify-content:center;

    gap:20px;

    margin:0;
    padding:0;

    

}

nav a{
    color:white;
    text-decoration:none;
    font-weight:bold;

    position:relative;

    padding:12px 18px;
    border-radius:8px;

    transition:
        color .3s ease,
        transform .2s ease,
        background-color .3s ease;

    white-space:nowrap;

    font-family:'Montserrat', sans-serif;
font-weight:600;
letter-spacing:.2px;

}
nav a::after{
    content:"";

    position:absolute;
    left:0;
    bottom:-6px;

    width:0;
    height:2px;

    background:#d10000;

    transition:width .3s ease;
}

header nav a:hover{
    color:#ff4d4d;

    background:#2a2a2a;
    border-radius:10px;
    

    text-shadow:
        0 0 4px rgba(255,31,31,.15);
}

header nav a:hover::after,
header nav a.active::after{
    width:100%;
}

header nav a.active{
    background:#2a2a2a;
    color:white;
}

header nav a.pressed{
    transform:scale(.92);
}

/* =========================
   ABOUT INTRO
========================= */

.about-intro{
    text-align:center;

    max-width:1000px;
    margin:0 auto;

    padding:100px 20px 120px;
}

.about-intro .section-label{
    display:inline-block;

    color:#d40000;

    font-size:.9rem;
    font-weight:700;

    letter-spacing:4px;

    position:relative;

    padding-bottom:14px;

    margin-bottom:25px;
}

.about-intro .section-label::after{
    content:"";

    position:absolute;

    left:50%;
    transform:translateX(-50%);

    bottom:0;

    width:70px;
    height:4px;

    background:#d40000;

    border-radius:20px;
}

.about-intro h1{
    font-family:'Montserrat', sans-serif;
    font-weight:800;

    font-size:clamp(2.75rem, 6vw, 5rem);

    line-height:1.1;

    max-width:850px;

    margin:0 auto 30px;

    text-wrap:balance;
}

.about-intro p{
    max-width:750px;

    margin:0 auto;

    color:#cfcfcf;

    font-size:1.15rem;
    line-height:1.8;
}

/* =========================
   MOBILE
========================= */



/* =========================
   GRID LAYOUT
========================= */

.about-grid{
    max-width:1200px;
    margin:0 auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.about-grid.reverse .about-image{
    order:2;
}

.about-grid.reverse .about-text{
    order:1;
}

/* =========================
   IMAGE STYLING
========================= */

.about-image{
    position:relative;
    overflow:hidden;

    border-radius:16px;

    box-shadow:
        0 15px 40px rgba(0,0,0,.4);
}

.about-image img{
    width:100%;
    display:block;

    transition:
        transform .7s ease;
}

.about-section:hover .about-image img{
    transform:scale(1.05);
}

.about-image::after{
    content:"";
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            rgba(0,0,0,.05),
            rgba(0,0,0,.35)
        );

    pointer-events:none;
}

/* =========================
   CONTENT CARD
========================= */

.about-text{
    background:#1d1d1d;

    padding:40px;

    border-radius:16px;

    border-top:4px solid #d40000;

    box-shadow:
        0 15px 35px rgba(0,0,0,.3);
}

/* ===========================
   DROPDOWN MENU
=========================== */

.dropdown{
    position:relative;
}

.dropdown-menu{
    position:absolute;

    top:calc(100% + 14px);
    left:50%;

    transform:
        translateX(-50%)
        translateY(-10px);

    list-style:none;

    min-width:100px;

    background:rgba(25,25,25,.95);
    backdrop-filter:blur(8px);

    border-top:3px solid #d10000;
    border-radius:0 0 8px 8px;

    padding:10px 10px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.5);

    opacity:0;
    visibility:hidden;

    transition:
        opacity .25s ease,
        transform .25s ease;

    z-index:1000;

    display:flex;
    flex-direction:column;

    align-items:stretch;

    gap: 8px;
}

.dropdown-menu li{
    display:block;
    width:100%;
}

.dropdown-menu a{
    display:block;

    padding:12px 20px;
    font-size:14px;

    color:white;
    text-decoration:none;

    white-space:nowrap;

    transition:
        background .2s ease,
        color .2s ease;
}

.dropdown-menu a:hover{
    background:#2a2a2a;
    color:#ff4d4d;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu:hover{
    opacity:1;
    visibility:visible;

    transform:
        translateX(-50%)
        translateY(0);
}

.dropdown::after{
    content:"";

    position:absolute;

    left:0;
    right:0;

    top:100%;

    height:15px;
}

/* ===========================
   HERO SECTION
=========================== */


.hero{
    position:relative;
    height:90vh;
    overflow:hidden;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.hero::after{
    content:"";
    position:absolute;

    left:0;
    bottom:0;

    width:100%;
    height:200px;

    background:linear-gradient(
        to bottom,
        rgba(0,0,0,0),
        #111
    );

    z-index:2;
    pointer-events:none;
}

.hero-content{
    position:relative;
    z-index:3;

    background:rgba(20,20,20,.55);

    backdrop-filter:blur(6px);

    padding:40px 50px;

    border-radius:16px;

    border-top:4px solid #d40000;

    box-shadow:
        0 15px 40px rgba(0,0,0,.35);

    max-width:850px;
    margin:0 auto;
}

.hero-content h2{
    font-size:4.5rem;
    text-shadow:0 2px 15px rgba(0,0,0,.6);
    margin-bottom:20px;
    font-family:'Montserrat', sans-serif;
    font-weight:700;
}

.hero-content p{
    text-shadow:0 2px 10px rgba(0,0,0,.6);
}
.slideshow{
    position:absolute;
    inset:0;
}

.slide{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;
    object-position:center;

    opacity:0;

    transform:scale(1);

    transition:
        opacity 1.5s ease-in-out,
        transform 4s linear;
}

.slide.active{
    opacity:1;
    transform:scale(1.08);
}

.hero-overlay{
    position:absolute;
    inset:0;

    background:rgba(0,0,0,.55);

    z-index:1;
}

.hero-video{
    padding:60px 10%;
    text-align:center;
}

.hero-video video{
    width:100%;
    max-width:500px;

    border-radius:10px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.5);
}

.page-hero{
    position:relative;
    overflow:hidden;
}

@media (max-width: 1500px) {

    header {
        padding: 20px 10px;
    }

    nav ul {
        gap: 6px;
    }

    nav a {
        padding: 10px 12px;
        font-size: 0.95rem;
    }

    .logo img {
        height: 68px;
    }

    .tom-logo img {
        height: 82px;
    }
}

@media (max-width: 768px){

    .hero-content{
        background:none;
        border:none;
        box-shadow:none;
        backdrop-filter:none;
        padding:0;
    }

    .hero-content h2{
        font-size:2.2rem;
        line-height:1.2;
    }

    .hero-content p{
        font-size:.95rem;
    }

}


/* ===========================
   BUTTONS
=========================== */

.btn{
    display:inline-block;

    background:#d10000;
    color:white;

    padding:15px 35px;
    border-radius:8px;
    text-decoration:none;

    font-size:18px;
    font-weight:bold;

    position:relative;
    overflow:hidden;

    box-shadow:
        0 4px 15px rgba(209,0,0,.3);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
        cursor:pointer;
}

.schedule-btn{
    margin-top:25px;
    margin-left:10px;
}

.reviews-btn{
    margin-top:30px;
}

.btn:hover{
    background:#ff1f1f;

    transform:translateY(-4px);

    box-shadow:
        0 10px 25px rgba(209,0,0,.45);
}

.btn:active{
    transform:translateY(1px) scale(.97);
}

.mobile-menu-toggle,
.mobile-menu,
.mobile-menu-overlay{
    display:none;
}

.hero .btn{
    animation:pulse 2.5s infinite;
}

@keyframes pulse{

    0%{
        box-shadow:
            0 0 0 0 rgba(209,0,0,.6);
    }

    70%{
        box-shadow:
            0 0 0 18px rgba(209,0,0,0);
    }

    100%{
        box-shadow:
            0 0 0 0 rgba(209,0,0,0);
    }
}

/* Ripple */

.ripple{
    position:absolute;

    border-radius:50%;

    background:rgba(255,255,255,.45);

    transform:scale(0);

    pointer-events:none;

    animation:ripple .6s linear;
}

@keyframes ripple{
    to{
        transform:scale(4);
        opacity:0;
    }
}

/* ===========================
   SECTIONS
=========================== */

section{
    padding:60px 10%;
}

.schedule-grid{
    display:flex;
    flex-wrap:wrap;
    gap:32px;
    align-items:start;
    justify-content: center;
    margin:0 auto;
}

.schedule-card{
    width:320px;
    display:flex;
    flex-direction: column;
    align-items: center;
}

.schedule-card .schedule-print-btn{
    padding:14px 30px;
    font-size:16px;
}


.schedule-image{
    width:100%;
    height:500px;
    object-fit: contain;
    max-width:100%;
    background:#fff;
    border-radius:14px;
    box-shadow:0 14px 30px rgba(0,0,0,.35);
}

.page-header{
    position:relative;

    padding:100px 20px;

    text-align:center;

    background:
        linear-gradient(
            rgba(20,20,20,.95),
            rgba(30,30,30,.95)
        );

    border-top:3px solid #d10000;
    border-bottom:1px solid rgba(209,0,0,.3);

    overflow:hidden;
}

.page-header h1{
    position:relative;

    display:inline-block;

    margin:0;

    font-size:3rem;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:1px;
}

.page-header h1::after{
    content:"";

    position:absolute;

    left:50%;
    transform:translateX(-50%);

    bottom:-15px;

    width:70px;
    height:4px;

    background:#d10000;

    border-radius:999px;
}

.page-header p{
    max-width:700px;

    margin:30px auto 0;

    color:#d0d0d0;

    font-size:1.1rem;
    line-height:1.7;
}



/* ===========================
   CARDS
=========================== */

.programs{
    text-align:center;
}

.programs h2,
.reviews-section h2,
.why-choose-us h2,
.gallery h2,
.location-section h2,
.private-training h2,
.featured-achievements h2,
.future-achievements h2{
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;

    margin-bottom: 40px;

    position: relative;
}

.programs h2::after,
.reviews-section h2::after,
.why-choose-us h2::after,
.gallery h2::after,
.location-section h2::after,
.private-training h2::after,
.featured-achievements h2::after,
.future-achievements h2::after {
    content: "";

    display: block;

    width: 80px;
    height: 4px;

    background: #d10000;

    margin: 12px auto 0;

    border-radius: 10px;
}

.card,
.coach-card,
.booking-card{
    background:#1d1d1d;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.card{
    padding:30px;
    border-left:5px solid #d10000;
    height:auto;
}

.coach-card{
    text-align:center;
    padding:20px;
    position:relative;

    
}

.booking-card{
    padding:25px;
    border-left:5px solid #d10000;
}

.card:hover,
.coach-card:hover,
.booking-card:hover{
    transform:translateY(-8px);

    box-shadow:
        0 10px 30px rgba(209,0,0,.25);
}

.card-container{
    display:grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap:25px;

    align-items:start;
}

.coach-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
}

.coach-card img{
    width:100%;
    height: auto;
    display:block;
    border-radius:10px;
}

.coach-card h3{
    color:#fff;
    font-size:2rem;
    margin-bottom:0;
}

.coach-card::before{
    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:#d40000;

    z-index:2;
}

.coach-content{
    text-align:center;
}

.coach-content h3{
    position:relative;

    color:#fff;
    font-size:1.7rem;

    margin-bottom:20px;
    padding-bottom:12px;
}

.coach-content h3::after{
    content:"";

    position:absolute;

    left:50%;
    bottom:0;
    transform:translateX(-50%);
    width:50px;
    height:3px;

    background:#d40000;

    border-radius:10px;
}

.coach-rank{
    color:#d40000;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:.85rem;
    font-weight:700;

    margin-bottom:18px;
}

.coach-info{
    padding:20px 25px 30px;
    text-align:center;
}

.coach-line{
    width:70px;
    height:3px;

    background:#d40000;

    margin:12px auto 18px;

    border-radius:10px;
}

.coach-description{
    position:relative;

    padding-top:18px;

    color:#cfcfcf;
    line-height:1.8;
    font-size:.95rem;
}

.coach-description::before{
    content:"";

    position:absolute;

    top:0;
    left:50%;

    transform:translateX(-50%);

    width:40px;
    height:1px;

    background:rgba(255,255,255,.15);
}

.card-link{
    text-decoration:none;
    cursor:pointer;
    display:block;

    margin-top:15px;

    display:inline-block;
    width:100%;

    color:#ff4d4d;
    font-weight:bold;

    transition:transform .2s ease;
}

.card-link .card{
    height:100%;
    cursor:pointer;
    color:white;
}

.card-link:hover .card{
    transform:translateY(-8px);
    box-shadow:0 10px 30px rgba(209,0,0,.25);
}

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

.intro-section {
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.intro-card {
    max-width: 900px;
    margin: 0 auto;
    justify-content: center;

    background: rgba(20, 20, 20, 0.95);

    padding: 45px 50px;

    border: 1px solid rgba(209, 0, 0, 0.4);
    border-radius: 12px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.35);
}

.intro-card h2 {
    position: relative;

    margin-bottom: 30px;
    padding-bottom: 15px;

    font-size: 2rem;
}

.intro-card h2::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 80px;
    height: 4px;

    background: #d10000;
}

.intro-card p {
    margin-bottom: 20px;

    color: #ddd;

    line-height: 1.8;
    font-size: 1.05rem;
}

.intro-card p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {

    .intro-card {
        padding: 30px;
    }

    .intro-card h2 {
        font-size: 1.6rem;
    }

    .intro-card p {
        font-size: 1rem;
    }

}
/* Keep text above overlay */
.program-card .card h3,
.program-card .card p,
.program-card .card span{
    position:relative;
    z-index:2;
}

.program-card .card h3{
    margin:0 0 10px 0;
}

.program-card .card p{
    margin:0 0 15px 0;
}

.program-card .card span{
    color:#ff4d4d;
    font-weight:bold;
}

/* Brighten image on hover */
.program-card:hover .card::before{
    opacity:.75;
}

.program-card:hover img{
    transform:scale(1.08);
}

.program-card:hover::before{
    opacity:.8;
}

.program-card .card{
    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.program-card-image{
    position:absolute;
    inset:0;
}

.program-card img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
}

.program-card:hover .program-card-image img{
    transform: translateY(-5px);

    box-shadow:0 8px 20px rgba(209,0,0,.25);
}

.program-card::before{
    content:"";

    position:absolute;
    inset:0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.95) 0%,
            rgba(0,0,0,.75) 40%,
            rgba(0,0,0,.25) 70%,
            rgba(0,0,0,0) 100%
        );

    z-index:1;

    transition:opacity .3s ease;
}

.card-content{
    position:absolute;

    left:0;
    right:0;
    bottom:0;

    padding:25px;

    z-index:2;

    text-align:center;
}

.card-content h3{
    color:white;

    margin-bottom:12px;

    font-size:1.4rem;
}

.learn-more {
    color: #ff4d4d;
    font-weight: bold;
}

.program-card{
    position:relative;
    aspect-ratio: 3 / 2;

    overflow:hidden;

    border-radius:10px;

    border-left:4px solid #d10000;

    display:block;

    text-decoration:none;
}

/* =========================
   
========================= */

/* =========================
   WHY CHOOSE US
========================= */

.why-choose-us{
    width:min(90%,1400px);

    margin:80px auto;

    text-align:center;
}

.why-choose-us h2{
    margin-bottom:40px;
}

.why-grid{
    display:grid;

    grid-template-columns:
        repeat(4,1fr);

    gap:25px;
}

.why-card{
    background:#1d1d1d;

    padding:30px;

    border-radius:10px;

    border-left:4px solid #d10000;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

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

    box-shadow:
        0 8px 20px rgba(209,0,0,.25);
}

.why-card i{
    font-size:2.5rem;

    color:#d10000;

    margin-bottom:20px;
}

.why-card h3{
    margin-bottom:15px;
}

.why-card p{
    line-height:1.7;
}

/* ===========================
   PROGRAM PAGES
=========================== */

.program-page{
    display:grid;

    grid-template-columns:
        1fr 1fr;

    gap:50px;

    align-items:center;
}

.program-image img{
    width:100%;

    border-radius:12px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.4);
}

.program-content{
    color:#ddd;
    background:#1d1d1d;
    padding:30px;
    border-left:5px solid #d10000;
    border-radius:8px;
}
.program-content h2{
    margin-bottom:20px;
}

.program-content p{
    line-height:1.8;
    margin-bottom:20px;
}

.program-content ul{
    padding-left:20px;
}

.program-content li{
    margin-bottom:10px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gallery-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    object-fit: cover;

    transition:
        transform .3s ease;
}

.gallery-grid img:hover{
    transform:scale(1.03);
}

.training-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.portrait {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.landscape {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.coach-link{
    color:#ff4d4d;
    font-weight:bold;
    text-decoration:none;

    transition:color .3s ease;
}



/* ===========================
   TABLES
=========================== */

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

.schedule-table th{
    background:#d10000;
}

.schedule-table th,
.schedule-table td{
    border:1px solid #444;
    padding:15px;
    text-align:center;
}

.schedule-table tr{
    transition:background .2s ease;
}

.schedule-table tr:hover{
    background:#222;
}

/* =========================
   PRIVATES
========================= */

.private-hero {
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 25px;
align-items: center;
padding: 80px 0;
}

.private-hero-content {
    background: #111;
    padding: 40px;
    border-radius: 12px;
    border-left: 5px solid #d10000;
    align-items: center;
}

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

.private-hero-image img {
width: 520px;
height: 640px;
object-fit: cover;
border-radius: 12px;
display: block;
}

.private-hero-content{
    justify-content: center;
    max-width: 600px;
}

.private-hero-content h2 {
    position: relative;
    margin-bottom: 25px;
    padding-bottom: 15px;
}

.private-hero-content h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 70px;
    height: 4px;

    background: #d10000;
}

.private-hero-content p {
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 20px;
}

.private-hero-content .btn {
    margin-top: 10px;
}

.private-highlights {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 25px;
padding-bottom: 80px;
}

.highlight-card {
background: #111;
border-left: 4px solid #d10000;
padding: 30px;
border-radius: 10px;
transition: transform .3s ease;
}

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

.highlight-card h3 {
margin-bottom: 10px;
}

.private-program-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.private-program-card {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #222;
}

.private-program-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.private-program-card h3 {
    padding: 20px;
    text-align: center;
}

@media (max-width: 900px) {

.private-hero {
    grid-template-columns: 1fr;
}


.private-hero-image img {
    height: 350px;
}

.private-highlights {
    grid-template-columns: 1fr;
}

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

.footer-container{
        flex-direction:column;
        gap:40px;
    }

    .footer-divider{
        display:none;
    }

    .footer-left,
    .footer-middle,
    .footer-right{
        width:100%;
    }

    .footer-left h3,
    .footer-middle h3,
    .footer-right h3{
        font-size:1.5rem;
    }

}


/* =========================
   FOOTER
========================= */

footer{
    border-top:2px solid #d40000;
    background:#000;
}

/* Main Footer Layout */

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

    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:50px;
}

.footer-left{
    flex:1;
}
.footer-middle{
    flex:1.5;
}
.footer-right{
    min-width: 320px;
}

/* Vertical Dividers */

.footer-divider{
    width:1px;
    background:rgba(255,255,255,.12);
    align-self:stretch;
}

/* Section Headings */

.footer-left h3,
.footer-middle h3,
.footer-right h3{
    color:#fff;
    font-size:1.9rem;
    margin-bottom:25px;
    position:relative;
}

.footer-left h3::after,
.footer-middle h3::after,
.footer-right h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;

    width:40px;
    height:3px;

    background:#d40000;
    border-radius:10px;
}

/* Social Links */

.footer-left a{
    display:flex;
    align-items:center;
    gap:12px;

    margin-bottom:16px;

    color:#cfcfcf;
    text-decoration:none;

    transition:
        color .35s ease,
        transform .35s ease;
}

.footer-left a i{
    width:20px;
    text-align:center;

    color:#fff;

    transition:
        color .35s ease,
        transform .35s ease;
}

.footer-left a:hover{
    color:#ff0000;
    transform:translateX(4px);
}

.footer-left a:hover i{
    color:#ff0000;
    transform:scale(1.1);
}

/* Middle Section */

.footer-middle p{
    color:#cfcfcf;
    line-height:1.8;
    font-size:1rem;
}

/* Contact Section */

.footer-right p{
    margin-bottom:16px;
}

.footer-right a{
    display:flex;
    align-items:center;
    gap:12px;

    color:#cfcfcf;
    text-decoration:none;

    transition:
        color .35s ease,
        transform .35s ease;
}

.footer-right i{
    width:20px;
    text-align:center;

    color:#fff;

    transition:
        color .35s ease,
        transform .35s ease;
}

.footer-right a:hover{
    color:#ff0000;
    transform:translateX(4px);
}

.footer-right a:hover i{
    color:#ff0000;
    transform:scale(1.1);
}

/* Copyright */

.footer-bottom{
    text-align:center;

    border-top:1px solid rgba(255,255,255,.08);

    padding:20px;
}

.footer-bottom p{
    color:#888;
    margin:0;
    font-size:.95rem;
}

/* =========================
   MOBILE
========================= */

@media (max-width:768px){

    .about-intro{
        padding:70px 20px 80px;
    }

    .about-intro .section-label{
        font-size:.8rem;
        letter-spacing:3px;
    }

    .about-intro .section-label::after{
        width:55px;
        height:3px;
    }

    .about-intro h1{
        font-size:2.3rem;
        line-height:1.15;
    }

    .about-intro p{
        font-size:1rem;
        line-height:1.8;
    }

    .about-section{
        padding:80px 7%;
    }

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

    .about-grid.reverse .about-image,
    .about-grid.reverse .about-text{
        order:unset;
    }

    .about-text{
        padding:30px;
    }

    .about-text h2{
        font-size:2rem;
    }

    .faq-section h2{
        font-size:2rem;
    }

    .cta h2{
        font-size:2.2rem;
    }
}
/* ===========================
   CONTACT PAGE
=========================== */



.contact-info {
    width: min(85%, 1200px);

    margin: 0 auto;

    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card:hover{
    transform:translateY(-4px);

    box-shadow:
        0 8px 20px rgba(209,0,0,.25);
}

.contact-icon{
    font-size:2rem;
}

.contact-text{
    font-size:1.25rem;
    font-weight:600;
}

.contact-card{
    width: 100%;
    box-sizing:border-box;

    background:#1d1d1d;
    border-left:5px solid #d10000;

    padding:25px 30px;

    display:flex;
    align-items:center;

    gap:20px;

    border-radius:8px;

    text-decoration:none;
    color:white;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.contact-card:hover{
    transform:translateY(-4px);

    border-left-color:#ff1f1f;

    box-shadow:
        0 8px 20px rgba(209,0,0,.25);
}

.contact-icon{
    font-size:2rem;
}

.contact-text{
    font-size:1.25rem;
    font-weight:600;
}

.accolade-card{
    text-align:center;
}

.schedule-table{
    margin-bottom: 25px;
}

.schedule-image{
    display:block;
    margin:30px auto;
}

/* ===========================
   RESPONSIVE MOBILE STYLES
=========================== */

@media (max-width: 1200px) {
    header{
        display:flex;
        align-items:center;
        justify-content:space-between;

        padding:10px 12px;
        position:relative;
    }

    .intro-section{
        grid-template-columns: 1fr;
    }

    .logo-group{
    display:flex;
    align-items:center;
    justify-content:space-evenly;
    }

    .logo{
        display:flex;
        justify-content:center;
        align-items:center;
    }

    .logo img{
        width:100%;
        max-width:110px;
        height:90px;
    }

    .tom-logo{
        margin-right:60px;
    }

    nav ul{
        flex-wrap:wrap;
        gap:10px;
        justify-content:center;
        padding:8px 12px;
        font-size:0.9rem;
    }

    nav{
        display:none;
    }

    

    .mobile-menu-toggle{
        position:static;
        transform:none;
        margin-bottom:10px;
    }
    .header-right{
        display:flex;
        justify-content:center;
    }
    
    section{
        padding:50px 8%;
    }

    .hero{
        height:60vh;
    }

    .hero-content h2{
        font-size:3rem;
    }

    .hero-video{
        padding:40px 8%;
    }

    .card{
        padding:24px;
    }

    .program-page,
    .gallery-grid,
    .coach-grid{
        grid-template-columns:1fr;
    }

    .schedule-grid{
        gap:24px;
    }

    .contact-card{
        flex-direction:column;
        align-items:flex-start;
        gap:18px;
    }
}

@media (max-width:1400px){

    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width: 700px) {
    header{
        grid-template-columns:1fr;
        padding:10px 8px;
    }

    nav ul{
        flex-direction:column;
        align-items:center;
        gap:14px;
    }

    nav a{
        font-size:16px;
    }

    .hero{
        height:50vh;
    }

    .hero-content h2{
        font-size:2.4rem;
    }

    .hero-content p{
        font-size:0.95rem;
        line-height:1.6;
    }

    .btn{
        padding:12px 24px;
        font-size:16px;
    }

    section{
        padding:40px 5%;
    }

    .card{
        padding:22px;
    }

    .card h3{
        font-size:1.4rem;
    }

    .hero-video video{
        width:100%;
        max-width:100%;
    }

    .dropdown-menu{
        position:static;
        transform:none;
        min-width:auto;
        border-radius:8px;
        top:auto;
        left:auto;
        width:100%;
        box-shadow:none;
        background:rgba(25,25,25,.98);
    }

    .dropdown:hover .dropdown-menu,
    .dropdown-menu:hover,
    .dropdown:focus-within .dropdown-menu{
        opacity:1;
        visibility:visible;
        transform:none;
    }

    .dropdown-menu a{
        padding:14px 18px;
    }

    .schedule-card{
        gap:14px;
    }

    .schedule-card .schedule-print-btn{
        width:100%;
        max-width:320px;
        cursor:pointer;
    }

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

@media (max-width: 1200px) {

    .logo{
        flex:none;
        width:auto;
        height:auto;
        margin:0;
    }

    nav{
        display:none;
    }


    .mobile-menu-toggle{
        display:flex;
        position:fixed;
        top:18px;
        right:18px;
        z-index:1100;
        align-items:center;
        justify-content:center;
        width:48px;
        height:48px;
        border:2px solid #d10000;
        border-radius:12px;
        background:#111;
        color:white;
        font-size:1.55rem;
        box-shadow:0 10px 25px rgba(0,0,0,.4);
        cursor:pointer;
        transition:transform .2s ease, background .2s ease, border-color .2s ease;
        touch-action: manipulation;
    }

    .mobile-menu{
        display:block;
    }

    .mobile-menu-overlay{
        display:block;
    }

    .mobile-menu-toggle:hover{
        transform:scale(1.03);
        background:#1e1e1e;
    }

    .mobile-menu{
        position:fixed;
        top:0;
        right:0;
        height:auto;
        width:240px;

        top: 18px;
        right: 18px;

        border-radius:12px;
        background:#000;
        border:2px solid #d10000;
        box-shadow:-10px 0 35px rgba(0,0,0,.65);

        visibility:hidden;
        opacity:0;

        transform:translateX(100%);

        transition:transform .35s ease, opacity .35s ease, visibility .35s ease;
        z-index:1150;
        overflow-y:auto;
        padding:10px 18px 18px 18px;
    }

    .mobile-menu.open{
        transform:translateX(0);
        visibility:visible;
        opacity:1;
    }

    .mobile-menu-overlay{
        position:fixed;
        inset:0;
        background:rgba(0,0,0,.55);
        opacity:0;
        visibility:hidden;
        transition:opacity .25s ease;
        z-index:1140;
    }

    .mobile-menu-overlay.active{
        opacity:1;
        visibility:visible;
    }

    .mobile-menu-nav{
        list-style:none;
        margin:0;
        padding:0;
    }

    .mobile-menu-nav ul{
        display:flex;
        flex-direction:column;
        gap:0;
        padding:0;
        margin:0;
        width:100%;
    }

    .mobile-menu-nav > li,
    .mobile-menu-nav li{
        width:100%;
        border-bottom:1px solid rgba(255,255,255,.1);
    }

    .mobile-menu-nav a{
        display:block;
        padding:10px 20px;
        color:white;
        text-decoration:none;
        font-size:1rem;
        transition:background .2s ease, color .2s ease;
        width:100%;
        box-sizing:border-box;
    }

    .mobile-menu-nav a:hover,
    .mobile-menu-nav a:focus{
        background:rgba(209,0,0,.1);
        color:#ff4d4d;
    }

    .mobile-menu .dropdown-toggle{
        display:block;
    width:100%;
    position:relative;
    }

    .mobile-menu .dropdown-toggle::after{
        content:'▸';
        position:absolute;
        right:20px;
        top:50%;
        transform:translateY(-50%);
        transition:transform .2s ease;
    }

    .mobile-menu .dropdown.open > .dropdown-toggle::after{
         transform:translateY(-50%) rotate(90deg);    }

    .mobile-menu .dropdown-menu{
       position:static;

        display:block !important;

        width:100% !important;
        min-width:0 !important;

        max-height:0;
        overflow:hidden;

        margin:0;
        padding:0;

        left:auto !important;
        top:auto !important;
        transform:none !important;

        background:transparent;
        border:none;
        box-shadow:none;

        opacity:1;
        visibility:visible;
    }

    .mobile-menu .dropdown.open > .dropdown-menu{
        max-height:400px;
    }

    .mobile-menu .dropdown-menu li{
        display:block;
        width:100%;
        margin:0;
        padding:0;
        border-bottom:none;
    }

    .mobile-menu .dropdown-menu a{
        display:block;
        width:100%;
        padding:14px 20px;
        font-size:0.98rem;
    }

}

.mobile-menu a::after{
        display:none;
}




    .mobile-menu .mobile-menu-close{
    position:absolute;
    top:18px;
    right:18px;

    width:40px;
    height:40px;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:0;
    margin:0;

    border:none;
    border-radius:10px;

    background:rgba(209,0,0,.1);

    color:white;
    font-size:28px;
    line-height:1;

    cursor:pointer;
}

@media (max-width:1200px){

    .mobile-menu-nav{
        display:block;
        margin-top:45px;
        width:100%;
    }

    .mobile-menu-nav ul{
        display:flex;
        flex-direction:column;
        width:100%;
        padding:0;
        margin:0;
        list-style:none;
    }

    .mobile-menu-nav li{
        width:100%;
    }

    .mobile-menu-nav a{
        display:block;
        width:max-content;
        padding:16px 20px;
        color:white;
        text-decoration:none;
        font-size:18px;
    }
}

@media (max-width: 400px) {

    .logo img {
        height: 60px;
        width: auto;
    }
    .contact-info span{
        font-size:16px;
    }

}

/* ===========================
   ACHIEVEMENTS 
=========================== */

.achievements-intro {
    padding: 80px 20px;
}

.achievement-card {
    max-width: 900px;
    margin: 0 auto;

    background: rgba(20,20,20,.95);

    padding: 45px 50px;

    border: 1px solid rgba(209,0,0,.4);
    border-radius: 12px;

    box-shadow:
        0 8px 25px rgba(0,0,0,.35);
}

.achievement-card h2 {
    position: relative;

    margin-bottom: 30px;
    padding-bottom: 15px;
}

.achievement-card h2::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 80px;
    height: 4px;

    background: #d10000;
}

.achievement-card p {
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 20px;
}

.featured-achievements {
    padding: 80px 20px;
}

.featured-achievements h2 {
    text-align: center;
    margin-bottom: 40px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.achievement-item {
    background: #111;

    padding: 30px;

    border-left: 4px solid #d10000;
    border-radius: 10px;
}

.achievement-item h3 {
    margin-bottom: 15px;
}

.achievement-item p {
    color: #ddd;
    line-height: 1.7;
}

.future-achievements {
    padding: 80px 20px;
    text-align: center;
}

.future-achievements p {
    max-width: 700px;
    margin: 0 auto;
    color: #ddd;
    line-height: 1.8;
}

@media (max-width: 900px) {

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

    .achievement-card {
        padding: 30px;
    }

}

/* ===========================
   REVIEWS SECTION
=========================== */

.reviews-section {
    width: min(90%, 1400px);
    margin: 50px auto;
    text-align: center;
}

.reviews-section h2 {
    margin-bottom: 40px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.review-card {
    background: #1d1d1d;

    border-left: 5px solid #d10000;

    padding: 30px;

    border-radius: 8px;

    text-align: left;

    transition: transform .3s ease,
                box-shadow .3s ease;
    min-width:0;
}

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

    box-shadow:
        0 8px 20px rgba(209,0,0,.25);
}

.review-stars {
    color: gold;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.review-text {
    line-height: 1.7;
    margin-bottom: 20px;
    overflow-wrap: break-word;
    word-break: break-word;
}

.review-author {
    font-weight: bold;
    color: #d10000;
}

.location-section {
    width: min(90%, 1200px);
    margin: 0px auto;
    margin-bottom: 80px;

    text-align: center;
    background: #1d1d1d;
    border-radius: 8px;
    border-left: 5px solid #d10000;
}

.location-section h2 {
    margin-bottom: 15px;
}

.location-text {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.map-container {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    border: 3px solid #d10000;
    box-sizing: border-box;
}

.location-details {
    margin-top: 10px;
    line-height: 1.8;
}
.directions-btn{
    margin-top: 25px;
}
.map-container iframe {
    display: block;
    width: 100%;
}

/* ===========================
   BACKGROUND OVERLAY   
=========================== */

.background-overlay{
    background-color:#111;
    position:relative;
}

.background-overlay::before{
    content:"";

    position:fixed;
    inset:0;

    background-image:
        url("../images/logo3.jpg"),
        url("../images/logo3.jpg");

    background-repeat:
        repeat,
        repeat;

    /* Logo size */
    background-size:
        150px 150px,
        150px 150px;

    /* Row offset */
    background-position:
        0 0,
        75px 75px;

    /* Spacing between logos */
    background-origin:border-box;

    opacity:.15;

    pointer-events:none;

    z-index:-1;
}

/* =========================
   ABOUT SECTIONS
========================= */

.about-section{
    padding:120px 10%;

    position:relative;
    overflow:hidden;
}

.dark{
    background:
        linear-gradient(
            to bottom,
            #111111,
            #161616
        );
}

.light{
    background:
        linear-gradient(
            to bottom,
            #181818,
            #202020
        );
}



/* =========================
   SECTION LABEL
========================= */

.section-label{
    display:block;

    color:#d40000;

    font-size:.85rem;
    font-weight:700;

    letter-spacing:3px;

    margin-bottom:10px;
}

/* =========================
   HEADINGS
========================= */

.about-text h2{
    font-size:2.7rem;

    margin-bottom:25px;

    line-height:1.2;
}

.about-text h2::after{
    content:"";

    display:block;

    width:70px;
    height:4px;

    background:#d40000;

    margin-top:15px;
}

/* =========================
   PARAGRAPHS
========================= */

.about-text p{
    color:#d6d6d6;

    line-height:1.9;

    margin-bottom:20px;

    font-size:1.05rem;
}

/* =========================
   LISTS
========================= */

.about-text ul{
    padding-left:20px;
}

.about-text li{
    color:#d6d6d6;

    margin-bottom:15px;

    line-height:1.8;
}

.about-text strong{
    color:white;
}

/* =========================
   FAQ SECTION
========================= */

.faq-section{
    padding:120px 10%;
    background:#181818;
}

.faq-section h2{
    text-align:center;
    margin-bottom:50px;

    font-size:2.8rem;
}

.faq-container{
    max-width:900px;
    margin:0 auto;
}

.faq-container details{
    background:#1d1d1d;

    margin-bottom:20px;

    border-radius:12px;

    border-left:4px solid #d40000;

    overflow:hidden;

    transition:.3s ease;
}

.faq-container details:hover{
    transform:translateY(-2px);
}

.faq-container summary{
    padding:22px;

    cursor:pointer;

    font-weight:600;

    font-size:1.1rem;

    list-style:none;
}

.faq-container summary::-webkit-details-marker{
    display:none;
}

.faq-container p{
    padding:0 22px 22px;

    color:#d6d6d6;

    line-height:1.7;
}

/* =========================
   CTA SECTION
========================= */

.cta{
    padding:120px 10%;

    text-align:center;

    background:
        linear-gradient(
            rgba(0,0,0,.8),
            rgba(0,0,0,.8)
        ),
        url("images/gym-team.jpg");

    background-size:cover;
    background-position:center;
}

.cta h2{
    font-size:3rem;
    margin-bottom:20px;
}

.cta p{
    max-width:700px;

    margin:0 auto 30px;

    color:#d6d6d6;
}

@media (max-width: 900px) {
    .achievement-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }
 
    .card-container{
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .achievement-grid {
        grid-template-columns: 1fr;
    }
    .card-container{
        grid-template-columns: 1fr;
    }
}
