/* =========================================
   WHITE ROCK BOXING - Main Stylesheet
   Old-school grungy boxing aesthetic
   ========================================= */

:root {
    /* Colors - Dark, gritty palette */
    --primary: #c62828;
    --primary-dark: #8e0000;
    --primary-light: #ff5f52;
    --secondary: #ffd54f;
    --dark: #1a1a1a;
    --darker: #0d0d0d;
    --gray-900: #212121;
    --gray-800: #2d2d2d;
    --gray-700: #424242;
    --gray-600: #616161;
    --gray-400: #9e9e9e;
    --gray-200: #e0e0e0;
    --white: #fafafa;
    --success: #4caf50;
    --warning: #ff9800;
    
    /* Typography */
    --font-heading: 'Bebas Neue', Impact, sans-serif;
    --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;
    
    /* Effects */
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.6);
    --transition: all 0.3s ease;
    --border-radius: 4px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-200);
    background-color: var(--darker);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary);
}

/* =========================================
   Typography
   ========================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.02em;
    color: var(--white);
}

.highlight {
    color: var(--primary);
    text-shadow: 2px 2px 0 rgba(0,0,0,0.3);
}

/* =========================================
   Layout
   ========================================= */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section:nth-child(even) {
    background-color: var(--gray-900);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary);
    margin-bottom: 15px;
    padding: 5px 15px;
    border: 2px solid var(--primary);
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    text-transform: uppercase;
}

/* =========================================
   Navigation
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    border-radius: 50%;
    transition: var(--transition);
    filter: drop-shadow(0 0 8px rgba(198, 40, 40, 0.6)) drop-shadow(0 0 15px rgba(198, 40, 40, 0.4));
    animation: logo-glow 2s ease-in-out infinite alternate;
}

@keyframes logo-glow {
    from { filter: drop-shadow(0 0 8px rgba(198, 40, 40, 0.6)) drop-shadow(0 0 15px rgba(198, 40, 40, 0.4)); }
    to { filter: drop-shadow(0 0 12px rgba(198, 40, 40, 0.8)) drop-shadow(0 0 25px rgba(198, 40, 40, 0.6)); }
}

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: 0.1em;
}

.logo-boxing {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary);
    letter-spacing: 0.3em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: 
        linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(30,0,0,0.8) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%23111" width="100" height="100"/><circle fill="%23222" cx="50" cy="50" r="40"/></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0,0,0,0.1) 2px,
            rgba(0,0,0,0.1) 4px
        );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-logo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 30px;
    border: 4px solid var(--primary);
    animation: hero-logo-glow 2s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 20px rgba(198, 40, 40, 0.7));
}

@keyframes hero-logo-glow {
    from { 
        box-shadow: 0 0 30px rgba(198, 40, 40, 0.5), 0 0 60px rgba(198, 40, 40, 0.3), inset 0 0 20px rgba(198, 40, 40, 0.1);
        filter: drop-shadow(0 0 20px rgba(198, 40, 40, 0.7));
    }
    to { 
        box-shadow: 0 0 50px rgba(198, 40, 40, 0.8), 0 0 100px rgba(198, 40, 40, 0.5), inset 0 0 30px rgba(198, 40, 40, 0.2);
        filter: drop-shadow(0 0 35px rgba(198, 40, 40, 0.9));
    }
}

.hero-title {
    font-size: clamp(3rem, 12vw, 8rem);
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 4px 4px 0 rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--gray-200);
    margin-bottom: 10px;
}

.hero-tagline {
    font-size: 1rem;
    color: var(--primary-light);
    margin-bottom: 40px;
    font-weight: 500;
}

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

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gray-400);
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* =========================================
   Buttons
   ========================================= */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(198, 40, 40, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
}

.btn-small {
    padding: 10px 25px;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
}

/* =========================================
   Social Bar
   ========================================= */
.social-bar {
    background: var(--primary-dark);
    padding: 20px 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
}

.social-link i {
    font-size: 1.5rem;
}

.social-link:hover {
    color: var(--secondary);
    transform: scale(1.05);
}

.social-link.tiktok:hover {
    color: #00f2ea;
}

.social-link.facebook:hover {
    color: #1877f2;
}

/* =========================================
   About Section
   ========================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content .lead {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 500;
}

.about-content p {
    margin-bottom: 15px;
    color: var(--gray-400);
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--gray-700);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about-image {
    position: relative;
}

/* Founder Section */
.founder-section {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid var(--gray-700);
    align-items: center;
}

.founder-image img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    object-position: top center;
    border-radius: 50%;
    border: 4px solid var(--primary);
    box-shadow: 0 0 30px rgba(198, 40, 40, 0.3);
}

