/* ===========================
   TEXAS BULLDOGS - STYLES.CSS
   Brand: Purple (#610C9F) + Orange (#FA6406) + White
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --purple: #610C9F;
    --purple-dark: #430870;
    --purple-light: #7B1FC4;
    --orange: #FA6406;
    --orange-dark: #D95200;
    --white: #FFFFFF;
    --off-white: #F8F5FF;
    --gray-light: #F0EBF8;
    --gray: #888;
    --dark: #0D0D1A;
    --nav-height: 90px;
}

html {
    scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

a,
button,
.btn-primary,
.btn-secondary,
.btn-secondary-white,
.social-link,
.nav-cta,
.mobile-cta,
.banner-link {
    cursor: pointer;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 8px;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(250, 100, 6, 0.3);
}

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(250, 100, 6, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--dark);
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 34px;
    border-radius: 8px;
    border: 2px solid rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--purple);
    background: rgba(97, 12, 159, 0.05);
    color: var(--purple);
    transform: translateY(-2px);
}

.btn-secondary-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 34px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.btn-secondary-white:hover {
    background: var(--white);
    color: var(--purple-dark);
    border-color: var(--white);
    transform: translateY(-2px);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 13, 26, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--orange);
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(13, 13, 26, 0.98);
    backdrop-filter: blur(12px);
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo img {
    height: 70px;
    width: auto;
    transition: height 0.3s ease;
}

.navbar.scrolled .nav-logo img {
    height: 54px;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.nav-logo-text span:first-child {
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-logo-text span:last-child {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-links a {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 4px;
    transition: all 0.2s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

.nav-links a.active {
    color: var(--white);
}

.nav-cta {
    background: var(--orange) !important;
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    transition: background 0.2s ease, transform 0.2s ease !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--orange-dark) !important;
    transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: #0D0D1A;
    z-index: 999;
    padding: 20px 0;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.35s ease;
    pointer-events: none;
}

.mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.2s ease;
}

.mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
}

.mobile-menu .mobile-cta {
    margin: 16px 40px 0;
    background: var(--orange);
    text-align: center;
    border-radius: 6px;
    border-bottom: none !important;
}

/* ===== HERO BANNER SECTION ===== */
.hero-banner-section {
    padding-top: var(--nav-height);
    background: var(--dark);
    line-height: 0;
}

.banner-link {
    display: block;
    width: 100%;
}

.hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== HERO SECTION (LEGACY REMOVED) ===== */

/* ===== PAGE HEADER (inner pages) ===== */
.page-header {
    padding-top: var(--nav-height);
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 100%);
    padding-bottom: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/Untitled design (7) (1).png') center/cover;
    opacity: 0.1;
}

.page-header-content {
    position: relative;
    z-index: 1;
    padding-top: 50px;
}

.page-header h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    margin-bottom: 12px;
}

.page-header h1 span {
    color: var(--orange);
}

.page-header p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
    color: var(--orange);
    transition: opacity 0.2s;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

/* ===== SECTIONS ===== */
.section {
    padding: 90px 40px;
}

.section-sm {
    padding: 60px 40px;
}

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

.section-label {
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.1;
}

.section-title span {
    color: var(--purple);
}

.section-title.white {
    color: var(--white);
}

.section-title.white span {
    color: var(--orange);
}

.section-desc {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    max-width: 650px;
}

.section-desc.white {
    color: rgba(255, 255, 255, 0.8);
}

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

.text-center .section-desc {
    margin: 0 auto;
}

/* ===== WHY CHOOSE US ===== */
.why-section {
    background: var(--off-white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.why-card {
    background: var(--white);
    border-radius: 16px;
    padding: 36px 30px;
    box-shadow: 0 4px 24px rgba(97, 12, 159, 0.08);
    border: 1px solid rgba(97, 12, 159, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--purple), var(--orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(97, 12, 159, 0.15);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-icon svg,
.why-icon img {
    width: 42px;
    height: 42px;
}

.why-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.65;
}

/* ===== SELECT BASEBALL SECTION ===== */
.select-section {
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 100%);
    position: relative;
    overflow: hidden;
}

.select-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/Untitled design (7) (1).png') center/cover;
    opacity: 0.08;
}

.select-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.select-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
}

.select-image img {
    width: 100%;
    height: 420px;
    object-fit: contain;
    padding: 20px;
}

.select-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid rgba(250, 100, 6, 0.4);
    border-radius: 16px;
    pointer-events: none;
}

