/* ========================================
   GROVESTREET JUJITSU
   RESPONSIVE / MOBILE CSS
======================================== */


/* ========================================
   TABLET / MOBILE
   900px AND BELOW
======================================== */

@media (max-width: 900px) {

    /* ----------------------------------------
       GLOBAL
    ---------------------------------------- */

    html,
    body {
        width: 100%;
        overflow-x: hidden;
    }

    /* ----------------------------------------
       HEADER
    ---------------------------------------- */

    .site-header {
        position: relative;
        z-index: 1000;
    }

    .header-inner {
        width: 90%;
        height: 80px;
    }

    .desktop-nav,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .logo {
        width: 120px;
    }

    /* ----------------------------------------
       MOBILE NAV
    ---------------------------------------- */

    .mobile-nav {
        display: none;

        position: absolute;
        top: 80px;
        left: 0;

        width: 100%;

        padding: 25px;

        background: #000;

        border-top: 1px solid rgba(255, 255, 255, 0.15);

        z-index: 999;
    }

    .mobile-nav.active {
        display: flex;
        flex-direction: column;
    }

    .mobile-nav a {
        display: block;

        padding: 16px 0;

        font-size: 18px;
        font-weight: 900;

        text-transform: uppercase;

        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .mobile-cta {
        margin-top: 15px;

        padding: 16px !important;

        text-align: center;

        background: #fff;
        color: #000;
    }


    /* ========================================
       HOME HERO
    ======================================== */

    .hero {
        min-height: 100svh;

        background-position: center;
    }

    .hero-content {
        width: 90%;

        padding-top: 120px;
    }

    .hero h1 {
        font-size: clamp(55px, 13vw, 95px);

        line-height: 0.85;

        letter-spacing: -2px;
    }

    .hero-description {
        max-width: 500px;

        font-size: 16px;

        line-height: 1.5;
    }

    .hero-buttons {
        flex-wrap: wrap;
    }

    .hero-bottom-text {
        display: none;
    }


    /* ========================================
       GENERAL BUTTONS
    ======================================== */

    .btn {
        min-height: 50px;
    }


    /* ========================================
       CLASSES PAGE
    ======================================== */

    .class-section {
        grid-template-columns: 1fr;
    }

    .class-section-reverse .class-image,
    .class-section-reverse .class-content {
        order: initial;
    }

    .class-image {
        width: 100%;
        height: 380px;
    }

    .class-content {
        padding: 60px 7%;
    }


    /* ========================================
       COACHES PAGE
    ======================================== */

    .coach-section {
        grid-template-columns: 1fr;
    }

    .coach-section-reverse .coach-image,
    .coach-section-reverse .coach-content {
        order: initial;
    }

    .coach-image {
        width: 100%;
        height: 380px;
    }

    .coach-content {
        padding: 60px 7%;
    }


    /* ========================================
       SCHEDULE PAGE
    ======================================== */

    .schedule-heading {
        flex-direction: column;

        gap: 30px;
    }

    .schedule-description {
        max-width: 600px;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .schedule-day {
        width: 100%;
    }


    /* ========================================
       MEMBERSHIP PAGE
    ======================================== */

    .membership-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .membership-card {
        width: 100%;
    }


    /* ========================================
       CTA SECTIONS
    ======================================== */

    .schedule-cta,
    .membership-cta {
        padding-left: 7%;
        padding-right: 7%;
    }

}


/* ========================================
   PHONES
   600px AND BELOW
======================================== */

@media (max-width: 600px) {


    /* ----------------------------------------
       GLOBAL
    ---------------------------------------- */

    body {
        overflow-x: hidden;
    }


    /* ----------------------------------------
       HEADER
    ---------------------------------------- */

    .header-inner {
        width: 90%;

        height: 72px;
    }

    .logo {
        width: 105px;
    }

    .mobile-nav {
        top: 72px;

        padding: 20px;
    }

    .mobile-nav a {
        padding: 14px 0;

        font-size: 16px;
    }


    /* ========================================
       HOME HERO
    ======================================== */

    .hero {
        min-height: 100svh;

        background-position: 60% center;
    }

    .hero-overlay {
        background: rgba(0, 0, 0, 0.68);
    }

    .hero-content {
        width: 90%;

        padding-top: 100px;
    }

    .hero-eyebrow {
        font-size: 10px;

        letter-spacing: 3px;
    }

    .hero h1 {
        font-size: clamp(48px, 17vw, 78px);

        line-height: 0.82;

        letter-spacing: -2px;
    }

    .hero-description {
        margin-top: 22px;

        font-size: 15px;

        line-height: 1.5;
    }

    .hero-buttons {
        flex-direction: column;

        width: 100%;

        margin-top: 25px;
    }

    .hero-buttons .btn {
        width: 100%;
    }


    /* ========================================
       CLASSES
    ======================================== */

    .class-image {
        height: 300px;
    }

    .class-content {
        padding: 45px 6%;
    }

    .class-content h2 {
        font-size: 48px;

        line-height: 0.9;

        letter-spacing: -2px;
    }

    .class-details {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    /* ========================================
       COACHES
    ======================================== */

    .coach-image {
        height: 300px;
    }

    .coach-content {
        padding: 45px 6%;
    }

    .coach-content h2 {
        font-size: 48px;

        line-height: 0.9;

        letter-spacing: -2px;
    }

    .coach-details {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    /* ========================================
       SCHEDULE
    ======================================== */

    .schedule-hero {
        min-height: 60svh;
    }

    .schedule-hero-content {
        width: 90%;
    }

    .schedule-hero h1 {
        font-size: clamp(50px, 16vw, 80px);

        line-height: 0.85;

        letter-spacing: -2px;
    }

    .schedule-section {
        padding: 70px 0;
    }

    .schedule-container {
        width: 90%;
    }

    .schedule-heading {
        gap: 25px;
    }

    .schedule-heading h2 {
        font-size: 45px;

        line-height: 0.9;

        letter-spacing: -2px;
    }

    .schedule-description {
        font-size: 14px;

        line-height: 1.6;
    }

    .schedule-grid {
        gap: 15px;
    }

    .schedule-day {
        padding: 25px 20px;
    }

    .day-header {
        margin-bottom: 20px;
    }

    .day-header h3 {
        font-size: 22px;
    }

    .class-item {
        padding: 18px 0;

        gap: 15px;
    }

    .class-item h4 {
        font-size: 16px;
    }

    .class-item time {
        font-size: 12px;

        white-space: nowrap;
    }


    /* ========================================
       MEMBERSHIP
    ======================================== */

    .membership-hero {
        min-height: 60svh;
    }

    .membership-hero h1 {
        font-size: clamp(50px, 16vw, 80px);

        line-height: 0.85;

        letter-spacing: -2px;
    }

    .membership-section {
        padding: 70px 0;
    }

    .membership-container {
        width: 90%;
    }

    .membership-heading h2 {
        font-size: 45px;

        line-height: 0.9;

        letter-spacing: -2px;
    }

    .membership-card {
        padding: 35px 25px;
    }

    .membership-price {
        font-size: 55px;
    }

    .membership-card .btn {
        width: 100%;
    }


    /* ========================================
       CTA
    ======================================== */

    .schedule-cta,
    .membership-cta {
        padding-top: 70px;
        padding-bottom: 70px;

        text-align: center;
    }

    .schedule-cta h2,
    .membership-cta h2 {
        font-size: clamp(42px, 12vw, 65px);

        line-height: 0.9;

        letter-spacing: -2px;
    }

    .schedule-cta .btn,
    .membership-cta .btn {
        width: 100%;
    }


    /* ========================================
       FOOTER
    ======================================== */

    .footer-main {
        grid-template-columns: 1fr;

        gap: 40px;

        padding: 60px 0;
    }

    .footer-brand img {
        width: 130px;
    }

    .footer-brand p {
        margin-top: 20px;

        font-size: 11px;

        letter-spacing: 2px;
    }

    .footer-contact {
        gap: 25px;
    }

    .footer-contact-item a,
    .footer-contact-item p {
        font-size: 14px;
    }

    .footer-links {
        gap: 10px;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 10px;

        padding: 20px 0;
    }

}


/* ========================================
   VERY SMALL PHONES
   400px AND BELOW
======================================== */

@media (max-width: 400px) {

    .logo {
        width: 95px;
    }

    .hero-content {
        padding-top: 90px;
    }

    .hero h1 {
        font-size: 46px;
    }

    .hero-description {
        font-size: 14px;
    }

    .class-content h2,
    .coach-content h2 {
        font-size: 42px;
    }

    .schedule-heading h2,
    .membership-heading h2 {
        font-size: 40px;
    }

    .schedule-day {
        padding: 20px 15px;
    }

    .class-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .class-item time {
        white-space: normal;
    }

    .membership-card {
        padding: 30px 20px;
    }

    /* ========================================
   MOBILE LARGE HEADINGS
======================================== */

@media (max-width: 600px) {

    .hero h1,
    .membership-hero h1,
    .schedule-hero h1 {
        width: 100%;
        max-width: 100%;

        font-size: clamp(42px, 14vw, 72px);

        line-height: 0.85;
        letter-spacing: -1px;

        overflow-wrap: break-word;
    }

}
@media (max-width: 600px) {

    .hero h1 {
        font-size: 11vw;
        line-height: 0.85;
        letter-spacing: -1px;
    }

    .hero h1 span {
        display: block;
        white-space: nowrap;
    }

}
    

}