/* ============================================
   F.A.S.T. Guitar Academy — Custom Styles
   ============================================ */

:root {
    --navy: #0A1B4B;
    --teal: #00B4A6;
    --gold: #F5A623;
    --light: #F4F6FA;
    --white: #FFFFFF;
    --text: #2C3E6B;
    --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
    --max-w: 1100px;
    --radius-card: 8px;
    --radius-btn: 6px;
}

.fast-page * { box-sizing: border-box; margin: 0; padding: 0; }
.fast-page { font-family: var(--font); color: var(--text); line-height: 1.6; overflow-x: hidden; }
.fast-page img { max-width: 100%; height: auto; display: block; }
.fast-page a { text-decoration: none; }

.fast-container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

.fast-btn {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 16px 36px;
    border-radius: var(--radius-btn);
    border: none;
    cursor: pointer;
    transition: filter 0.2s ease, transform 0.15s ease;
}
.fast-btn:hover { filter: brightness(1.1); transform: translateY(-1px); }
.fast-btn:active { transform: translateY(0); }

.fast-btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--white);
    font-family: var(--font);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: var(--radius-btn);
    border: 2px solid var(--gold);
    cursor: pointer;
    transition: all 0.2s ease;
}
.fast-btn-outline:hover { background: var(--gold); color: var(--navy); }

.fast-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--navy);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 12px 0;
}
.fast-nav .fast-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.fast-nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #FFFFFF;
    text-decoration: none;
}
.fast-nav-logo img { height: 72px; width: auto; }
.fast-nav-brand strong {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
}
.fast-nav-brand span {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.02em;
}
.fast-nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.fast-nav-links a { color: rgba(255,255,255,0.85); font-size: 0.95rem; font-weight: 500; transition: color 0.2s; }
.fast-nav-links a:hover { color: var(--white); }
.fast-nav-cta { margin-left: 8px; }
.fast-nav-cta .fast-btn { padding: 10px 24px; font-size: 0.9rem; }

.fast-nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.fast-nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: 0.3s; }

@media (max-width: 768px) {
    .fast-nav-toggle { display: block; }
    .fast-nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--navy);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-top: 1px solid rgba(255,255,255,0.08);
    }
    .fast-nav-links.open { display: flex; }
    .fast-nav-brand strong { font-size: 0.8rem; }
    .fast-nav-brand span { font-size: 0.6rem; }
    .fast-nav-logo img { height: 44px; }
}

/* ---- HERO ---- */
.fast-hero {
    position: relative;
    min-height: 600px;
    padding: 120px 0 100px;
    text-align: center;
    color: #FFFFFF;
    overflow: hidden;
    background: #0A1B4B;
}
.fast-hero-bg {
    position: absolute;
    top: -15%;
    left: -15%;
    right: -15%;
    bottom: -15%;
    background-image: url('/wp-content/uploads/2025/05/g557323f379d245c19263266c85f70bf7799ac9a529e92db59b1fa60c15cb0933e3fe67992ba5fad16a7ad4012fba2c3b135212f5f093be0c0e358543f72491f4_1280-6683101.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
    animation: kenBurns 20s ease-in-out infinite alternate;
    will-change: transform;
    transform-origin: center center;
}
.fast-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(10,27,75,0.72) 0%, rgba(10,27,75,0.85) 100%);
    z-index: 1;
}
.fast-hero .fast-container {
    position: relative;
    z-index: 2;
}
.fast-hero h1,
.fast-hero .fast-container h1,
.entry-content .fast-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #FFFFFF !important;
}
.fast-hero h1 span,
.fast-hero .fast-container h1 span { color: #F5A623 !important; }
.fast-hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85) !important;
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}
.fast-hero .fast-btn { font-size: 1.1rem; padding: 18px 40px; }
.fast-hero-proof {
    margin-top: 32px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6) !important;
}
.fast-hero-proof strong { color: #00B4A6 !important; }
/* Remove old ::before/::after approach */
.fast-hero::before, .fast-hero::after { display: none !important; }
@keyframes kenBurns {
    0%   { transform: scale(1.0) translate(0, 0); }
    100% { transform: scale(1.15) translate(-3%, -2%); }
}
@media (max-width: 768px) {
    .fast-hero { padding: 80px 0 64px; }
    .fast-hero-bg { top: -15%; left: -15%; right: -15%; bottom: -15%; }
}

/* ---- TRUST BAR ---- */
.fast-trust {
    background: var(--white);
    padding: 32px 0;
    border-bottom: 1px solid #e8ecf4;
}
.fast-trust .fast-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.fast-trust-item {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    opacity: 0.65;
    white-space: nowrap;
}

.fast-section { padding: 80px 0; }
.fast-section-light { background: var(--light); }
.fast-section-white { background: var(--white); }
.fast-section-navy { background: var(--navy); color: var(--white); }

.fast-section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    line-height: 1.25;
}

