/* ----------------------------------------------------
   DARK THEME — GLOBAL
---------------------------------------------------- */

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: #121212;
    /* deep dark */
    color: #e4e4e4;
    /* light gray text */
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* ----------------------------------------------------
   NAVIGATION — DARK STYLE
---------------------------------------------------- */

.lp-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 22px 0;
    background: #1a1a1a;
    /* dark gray */
    border-bottom: 1px solid #333;
    z-index: 1000;
    transition: padding 0.25s ease, background 0.25s ease;
}

.lp-nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Branding */
.lp-nav-brand {
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    text-decoration: none;
}

/* Right-side links */
/* Style only actual links */
.lp-nav-links a {
    margin-left: 25px;
    text-decoration: none;
    color: #cccccc;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-weight: 400;
}

/* Style the Lessons trigger separately */
.lp-nav-link {
    margin-left: 25px;
    text-decoration: none;
    color: #cccccc;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    cursor: pointer;
    font-weight: 400;
}

.lp-nav-links a:hover,
.lp-nav-link:hover {
    color: #ffffff;
}

/* Content wrapper */
.lp-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 70px 25px 0 25px;
    /* navbar height */
}

/* Navbar when scrolled */
.lp-navbar.shrink {
    padding: 10px 0;
    /* smaller padding */
    background: #111;
    /* slightly darker (optional) */
    transition: padding 0.25s ease, background 0.25s ease;
}


/* ----------------------------------------------------
   HOMEPAGE CONTENT
---------------------------------------------------- */

.homepage-content {
    margin-top: 30px;
}

.homepage-image {
    max-width: 600px;
    width: 100%;
    margin-top: 20px;
    border-radius: 6px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

/* Side-by-side image row */
.image-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* ----------------------------------------------------
   PAGE HEADERS
---------------------------------------------------- */

.page-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding-bottom: 8px;
    border-bottom: 2px solid #333;
    color: #ffffff;
}

.page-description {
    font-size: 1.1rem;
    color: #cfcfcf;
    margin-bottom: 30px;
}

/* ----------------------------------------------------
   CONTACT FORM — DARK STYLE
---------------------------------------------------- */

.contact-form {
    max-width: 600px;
    margin-top: 20px;
}

.contact-form label {
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
    color: #e4e4e4;
}

.contact-input,
.contact-textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 18px;
    border: 1px solid #333;
    border-radius: 5px;
    font-size: 1rem;
    background: #1f1f1f;
    color: #e4e4e4;
}

.contact-input:focus,
.contact-textarea:focus {
    outline: none;
    border-color: #d35400;
    box-shadow: 0 0 4px rgba(211, 84, 0, 0.5);
}

.btn-submit {
    background-color: #d35400;
    color: white;
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    background-color: #e67e22;
}


/* ----------------------------------------------------
   SOCIAL ICONS — DARK STYLE
---------------------------------------------------- */

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

.social-btn {
    background: #1f1f1f;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
    transition: 0.25s ease;
    border: 1px solid #333;
}

.social-btn img {
    width: 28px;
    height: 28px;
    filter: invert(85%);
    /* make icons white on dark bg */
}

.social-btn:hover {
    transform: translateY(-4px);
    background: #2a2a2a;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.6);
}

/* ----------------------------------------------------
   FOOTER — Dark Theme
---------------------------------------------------- */

.site-footer {
    background: #1a1a1a;
    padding: 40px 0;
    margin-top: 60px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-inner p {
    color: #bbbbbb;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin: 0;
}

/* ----------------------------------------------------
   GEAR LOGOS — Dark theme styling
---------------------------------------------------- */

.gear-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.gear-logo {
    width: 180px;
    /* Adjust size here */
    height: auto;
    opacity: 0.9;
    /* Slight fade (looks more professional) */
    filter: invert(100%);
    /* SVG → white on dark theme */
    transition: 0.25s ease;
}

.gear-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* ----------------------------------------------------
   INSTAGRAM VIDEO EMBED — Full-width, beautiful
---------------------------------------------------- */

.video-section {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.instagram-embed-container {
    width: 100%;
    max-width: 600px;
    /* Controls max video width */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    background: #000;
}

/* Instagram iframe fix */
.instagram-embed-container iframe {
    width: 100%;
    height: 550px;
    /* Tall enough for full reel visibility */
    border: none;
    overflow: hidden;
}

/* For Reels, square, horizontal… ensure all looks good */
@media (max-width: 600px) {
    .instagram-embed-container iframe {
        height: 500px;
    }
}

/* ----------------------------------------------------
   CTA BUTTONS (Weekly Lessons, Session Work, Member)
---------------------------------------------------- */

.cta-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin: 30px 0 10px;
}

.btn-cta {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    background: #00AB66;
    border-color: #00AB66;
    /* vibrant modern green */
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid #1DB954;
    transition: 0.2s ease-in-out;
    box-shadow: none;
}

.btn-cta:hover {
    background: #00c273;
    border-color: #00c273;
    transform: translateY(-2px);
}

.btn-cta:active {
    background: #178F42;
    transform: translateY(0);
}

.btn-cta:visited {
    color: #ffffff;
}
/* ----------------------------------------------------
   HERO HEADER — FULL-WIDTH DRAMATIC BANNER
---------------------------------------------------- */

.hero-header {
    position: relative;
    width: 100%;
    height: 500px;
    /* adjust height here */
    overflow: hidden;
}

.hero-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* THIS crops the image cleanly */
    object-position: center 35%;
    /* adjust to move crop up/down */
    filter: grayscale(100%) brightness(95%);
    /* darken for text readability */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.4),
            rgba(0, 0, 0, 0.75));
}

.hero-text {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
}