.founder-tag {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 5px 15px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}

.founder-content h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.founder-content p {
    color: var(--gray-400);
    margin-bottom: 15px;
    line-height: 1.7;
}

.founder-contact {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-700);
}

.founder-contact p {
    margin-bottom: 10px;
    color: var(--gray-200);
}

.founder-contact i {
    color: var(--primary);
    width: 25px;
}

.founder-contact a {
    color: var(--gray-200);
}

.founder-contact a:hover {
    color: var(--primary-light);
}

@media (max-width: 768px) {
    .founder-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .founder-image {
        display: flex;
        justify-content: center;
    }
    
    .founder-image img {
        width: 250px;
        height: 250px;
    }
}

.image-frame {
    position: relative;
    border: 3px solid var(--primary);
    padding: 20px;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    bottom: -10px;
    left: -10px;
    border: 1px solid var(--gray-700);
    z-index: -1;
}

.image-placeholder {
    background: var(--gray-800);
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 10px;
}

.image-placeholder.large {
    height: 500px;
}

.gym-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.fighter-status.rising {
    background: var(--warning);
}

.fighter-photo {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.fighter-spotlight.prospect .fighter-photo {
    height: 400px;
}

.coach-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 50%;
}

/* =========================================
   Programs Section
   ========================================= */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.program-card {
    background: var(--gray-800);
    padding: 40px 30px;
    position: relative;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.program-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.program-card.featured {
    border-bottom-color: var(--secondary);
    background: linear-gradient(180deg, var(--gray-800) 0%, rgba(255, 213, 79, 0.1) 100%);
}

.program-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary);
    color: var(--dark);
    padding: 5px 15px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.program-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.program-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.program-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.program-card p {
    color: var(--gray-400);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.program-features {
    list-style: none;
}

.program-features li {
    padding: 8px 0;
    color: var(--gray-200);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--gray-700);
}

.program-features li:last-child {
    border-bottom: none;
}

.program-card .btn {
    margin-top: 20px;
}

/* =========================================
   Coaches Section
   ========================================= */
.coaches {
    background: linear-gradient(180deg, var(--darker) 0%, var(--gray-900) 100%);
}

.coaches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

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

.coach-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary);
    background: var(--gray-800);
}

.coach-image .image-placeholder {
    height: 100%;
    border-radius: 50%;
}

.coach-info h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.coach-title {
    display: block;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.coach-info p {
    color: var(--gray-400);
    font-size: 0.95rem;
}

/* =========================================
   Fighters Section
   ========================================= */
.fighter-spotlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--gray-800);
    padding: 50px;
    margin-bottom: 50px;
}

.fighter-image .image-placeholder {
    border: 3px solid var(--primary);
}

.fighter-status {
    display: inline-block;
    background: var(--success);
    color: var(--white);
    padding: 5px 15px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.fighter-info h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.fighter-details {
    color: var(--primary-light);
    font-weight: 500;
    margin-bottom: 20px;
}

.fighter-info p {
    color: var(--gray-400);
    margin-bottom: 20px;
}

.fighters-featured {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.fighter-spotlight.prospect {
    background: var(--gray-900);
}

.fighter-spotlight.prospect .fighter-image .image-placeholder {
    height: 350px;
}

.fighters-hall {
    text-align: center;
    padding: 40px;
    background: var(--gray-800);
    border-left: 4px solid var(--secondary);
}

.fighters-hall h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.fighters-hall p {
    color: var(--gray-400);
    max-width: 700px;
    margin: 0 auto 20px;
}

/* =========================================
   Social Feeds Section
   ========================================= */
.social-feeds {
    background: var(--darker);
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.social-feed {
    background: var(--gray-800);
    padding: 30px;
    border-radius: var(--border-radius);
}

.feed-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-700);
}

.feed-header i {
    font-size: 2rem;
}

.tiktok-feed .feed-header i {
    color: #00f2ea;
}

.facebook-feed .feed-header i {
    color: #1877f2;
}

.feed-header h3 {
    font-size: 1.5rem;
    flex: 1;
}

.feed-header a {
    color: var(--gray-400);
    font-size: 0.9rem;
}

.feed-content {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.feed-content .btn {
    margin-top: 20px;
}

/* TikTok CTA */
.tiktok-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
}

.tiktok-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 25px;
}

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

.tiktok-stat .stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #00f2ea;
}