.select-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(250, 100, 6, 0.2);
    border: 1px solid rgba(250, 100, 6, 0.4);
    border-radius: 100px;
    padding: 6px 16px;
    margin-bottom: 20px;
}

.select-badge span {
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--orange);
    text-transform: uppercase;
}

.select-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* ===== CATCHING CAMP SECTION ===== */
.camp-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

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

.camp-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.camp-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* ===== COACHES SECTION ===== */
.coaches-section {
    background: var(--white);
}

.coaches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.coach-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(97, 12, 159, 0.1);
    transition: all 0.3s ease;
}

.coach-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(97, 12, 159, 0.15);
}

.coach-photo {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: top;
    background: var(--gray-light);
}

.coach-info {
    padding: 20px 22px;
}

.coach-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.coach-role {
    font-size: 0.85rem;
    color: var(--orange);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.coach-bio {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.6;
}

/* ===== PROGRAMS SECTION ===== */
.programs-section {
    background: var(--off-white);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.program-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(97, 12, 159, 0.15);
}

.program-header {
    background: linear-gradient(135deg, var(--purple-dark), var(--purple));
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.program-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: rgba(250, 100, 6, 0.15);
    border-radius: 50%;
}

.program-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.program-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.program-header h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 6px;
}

.program-header p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', sans-serif;
    text-transform: none;
    letter-spacing: 0;
}

.program-body {
    padding: 24px 28px;
}

.program-body ul {
    list-style: none;
    margin-bottom: 24px;
}

.program-body ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: #555;
    padding: 6px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.program-body ul li::before {
    content: '✓';
    color: var(--orange);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: linear-gradient(135deg, var(--orange-dark), var(--orange));
    padding: 60px 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.stat-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.contact-info h2 span {
    color: var(--purple);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--white);
}

.contact-item-text h4 {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    color: var(--orange);
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-item-text p,
.contact-item-text a {
    font-size: 1rem;
    color: var(--dark);
    line-height: 1.5;
    transition: color 0.2s;
}

.contact-item-text a:hover {
    color: var(--purple);
}

/* Contact Form */
.contact-form {
    background: var(--off-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 30px rgba(97, 12, 159, 0.08);
}

.contact-form h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid rgba(97, 12, 159, 0.15);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--dark);
    background: var(--white);
    transition: border-color 0.2s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--purple);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ===== MAP SECTION ===== */
.map-section {
    background: var(--gray-light);
    padding: 0;
}

.map-section iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    padding: 70px 40px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand img {
    height: 80px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--orange);
    display: inline-block;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: var(--orange);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    fill: var(--orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item a,
.footer-contact-item span {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    transition: color 0.2s;
}

.footer-contact-item a:hover {
    color: var(--orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
    color: var(--orange);
    transition: opacity 0.2s;
}

.footer-bottom a:hover {
    opacity: 0.8;
}

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

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: var(--orange);
    transform: translateY(-2px);
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
}

/* ===== ABOUT PAGE ===== */
.about-story {
    background: var(--white);
}

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

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    padding: 30px;
    background: linear-gradient(135deg, var(--purple-dark), var(--purple));
}

.about-image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--orange);
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 8px;
}

.about-text p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 30px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
}

.value-item::before {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--orange);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===== REGISTER PAGE ===== */
.register-section {
    background: var(--off-white);
}

.register-card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 8px 40px rgba(97, 12, 159, 0.1);
    max-width: 700px;
    margin: 0 auto;
}

.register-card h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.register-card p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.register-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.register-option {
    border: 2px solid rgba(97, 12, 159, 0.15);
    border-radius: 12px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.register-option:hover,
.register-option.selected {
    border-color: var(--purple);
    background: rgba(97, 12, 159, 0.04);
}

.register-option h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 6px;
}

.register-option p {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
}

/* ===== CTA SECTION (About Page) ===== */
.about-cta-section {
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--dark) 100%);
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
}

.about-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/tb team.svg') center/cover;
    opacity: 0.05;
}