.fast-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
@media (max-width: 768px) {
    .fast-grid-3 { grid-template-columns: 1fr; gap: 24px; }
}
.fast-card {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 32px;
    box-shadow: 0 2px 12px rgba(10,27,75,0.06);
    color: #2C3E6B;
}
.fast-card-icon { font-size: 2rem; margin-bottom: 16px; }
.fast-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; color: #0A1B4B !important; }
.fast-card p { font-size: 0.95rem; line-height: 1.6; color: #2C3E6B !important; }

.fast-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .fast-split { grid-template-columns: 1fr; gap: 32px; }
}
.fast-split img {
    border-radius: var(--radius-card);
    width: 100%;
    height: auto;
    display: block;
}
.fast-split h2 { font-size: 1.8rem; font-weight: 700; margin-bottom: 20px; color: var(--navy); }
.fast-split p { font-size: 1rem; line-height: 1.7; margin-bottom: 16px; }

.fast-testimonials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
@media (max-width: 768px) {
    .fast-testimonials { grid-template-columns: 1fr; }
}
.fast-testimonial {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 32px;
    box-shadow: 0 2px 12px rgba(10,27,75,0.06);
    color: #2C3E6B;
}
.fast-testimonial p { font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; color: #2C3E6B !important; }
.fast-testimonial-author { display: flex; align-items: center; gap: 12px; }
.fast-testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.fast-testimonial-author strong { display: block; font-size: 0.95rem; color: #0A1B4B !important; }
.fast-testimonial-author span { font-size: 0.85rem; color: #2C3E6B !important; opacity: 0.7; }

.fast-section-white .fast-section-title { color: #0A1B4B !important; }
.fast-section-light .fast-section-title { color: #0A1B4B !important; }

.fast-pricing {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 48px 40px;
    box-shadow: 0 4px 24px rgba(10,27,75,0.1);
}
.fast-pricing .price { font-size: 3rem; font-weight: 700; color: var(--navy); margin: 24px 0 8px; }
.fast-pricing .price-note { font-size: 0.9rem; color: var(--text); opacity: 0.7; margin-bottom: 24px; }
.fast-pricing ul { list-style: none; text-align: left; margin-bottom: 32px; }
.fast-pricing ul li { padding: 8px 0; font-size: 0.95rem; border-bottom: 1px solid #f0f2f8; color: #2C3E6B !important; }
.fast-pricing ul li::before { content: "✅ "; }

.fast-faq-item { border-bottom: 1px solid #e8ecf4; padding: 20px 0; }
.fast-faq-q {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.fast-faq-q::after { content: "+"; font-size: 1.4rem; font-weight: 400; transition: transform 0.2s; }
.fast-faq-item.open .fast-faq-q::after { content: "−"; }
.fast-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text);
}
.fast-faq-item.open .fast-faq-a { max-height: 500px; padding-top: 12px; }

.fast-guarantee {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 48px 40px;
    background: var(--white);
    border-radius: var(--radius-card);
    border: 2px solid var(--teal);
}
.fast-guarantee h3 { font-size: 1.5rem; margin-bottom: 16px; color: var(--navy); }
.fast-guarantee p { font-size: 1rem; line-height: 1.7; }

.fast-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.6);
    padding: 48px 0 32px;
    font-size: 0.85rem;
}
.fast-footer .fast-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.fast-footer-links { display: flex; gap: 24px; list-style: none; }
.fast-footer-links a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.fast-footer-links a:hover { color: var(--white); }
.fast-footer-eco { color: var(--teal); font-size: 0.8rem; }

@media (max-width: 768px) {
    .fast-section { padding: 48px 0; }
    .fast-hero { padding: 80px 0 64px; }
    .fast-pricing { padding: 32px 24px; }
}

/* ---- MOBILE TEXT VISIBILITY FIXES ---- */
@media (max-width: 768px) {
    .fast-pricing { padding: 32px 20px; }
    .fast-pricing .price { font-size: 2.4rem; color: #0A1B4B !important; }
    .fast-pricing ul li { color: #2C3E6B !important; font-size: 0.9rem; padding: 10px 0; }
    .fast-pricing h3 { color: #0A1B4B !important; font-size: 1.2rem; }
    .fast-pricing .price-note { color: #2C3E6B !important; }
    .fast-card, .fast-card p { color: #2C3E6B !important; }
    .fast-card h3 { color: #0A1B4B !important; }
    .fast-testimonial, .fast-testimonial p { color: #2C3E6B !important; }
    .fast-testimonial-author strong { color: #0A1B4B !important; }
    .fast-testimonial-author span { color: #2C3E6B !important; opacity: 0.7; }
    .fast-guarantee h3 { color: #0A1B4B !important; }
    .fast-guarantee p { color: #2C3E6B !important; }
    .fast-faq-q { color: #0A1B4B !important; }
    .fast-faq-a { color: #2C3E6B !important; }
    .fast-section-title { color: #0A1B4B !important; }
    .fast-section-navy .fast-section-title,
    .fast-section-navy h2,
    .fast-section-navy p { color: #FFFFFF !important; }
    .fast-section-navy .fast-pricing *:not(.fast-btn) { color: #2C3E6B !important; }
    .fast-section-navy .fast-btn { color: #0A1B4B !important; }
}

/* ---- SCROLL OFFSET for sticky header ---- */
#about, [id] {
    scroll-margin-top: 110px;
}