.tiktok-stat .stat-label {
    font-size: 0.9rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.tiktok-desc {
    color: var(--gray-300);
    margin-bottom: 25px;
    max-width: 300px;
}

.fb-fallback {
    display: none;
}

.fb-page {
    width: 100%;
}

/* =========================================
   Schedule Section
   ========================================= */
.schedule-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.schedule-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.schedule-info > p {
    color: var(--gray-400);
    margin-bottom: 20px;
}

.schedule-features {
    list-style: none;
    margin-bottom: 30px;
}

.schedule-features li {
    padding: 10px 0;
    color: var(--gray-200);
    display: flex;
    align-items: center;
    gap: 15px;
}

.schedule-features i {
    color: var(--success);
}

.schedule-hours {
    background: var(--gray-800);
    padding: 25px;
    border-left: 4px solid var(--primary);
}

.schedule-hours h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.schedule-hours p {
    margin-bottom: 5px;
    color: var(--gray-400);
}

/* =========================================
   Forms
   ========================================= */
.booking-form,
.contact-form {
    background: var(--gray-800);
    padding: 40px;
}

.booking-form h4,
.contact-form h4 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--gray-200);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: var(--gray-900);
    border: 1px solid var(--gray-700);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-600);
}

/* =========================================
   Membership Section
   ========================================= */
.membership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.membership-card {
    background: var(--gray-800);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 1px solid var(--gray-700);
}

.membership-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.membership-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

.membership-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.membership-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.membership-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.price {
    margin-bottom: 30px;
}

.price .amount {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--primary);
}

.price .period {
    display: block;
    color: var(--gray-400);
    font-size: 0.9rem;
}

.membership-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.membership-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-700);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.membership-features li:last-child {
    border-bottom: none;
}

.membership-features .fa-check {
    color: var(--success);
}

.membership-features .fa-times {
    color: var(--gray-600);
}

.membership-note {
    background: var(--gray-800);
    padding: 20px 30px;
    border-left: 4px solid var(--secondary);
}

.membership-note p {
    color: var(--gray-400);
    margin: 0;
}

.membership-note i {
    color: var(--secondary);
    margin-right: 10px;
}

/* =========================================
   News Section
   ========================================= */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.news-card {
    background: var(--gray-800);
    padding: 30px;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.news-card:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--primary);
}

.news-date {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.news-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.news-card p {
    color: var(--gray-400);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.news-card a {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
}

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

/* =========================================
   Contact Section
   ========================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary);
}

.contact-item p {
    color: var(--gray-400);
    margin-bottom: 3px;
}

.contact-item a {
    color: var(--gray-200);
}

.contact-item a:hover {
    color: var(--primary-light);
}

.contact-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.contact-social a {
    width: 50px;
    height: 50px;
    background: var(--gray-800);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition);
}

.contact-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.contact-map {
    background: var(--gray-800);
    padding: 10px;
}

.contact-map iframe {
    display: block;
    filter: grayscale(100%) invert(90%) contrast(90%);
}

/* =========================================
   Gallery Teaser
   ========================================= */
.gallery-teaser {
    background: var(--darker);
}

.gallery-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.gallery-link {
    padding: 15px 30px;
    background: var(--gray-800);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid var(--gray-700);
    transition: var(--transition);
}

.gallery-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background: var(--dark);
    padding: 80px 0 30px;
    border-top: 3px solid var(--primary);
}

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

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-logo .logo-img {
    height: 80px;
    width: 80px;
    animation: logo-glow 2s ease-in-out infinite alternate;
}

.footer-brand p {
    color: var(--gray-400);
    margin-bottom: 15px;
}

.footer-brand .nonprofit {
    color: var(--primary);
    font-weight: 500;
}

.footer-brand .nonprofit i {
    margin-right: 5px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary);
}

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

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

.footer-links a {
    color: var(--gray-400);
}

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

.footer-contact p {
    color: var(--gray-400);
    margin-bottom: 5px;
}

.footer-contact a {
    color: var(--gray-400);
}

.footer-contact a:hover {
    color: var(--primary-light);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--gray-800);
}

.footer-bottom p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 1024px) {
    .programs-grid,
    .coaches-grid,
    .membership-grid,
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--darker);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .about-grid,
    .fighter-spotlight,
    .schedule-content,
    .social-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .programs-grid,
    .coaches-grid,
    .membership-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .membership-card.featured {
        transform: none;
    }
    
    .membership-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social,
    .contact-social {
        justify-content: center;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .booking-form,
    .contact-form {
        padding: 25px;
    }
}

/* =========================================
   Utility Classes
   ========================================= */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: 40px; }

/* =========================================
   Grungy Texture Overlay
   ========================================= */
.section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.03"/></svg>');
    pointer-events: none;
    z-index: 1;
}

.section > .container {
    position: relative;
    z-index: 2;
}