.hero-text h1 {
    font-size: 2.8rem;
    margin: 0;
}

.hero-text p {
    margin-top: 10px;
    font-size: 1.2rem;
    opacity: 0.9;
}

.hero-name {
    color: #00AB66;
    font-size: 3rem;
    text-transform: uppercase;
}

.hero-img {
    filter: grayscale(100%);
}

/* ----------------------------------------------------
   SLEEK SECTION HEADERS
---------------------------------------------------- */

/* ----------------------------------------------------
   SLEEK SECTION HEADERS — fade in on scroll
---------------------------------------------------- */

.section-header {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #e4e4e4;
    margin: 50px 0 20px;
    position: relative;

    /* Start invisible */
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

/* Thin line under header */
.section-header::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: #007700;
    margin: 12px auto 0;
    opacity: 0.85;
    border-radius: 2px;
}

/* When visible */
.section-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-on-scroll {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Prevent navbar from covering the first hero header */
.hero-header:first-of-type {
    margin-top: 110px;
    /* equal to navbar height */
}

.brand-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
}

.brand-logo {
    width: 140px;
    
    /* white for dark theme */
    opacity: 0.9;
}

/* ============================================
   MOBILE RESPONSIVE FIXES
   ============================================ */

@media (max-width: 900px) {

    /* Navbar spacing */
    .lp-navbar {
        padding: 14px 0;
    }

    .lp-nav-inner {
        padding: 0 16px;
    }

    .lp-nav-brand {
        font-size: 1.2rem;
    }

    .lp-nav-links a,
    .lp-nav-link {
        margin-left: 12px;
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    /* Content wrapper */
    .lp-page {
        padding: 90px 18px 0 18px;
        /* more comfortable on mobile */
    }

    /* Hero Section */
    .hero-header {
        height: 360px;
    }

    .hero-name {
        font-size: 2.2rem;
    }

    /* Brand logos under hero */
    .brand-logos {
        flex-wrap: wrap;
        padding: 0 20px;
        gap: 22px;
        margin-top: 20px;
    }

    .brand-logo {
        width: 110px;
    }

    /* CTA buttons: stack vertically */
    .cta-row {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        margin-top: 24px;
    }

    .btn-cta {
        width: 90%;
        max-width: 300px;
        padding: 14px 18px;
        font-size: 1rem;
        text-align: center;
    }

    /* Page headers */
    .page-title {
        text-align: center;
        font-size: 1.6rem;
    }

    .page-description {
        text-align: center;
        font-size: 1rem;
    }

    /* Contact form full width */
    .contact-form {
        width: 100%;
        margin-top: 15px;
    }

    /* Instagram embed */
    .instagram-embed-container iframe {
        height: 420px;
    }
}

@media (max-width: 480px) {
    .hero-header {
        height: 300px;
    }

    .hero-name {
        font-size: 1.8rem;
    }

    .lp-nav-links {
        gap: 10px;
    }

    .lp-nav-links a,
    .lp-nav-link {
        margin-left: 0;
        font-size: 0.75rem;
    }

    .brand-logo {
        width: 90px;
    }

    .instagram-embed-container iframe {
        height: 350px;
    }
}
/* ------------------------------------------
   MOBILE NAV: HAMBURGER MENU
------------------------------------------- */

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
}

/* Mobile dropdown hidden by default */
.lp-nav-links {
    display: flex;
    align-items: center;
}

/* OVERRIDE on mobile */
@media (max-width: 900px) {

    .hamburger {
        display: flex;
    }

    .lp-nav-links {
        position: absolute;
        top: 65px;
        right: 0;
        background: #1a1a1a;
        width: 100%;
        flex-direction: column;
        text-align: center;
        padding: 12px 0;
        border-bottom: 1px solid #333;

        display: none;
        /* hidden until opened */
    }

    .lp-nav-links.open {
        display: flex;
    }

    .lp-nav-links a {
        margin: 12px 0;
        font-size: 1rem;
    }

    /* Fix scrolling on mobile */
    body {
        overflow-y: auto !important;
    }

    .hero-header:first-of-type {
        margin-top: 90px;
        /* smaller to avoid clipping content */
    }
}

/* ----------------------------------------------------
   EMAIL SUCCESS PAGE — CLEAN CENTERED STYLE
---------------------------------------------------- */

.success-container {
    max-width: 600px;
    margin: 120px auto 80px;
    text-align: center;
    padding: 40px 30px;
    background: #1a1a1a;
    border-radius: 10px;
    border: 1px solid #333;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.success-title {
    font-size: 1.8rem;
    color: #00AB66;
    /* green brand color */
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.success-text {
    font-size: 1.1rem;
    color: #d0d0d0;
    margin-bottom: 30px;
}

.success-home {
    display: inline-block;
    margin-top: 10px;
}

/* --- FORM WRAPPER --- */
.form-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    width: 90%;
}

/* --- LABELS --- */
.form-container label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

/* --- INPUT FIELDS --- */
.form-container input,
.form-container textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box;
    /* prevents overflow */
}

/* --- TEXTAREA --- */
.form-container textarea {
    min-height: 140px;
    resize: vertical;
}

/* --- BUTTON --- */
.form-container button {
    background: #2c2c2c;
    color: #fff;
    border: none;
    padding: 14px 20px;
    font-size: 1rem;
    border-radius: 6px;
    width: 100%;
    margin-top: 12px;
    cursor: pointer;
}

.form-container button:hover {
    background: #444;
}

/* --- MOBILE TWEAKS --- */
@media (max-width: 600px) {
    .form-container {
        padding: 15px;
        width: 95%;
    }

    .form-container input,
    .form-container textarea {
        font-size: 1rem;
    }

    .form-container button {
        font-size: 1.05rem;
        padding: 15px;
    }
}