.cta-card {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 60px 40px;
    border-radius: 24px;
    border: 1px solid rgba(250, 100, 6, 0.2);
    backdrop-filter: blur(10px);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 34px;
    border-radius: 6px;
    border: 2px solid var(--white);
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-secondary-white:hover {
    background: var(--white);
    color: var(--purple-dark);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cta-card {
        padding: 40px 20px;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary-white {
        width: 100%;
        justify-content: center;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

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

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(0.8);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== RESPONSIVE ===== */

/* Body scroll lock when mobile menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
}

/* ---- TABLET (1024px) ---- */
@media (max-width: 1024px) {

    .select-inner,
    .camp-inner,
    .contact-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .select-image img {
        height: auto;
        max-height: 360px;
        object-fit: contain;
    }

    .camp-image img {
        height: auto;
        max-height: 360px;
        object-fit: cover;
    }

    .about-image img {
        height: auto;
        max-height: 400px;
    }

    .section {
        padding: 70px 30px;
    }
}

/* ---- TABLET NAVIGATION (1100px) ---- */
@media (max-width: 1100px) {
    :root {
        --nav-height: 70px;
    }

    /* -- Navigation -- */
    .navbar {
        padding: 0 16px;
        height: var(--nav-height);
    }

    .nav-logo img {
        height: 52px;
    }

    .navbar.scrolled .nav-logo img {
        height: 44px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
        padding: 12px;
        /* 48px total touch target */
        margin-right: -8px;
    }

    .hamburger span {
        width: 24px;
        height: 2.5px;
    }

    /* -- Mobile Menu -- */
    .mobile-menu {
        display: block;
        top: var(--nav-height);
        /* Occupy full screen on mobile, but on tablet we can keep it as is or limit it */
        bottom: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 12px 0 100px;
    }

    .mobile-menu a {
        font-size: 16px;
        padding: 16px 24px;
        min-height: 52px;
        display: flex;
        align-items: center;
        letter-spacing: 1.5px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .mobile-menu .mobile-cta {
        margin: 20px 20px 0;
        padding: 16px 24px;
        justify-content: center;
        font-size: 16px;
        border-radius: 10px;
        min-height: 52px;
    }
}

/* ---- MOBILE (768px) ---- */
@media (max-width: 768px) {
    /* -- Page Header (inner pages) -- */
    .page-header {
        padding-bottom: 40px;
    }

    .page-header-content {
        padding: 30px 20px 0;
    }

    .page-header h1 {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 8px;
    }

    .page-header p {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    /* -- Sections -- */
    .section {
        padding: 50px 20px;
    }

    .section-sm {
        padding: 36px 20px;
    }

    .section-label {
        font-size: 11px;
        letter-spacing: 3px;
        margin-bottom: 10px;
    }

    .section-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
        line-height: 1.15;
        margin-bottom: 14px;
    }

    .section-desc {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    /* -- Buttons (conversion-optimized touch targets) -- */
    .btn-primary {
        padding: 16px 28px;
        font-size: 14px;
        border-radius: 10px;
        min-height: 52px;
        letter-spacing: 1.2px;
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .btn-secondary,
    .btn-secondary-white {
        padding: 14px 28px;
        font-size: 14px;
        border-radius: 10px;
        min-height: 52px;
        letter-spacing: 1.2px;
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary-white {
        width: 100%;
        justify-content: center;
    }

    .cta-buttons-inline {
        flex-direction: column !important;
        gap: 12px !important;
    }

    .cta-buttons-inline .btn-primary,
    .cta-buttons-inline .btn-secondary-white {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    /* -- Hero Banner -- */
    .hero-banner-section {
        line-height: 0;
    }

    .hero-banner-img {
        width: 100%;
        height: auto;
    }

    /* -- Why Choose Us Grid -- */
    .why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 36px;
    }

    .why-card {
        padding: 28px 24px;
        border-radius: 14px;
    }

    .why-icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        margin-bottom: 16px;
    }

    .why-icon svg,
    .why-icon img {
        width: 36px;
        height: 36px;
    }

    .why-card h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .why-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* -- Select Baseball Section -- */
    .select-inner {
        gap: 30px;
    }

    .select-image {
        border-radius: 14px;
    }

    .select-image img {
        height: auto;
        max-height: 280px;
        padding: 16px;
        object-fit: contain;
    }

    .select-badge {
        margin-bottom: 16px;
    }

    /* -- Catching Camp Section -- */
    .camp-inner {
        gap: 30px;
    }

    .camp-image {
        border-radius: 14px;
        order: -1;
    }

    .camp-image img {
        width: 100%;
        height: 100%;
        min-height: 350px;
        max-height: 500px;
        object-fit: cover;
        object-position: center;
        border-radius: 14px;
    }

    /* -- Stats Section -- */
    .stats-section {
        padding: 40px 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .stat-item p {
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }

    /* -- Coaches Grid -- */
    .coaches-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .coach-card {
        border-radius: 14px;
    }

    .coach-photo {
        height: 380px;
        /* Much larger height to avoid "ruined" look */
        object-fit: cover;
        object-position: top center;
    }

    .coach-info {
        padding: 18px 20px;
    }

    .coach-info h3 {
        font-size: 1.05rem;
    }

    .coach-role {
        font-size: 0.8rem;
        letter-spacing: 0.8px;
        margin-bottom: 8px;
    }

    .coach-bio {
        font-size: 0.85rem;
        line-height: 1.55;
    }

    /* -- Programs Grid -- */
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 36px;
    }

    .program-card {
        border-radius: 14px;
    }

    .program-header {
        padding: 24px;
    }

    .program-body {
        padding: 20px 24px;
    }

    /* -- About Page -- */
    .about-grid {
        gap: 30px;
    }

    .about-image {
        border-radius: 14px;
    }

    .about-image img {
        height: auto;
        max-height: 300px;
        padding: 20px;
    }

    .about-text p {
        font-size: 0.93rem;
        line-height: 1.7;
        margin-bottom: 16px;
    }

    .about-values {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 24px;
    }

    .value-item {
        font-size: 0.88rem;
        padding: 10px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    /* -- Contact Section -- */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-item {
        margin-bottom: 20px;
    }

    .contact-icon {
        width: 44px;
        height: 44px;
        border-radius: 10px;
    }

    .contact-icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-item-text h4 {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .contact-item-text p,
    .contact-item-text a {
        font-size: 0.93rem;
    }

    /* -- Contact Form -- */
    .contact-form {
        padding: 28px 20px;
        border-radius: 16px;
    }

    .contact-form h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group {
        margin-bottom: 16px;
    }

    .form-group label {
        font-size: 0.82rem;
        margin-bottom: 5px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 14px;
        font-size: 16px;
        /* 16px prevents iOS zoom */
        border-radius: 10px;
        -webkit-appearance: none;
        appearance: none;
    }

    .form-group textarea {
        min-height: 110px;
    }

    /* -- Map Section -- */
    .map-section iframe {
        height: 280px;
    }

    /* -- CTA Card -- */
    .cta-card {
        padding: 36px 20px;
        border-radius: 18px;
    }

    .about-cta-section {
        padding: 60px 20px;
    }

    /* -- Register Page -- */
    .register-options {
        grid-template-columns: 1fr;
    }

    .register-card {
        padding: 28px 20px;
        border-radius: 16px;
    }

    /* -- Footer -- */
    .footer {
        padding: 60px 20px 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        /* 2 columns for tablet */
        gap: 40px 30px;
        margin-bottom: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        /* Full width brand on mobile/tablet */
        text-align: center;
        margin-bottom: 10px;
    }

    .footer-brand img {
        height: 70px;
        margin: 0 auto 16px;
    }

    .footer-brand p {
        max-width: 400px;
        text-align: center;
        margin: 0 auto 20px;
        font-size: 0.95rem;
    }

    .footer-brand .social-links {
        justify-content: center;
    }

    .footer-col {
        text-align: center;
        /* Center column content on mobile */
    }

    .footer-col h4 {
        margin-bottom: 16px;
        padding-bottom: 8px;
        display: inline-block;
        font-size: 13px;
    }

    .footer-col ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Center list items */
    }

    .footer-col ul li {
        margin-bottom: 10px;
    }

    .footer-col ul li a {
        font-size: 0.9rem;
        padding: 2px 0;
    }

    .footer-contact-item {
        justify-content: center;
        /* Center contact items */
        margin-bottom: 14px;
        text-align: center;
    }

    .footer-contact-item svg {
        margin-top: 0;
    }

    .footer-contact-item a,
    .footer-contact-item span {
        font-size: 0.9rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding-top: 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-bottom p {
        font-size: 0.85rem;
        line-height: 1.6;
        order: 2;
    }

    .social-links {
        justify-content: center;
        order: 1;
    }

    .social-link {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }
}

/* ---- SMALL MOBILE (480px) ---- */
@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        /* 1 column for small mobile */
        gap: 36px;
    }

    .footer-brand img {
        height: 60px;
    }

    .footer-col h4 {
        font-size: 12px;
    }

    .nav-logo img {
        height: 46px;
    }

    .navbar.scrolled .nav-logo img {
        height: 40px;
    }

    .section {
        padding: 40px 16px;
    }

    .section-sm {
        padding: 30px 16px;
    }

    .section-title {
        font-size: clamp(1.4rem, 7vw, 1.9rem);
    }

    .section-desc {
        font-size: 0.9rem;
    }

    /* Stats fully stacked at very small */
    .stats-section {
        padding: 32px 16px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .stat-item {
        padding: 16px 8px;
    }

    .stat-item h3 {
        font-size: 1.6rem;
    }

    .stat-item p {
        font-size: 0.75rem;
    }

    /* Select image smaller */
    .select-image img {
        max-height: 220px;
        padding: 12px;
    }

    /* Camp image smaller */
    .camp-image img {
        max-height: 220px;
    }

    /* About image smaller */
    .about-image img {
        max-height: 240px;
        padding: 16px;
    }

    /* Coach photo shorter for proportions */
    .coach-photo {
        height: 200px;
    }

    /* Why cards compact */
    .why-card {
        padding: 24px 20px;
    }

    .why-icon {
        width: 50px;
        height: 50px;
    }

    .why-icon svg,
    .why-icon img {
        width: 30px;
        height: 30px;
    }

    /* Footer compact */
    .footer {
        padding: 40px 16px 20px;
    }

    .footer-brand img {
        height: 56px;
    }

    /* CTA card */
    .cta-card {
        padding: 30px 16px;
    }

    .about-cta-section {
        padding: 50px 16px;
    }

    /* Contact form */
    .contact-form {
        padding: 24px 16px;
    }

    /* Map */
    .map-section iframe {
        height: 220px;
    }

    /* Buttons slightly tighter */
    .btn-primary {
        padding: 14px 20px;
        font-size: 13px;
    }

    .btn-secondary,
    .btn-secondary-white {
        padding: 12px 20px;
        font-size: 13px;
    }

    /* Mobile menu */
    .mobile-menu a {
        font-size: 15px;
        padding: 14px 20px;
    }

    .mobile-menu .mobile-cta {
        margin: 16px 16px 0;
    }

    /* Page header */
    .page-header {
        padding-bottom: 30px;
    }

    .page-header-content {
        padding: 24px 16px 0;
    }

    .page-header h1 {
        font-size: clamp(1.75rem, 9vw, 2.5rem);
    }

    .page-header p {
        font-size: 0.88rem;
    }

    /* Register card body */
    .register-card {
        padding: 24px 16px;
    }
}

/* ---- VERY SMALL MOBILE (375px / SE) ---- */
@media (max-width: 375px) {
    :root {
        --nav-height: 60px;
    }

    .nav-logo img {
        height: 42px;
    }

    .section {
        padding: 36px 14px;
    }

    .section-title {
        font-size: 1.35rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stat-item h3 {
        font-size: 1.5rem;
    }

    .page-header h1 {
        font-size: 1.6rem;
    }

    .why-card {
        padding: 20px 16px;
    }

    .contact-form {
        padding: 20px 14px;
    }

    .footer {
        padding: 36px 14px 18px;
    }
}

/* ===== TOUCH DEVICE OPTIMIZATIONS ===== */
@media (hover: none) and (pointer: coarse) {

    /* Remove hover transforms on touch - they feel janky */
    .why-card:hover,
    .coach-card:hover,
    .program-card:hover,
    .reg-card:hover,
    .sponsor-card:hover,
    .golf-card:hover {
        transform: none;
    }

    /* Ensure active states feel responsive */
    .btn-primary:active {
        transform: scale(0.97);
        transition: transform 0.1s ease;
    }

    .btn-secondary:active,
    .btn-secondary-white:active {
        transform: scale(0.97);
        transition: transform 0.1s ease;
    }

    .mobile-menu a:active {
        background: rgba(255, 255, 255, 0.12);
    }

    /* Prevent text selection on interactive elements */
    .btn-primary,
    .btn-secondary,
    .btn-secondary-white,
    .hamburger,
    .mobile-menu a,
    .faq-question {
        -webkit-tap-highlight-color: rgba(250, 100, 6, 0.15);
        -webkit-touch-callout: none;
        user-select: none;
    }
}

/* ===== SAFE AREA (notch / home indicator) ===== */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .footer {
        padding-bottom: calc(24px + env(safe-area-inset-bottom));
    }

    .mobile-menu {
        padding-bottom: calc(100px + env(safe-area-inset-bottom));
    }
}

/* ===== LANDSCAPE MOBILE ===== */
@media (max-height: 500px) and (orientation: landscape) {
    .page-header {
        padding-bottom: 30px;
    }

    .page-header-content {
        padding-top: 20px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .section {
        padding: 40px 24px;
    }

    .mobile-menu {
        padding: 8px 0 40px;
    }

    .mobile-menu a {
        padding: 10px 24px;
        font-size: 14px;
        min-height: 40px;
    }

    .stats-section {
        padding: 30px 20px;
    }
}