/* ============================================
   FTC ROBOTIC RAIDERS #22648 - STYLESHEET
   ============================================
   
   ✏️ COLOR CUSTOMIZATION
   Change these colors to match your team branding:
*/

:root {
    --primary-color: #8B0000;      /* Dark Red - Team color */
    --secondary-color: #1a1a1a;    /* Near black */
    --accent-color: #FFD700;       /* Gold accent */
    --text-color: #333333;         /* Main text */
    --text-light: #666666;         /* Secondary text */
    --background: #ffffff;         /* White background */
    --background-alt: #f5f5f5;     /* Light gray sections */
    --border-color: #e0e0e0;       /* Borders */
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background);
}

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

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    background-color: var(--secondary-color);
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    color: white;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    background-color: var(--primary-color);
    color: white;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: white;
    left: 0;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.team-number {
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: bold;
    margin-bottom: 15px;
}

.tagline {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: #e6c200;
    color: var(--secondary-color);
    transform: translateY(-2px);
}

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

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

/* ============================================
   SECTIONS
   ============================================ */

.section {
    padding: 60px 20px;
}

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

.section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ============================================
   ABOUT SECTION (Home Page)
   ============================================ */

.about-preview h2 {
    text-align: left;
    margin-bottom: 5px;
}

.section-subtitle {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: normal;
    margin-bottom: 25px;
    text-align: left;
}

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

.about-text p {
    margin-bottom: 20px;
    text-align: justify;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    width: 100%;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.about-images img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Season Section */
.season-highlight {
    background-color: var(--background);
}

.season-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.season-content.reverse {
    grid-template-columns: 1fr 1fr;
}

.season-content.reverse .season-image {
    order: 1;
}

.season-content.reverse .season-text {
    order: 2;
}

.season-text h2 {
    text-align: left;
    margin-bottom: 5px;
}

.season-text .section-subtitle {
    margin-bottom: 20px;
}

.season-text p {
    text-align: justify;
    margin-bottom: 15px;
}

.season-image img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Quick Links Grid */
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.link-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-color);
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    color: var(--text-color);
}

.link-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* ============================================
   TEAM PAGE
   ============================================ */

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.coaches-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    max-width: 1000px;
}

.team-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.member-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-color);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.team-card .role {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 10px;
}

.team-card .bio {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-top: 10px;
}

.page-header .quote {
    font-style: italic;
    max-width: 800px;
    margin: 15px auto 0;
    opacity: 0.9;
    font-size: 1rem;
}

/* ============================================
   ROBOT PAGE
   ============================================ */

.robot-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.robot-image-main img {
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.robot-details h3 {
    color: var(--primary-color);
    margin: 20px 0 15px;
}

.specs-list {
    list-style: none;
    margin-bottom: 20px;
}

.specs-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

/* Timeline */
.history-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-image img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Docs Grid */
.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.doc-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.doc-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* ============================================
   OUTREACH PAGE
   ============================================ */

.outreach-event {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border-color);
}

.outreach-event:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.outreach-event.reverse {
    direction: rtl;
}

.outreach-event.reverse > * {
    direction: ltr;
}

.event-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.event-images.single {
    grid-template-columns: 1fr;
}

.event-images img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    object-fit: cover;
}

/* Zoom call image - portrait/tall image */
.event-images.zoom-call {
    grid-template-columns: 1fr;
    max-width: 300px;
}

.event-images.zoom-call img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
}

/* Gibson Presentation - featured close-up with collage strip */
.gibson-layout {
    display: flex;
    flex-direction: column;
    gap: 8px;
    grid-template-columns: unset;
}

.gibson-main {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center top;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.gibson-collage {
    width: 100%;
    height: 280px;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    background-color: #f5f5f5;
}

/* Booth photo collage - 2 col grid, last photo full width */
.booth-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.booth-collage img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    object-position: center;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.12);
}

.booth-wide {
    grid-column: span 2;
    height: 200px !important;
}

.event-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.event-content h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.event-date {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 15px;
}

.event-content p {
    margin-bottom: 15px;
    text-align: justify;
}

/* Old card-based styles kept for compatibility */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.event-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.event-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.event-details {
    padding: 25px;
}

.event-details h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Awards */
.award-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border-color);
}

.award-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.award-item.reverse {
    direction: rtl;
}

.award-item.reverse > * {
    direction: ltr;
}

.award-content h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-align: left;
}

.award-year {
    color: var(--text-light);
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.award-content p {
    text-align: justify;
}

.award-image img {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    width: 100%;
}

/* History / Past Robots */
.robot-history-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border-color);
}

.robot-history-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.robot-history-item.reverse {
    direction: rtl;
}

.robot-history-item.reverse > * {
    direction: ltr;
}

.robot-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.robot-images.single {
    grid-template-columns: 1fr;
}

.robot-images img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    object-fit: cover;
}

.robot-info h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: left;
}

.robot-info p {
    text-align: justify;
}

/* Old awards-content kept for compatibility */
.awards-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.award-details h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* ============================================
   SPONSORS PAGE
   ============================================ */

.sponsor-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.sponsor-image img {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.tier-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 5px solid var(--border-color);
}

