/* 
   AWA - Aluva Wrestling Academy
   Custom CSS - Disciplined, Dark, Minimal, Conversion First
*/

:root {
    --bg-dark: #111C38; /* Deep Navy Blue */
    --bg-darker: #0B1225; /* Darker Navy */
    --card-bg: #1A294E; /* Lighter Navy for cards/blocks */
    --accent-red: #DD1C1A; /* Bright Red */
    --accent-red-hover: #F02826;
    --accent-gold: #E5C158; /* Poster Gold */
    --text-main: #F4F7FB; /* Off-white */
    --text-muted: #9CA8C1; /* Soft blue-gray */
    --border-color: #2D3E64;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.5em;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    text-transform: uppercase;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

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

.hero-sub {
    font-size: 1.25rem;
    color: #e0e0e0;
    font-weight: 400;
}

.red-text { color: var(--accent-red); }
.text-main { color: var(--text-main); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }

/* Utilities */
.container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.max-w-md { max-width: 800px; margin: 0 auto; }
.max-w-sm { max-width: 600px; margin: 0 auto; }
.w-full { width: 100%; }

.padded-section {
    padding: 6rem 0;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-05 { margin-top: 0.5rem; }

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.darker-section { background-color: var(--bg-darker); }
.dark-section { background-color: var(--bg-dark); }
.red-section { background-color: var(--accent-red); color: white; }

.red-section h2, .red-section p {
    color: white;
}

.section-header {
    margin-bottom: 3rem;
}

.center { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
    cursor: pointer;
    font-size: 1rem;
    white-space: nowrap;
    border: none;
}

.btn-primary {
    background-color: var(--accent-red);
    color: #fff;
    border: 2px solid var(--accent-red);
}

.btn-primary:hover {
    background-color: var(--accent-red-hover);
    border-color: var(--accent-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(163, 22, 33, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-main);
    border: 2px solid var(--text-main);
}

.btn-secondary:hover {
    background-color: var(--text-main);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

.btn-white {
    background-color: #fff;
    color: var(--accent-red);
}

.btn-white:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.btn-outline-white {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Nav */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-main);
}

.logo span {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem; /* Nav offset */
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 50%, var(--bg-dark) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-strip {
    margin-top: 3rem;
    font-size: 0.875rem;
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.trust-strip span {
    color: #ccc;
    margin: 0 0.25rem;
}

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.border-red   { border-color: var(--accent-red); }
.border-gray  { border-color: #333; }
.box-glow     { box-shadow: 0 0 30px rgba(221, 28, 26, 0.25); }

/* Lists — fixed to avoid overflow inside cards */
.spaced-list {
    list-style: none;
    margin-bottom: 1.75rem;
    padding: 0;
}

.spaced-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.4;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: 900;
}

.arrow-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: 900;
}

.cross-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.cross-list li::before {
    content: "✕";
    position: absolute;
    left: 0;
    color: #555;
    font-weight: 900;
    font-size: 0.875rem;
    top: 2px;
}

.punch-line {
    font-weight: 900;
    font-size: 1.25rem;
    text-transform: uppercase;
    margin: 0;
}

/* Contrast Grid */
.contrast-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.highlighted li { font-size: 1.125rem; font-weight: 700; color: white; }

blockquote {
    font-size: 1.5rem;
    font-weight: 900;
    font-style: italic;
    color: var(--accent-gold);
    letter-spacing: -0.02em;
}

/* Schedule Block */
.schedule-card {
    padding: 3rem 2rem;
    text-transform: uppercase;
}

.days {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.day {
    background-color: var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 800;
    font-size: 1.125rem;
    color: var(--accent-gold);
}

.time-block {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-red);
}

/* Final CTA */
.cta-actions-group {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

/* FAB WhatsApp */
.fab-wa {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: #25D366; /* Official WA color */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    z-index: 1000;
    transition: transform 0.2s ease;
}

.fab-wa:hover {
    transform: scale(1.1);
}

/* Logo image in navbar */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.footer-logo-img {
    height: 72px;
    width: auto;
    object-fit: contain;
}

/* Coach name label */
.coach-name {
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--accent-gold);
    margin: 0 0 0.25rem 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* WhatsApp link accent */
.wa-link {
    color: #25D366 !important;
}

.wa-link:hover {
    color: #1ebe5e !important;
}

/* Camp Badge */
.camp-badge {
    display: inline-block;
    background-color: var(--accent-gold);
    color: #000;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

/* Trust cards */
.trust-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

/* Card Label (contrast section) */
.card-label {
    font-size: 1.125rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Camp note under schedule */
.camp-note {
    margin-top: 1.25rem;
    margin-bottom: 0;
    font-size: 0.875rem;
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Contact links in location */
.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1.25rem 0;
}

.contact-link {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.contact-link:hover {
    color: var(--accent-gold);
}

/* FAQ Section */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.faq-item.open {
    border-color: var(--accent-red);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    gap: 1rem;
    text-align: left;
}

.faq-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    color: var(--accent-gold);
    transition: transform 0.25s ease;
    line-height: 1;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    color: var(--accent-red);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.2s ease;
    padding: 0 1.5rem;
}

.faq-answer p {
    padding-bottom: 1.25rem;
    margin: 0;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem;
}

/* Footer redesign */
.footer {
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.footer-brand .footer-logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 0.25rem;
}

.footer-brand .footer-logo span {
    color: var(--accent-red);
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-link:hover { color: var(--accent-gold); }

.footer-rights {
    text-align: right;
}

/* Contact Heading */
.contact-heading {
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    margin-top: 0;
}

/* Footer coach label */
.footer-coach-label {
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-gold);
    margin: 0 0 0.25rem 0;
}

/* ──────────────────────────────────────
   COACHES SECTION
────────────────────────────────────── */
.coaches-grid {
    gap: 2rem;
}

.coach-card {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.coach-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.coach-card--featured {
    border-color: var(--accent-gold);
    box-shadow: 0 0 24px rgba(229, 193, 88, 0.12);
}

.coach-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: var(--bg-darker);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.coach-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.coach-avatar {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--border-color);
    letter-spacing: -0.03em;
}

.coach-name-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-main);
    margin: 0 0 0.5rem 0;
}

.coach-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.tag-gold {
    background-color: rgba(229, 193, 88, 0.15);
    color: var(--accent-gold);
    border: 1px solid rgba(229, 193, 88, 0.4);
}

.tag-red {
    background-color: rgba(221, 28, 26, 0.15);
    color: var(--accent-red);
    border: 1px solid rgba(221, 28, 26, 0.4);
}

.tag-blue {
    background-color: rgba(59, 130, 246, 0.15);
    color: #7CB9E8;
    border: 1px solid rgba(59, 130, 246, 0.35);
}

.coach-achievements {
    list-style: none;
    padding: 0;
    margin: 0;
}

.coach-achievements li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.coach-achievements li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 900;
}

/* ──────────────────────────────────────
   ACHIEVEMENTS / GALLERY SECTION
────────────────────────────────────── */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.achievement-card {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.achievement-placeholder {
    aspect-ratio: 3 / 4;
    background-color: var(--card-bg);
    border: 2px dashed var(--border-color);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    padding: 1rem;
    transition: border-color 0.2s;
}

.achievement-placeholder:hover {
    border-color: var(--accent-gold);
}

.ach-icon {
    font-size: 2.5rem;
}

.achievement-placeholder p {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.achievement-card video,
.achievement-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    transition: transform 0.3s ease;
    aspect-ratio: 3 / 4;
}

.achievement-card video:hover,
.achievement-card img:hover {
    transform: scale(1.03);
}

.achievements-note {
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
    .grid-3, .grid-2, .split-grid, .contrast-grid { 
        grid-template-columns: 1fr; 
    }
    .footer-inner { grid-template-columns: 1fr; text-align: center; }
    .footer-contacts { align-items: center; }
    .footer-rights { text-align: center; }
    .achievements-grid { grid-template-columns: repeat(2, 1fr); }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.9rem; }
    .time-block { font-size: 2rem; }

    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }

    .trust-strip { flex-direction: column; gap: 0.5rem; }
    .trust-strip .sep { display: none; }

    .map-grid { display: flex; flex-direction: column-reverse; }
    .cta-actions-group { gap: 0.75rem; }
}