.tier-card.bronze { border-top-color: #CD7F32; }
.tier-card.silver { border-top-color: #C0C0C0; }
.tier-card.gold { border-top-color: #FFD700; }
.tier-card.platinum { border-top-color: #E5E4E2; }

.tier-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.tier-card .amount {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.tier-card ul {
    list-style: none;
    text-align: left;
}

.tier-card li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.tier-card li:last-child {
    border-bottom: none;
}

.sponsor-placeholder {
    background: var(--background-alt);
    padding: 60px;
    border-radius: 10px;
    border: 2px dashed var(--border-color);
    text-align: center;
    color: var(--text-light);
}

/* ============================================
   CONTACT PAGE
   ============================================ */

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

.contact-details {
    margin-top: 30px;
}

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

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.social-links-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--background-alt);
    border-radius: 5px;
    color: var(--text-color);
    transition: all 0.3s ease;
}

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

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

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

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

.follow-section p {
    margin-bottom: 20px;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 50px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 10px;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 15px;
    color: var(--accent-color);
}

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

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

.footer-links a {
    color: white;
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.social-links a {
    color: white;
    opacity: 0.8;
}

.social-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

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

@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav-toggle {
        display: block;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--secondary-color);
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        display: none;
    }
    
    .nav-links.nav-open {
        display: flex;
    }
    
    /* Hero */
    .hero h1 {
        font-size: 2rem;
    }
    
    .team-number {
        font-size: 1.5rem;
    }
    
    /* Grids become single column */
    .about-grid,
    .season-content,
    .season-content.reverse,
    .robot-showcase,
    .awards-content,
    .award-item,
    .award-item.reverse,
    .robot-history-item,
    .robot-history-item.reverse,
    .sponsor-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .season-content.reverse .season-image,
    .season-content.reverse .season-text {
        order: unset;
    }
    
    .award-item.reverse,
    .robot-history-item.reverse {
        direction: ltr;
    }
    
    .award-content h2,
    .robot-info h2 {
        text-align: center;
    }
    
    .robot-images {
        grid-template-columns: 1fr;
    }
    
    .about-preview h2,
    .season-text h2,
    .section-subtitle {
        text-align: center;
    }
    
    .about-text p,
    .season-text p {
        text-align: left;
    }
    
    .about-images {
        grid-template-columns: 1fr;
    }
    
    /* Outreach page mobile */
    .outreach-event {
        grid-template-columns: 1fr;
    }
    
    .outreach-event.reverse {
        direction: ltr;
    }
    
    .event-images {
        grid-template-columns: 1fr;
    }
    
    .event-images.zoom-call {
        max-width: 100%;
    }
    
    .event-images.zoom-call img {
        max-height: 350px;
        margin: 0 auto;
    }

    .gibson-main  { height: 220px; }
    .gibson-collage { height: 85px; }

    .booth-collage {
        grid-template-columns: 1fr 1fr !important;
    }
    .booth-collage img { height: 120px; }
    .booth-wide { grid-column: span 2; height: 160px !important; }
    
    .timeline-item {
        grid-template-columns: 1fr;
    }
    
    /* Team grid */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .coaches-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 20px;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .section h2 {
        font-size: 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .tiers-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ALUMNI CSS
   ============================================ */

/* Alumni Season Sections */
.alumni-season {
    padding: 60px 0;
}

.alumni-season.alt-bg {
    background-color: #f5f5f5;
}

.season-header {
    text-align: center;
    margin-bottom: 40px;
}

.season-header h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #8B0000;
}

.season-game {
    display: inline-block;
    background-color: #8B0000;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founding-badge {
    display: inline-block;
    background-color: #FFD700;
    color: #333;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-left: 10px;
}

/* Founding Note */
.founding-note {
    background-color: #fff8e1;
    border-left: 4px solid #FFD700;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 0 8px 8px 0;
}

.founding-note p {
    margin: 0;
    color: #555;
}

/* Alumni Photos Grid */
.alumni-photos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.alumni-photo img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center 35%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.photo-caption {
    text-align: center;
    margin-top: 10px;
    font-style: italic;
    color: #666;
}

/* Placeholder Photo Boxes */
.alumni-photo.placeholder .placeholder-box {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #e0e0e0 0%, #c0c0c0 100%);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
}

.placeholder-box span {
    font-weight: 600;
    font-size: 1.1rem;
}

.placeholder-box p {
    margin-top: 5px;
    font-style: italic;
}

/* Alumni Members & Coaches */
.alumni-members,
.alumni-coaches {
    margin-bottom: 30px;
}

.alumni-members h3,
.alumni-coaches h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #8B0000;
}

.members-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.member-item {
    background-color: white;
    padding: 12px 18px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-left: 3px solid #8B0000;
}

.member-item strong {
    color: #8B0000;
}

/* Placeholder Content */
.placeholder-content {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 2px dashed #ddd;
}

.placeholder-content p {
    color: #888;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 0;
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 10px;
}

.section-intro {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.testimonials-placeholder {
    max-width: 600px;
    margin: 0 auto 30px;
}

.testimonial-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.testimonial-card.placeholder {
    border: 2px dashed #ddd;
    background-color: #fafafa;
}

.testimonial-text {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 15px;
}

.testimonial-author {
    color: #8B0000;
    font-weight: 600;
}

.testimonial-cta {
    text-align: center;
    color: #666;
}

.testimonial-cta a {
    color: #8B0000;
    font-weight: 600;
}

/* Page Subtitle */
.subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
    margin-top: -10px;
}

/* Responsive Alumni */
@media (max-width: 768px) {
    .season-header h2 {
        font-size: 1.8rem;
    }
    
    .founding-badge {
        display: block;
        margin: 10px auto 0;
        width: fit-content;
    }
    
    .alumni-photos {
        grid-template-columns: 1fr;
    }
    
    .members-list {
        grid-template-columns: 1fr;
    }
}