/* North Forsyth Flag Football League - Styles */

:root {
    --primary-color: #1E3A8A;
    --secondary-color: #FBBF24;
    --accent-color: #DC2626;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    --border-color: #E5E7EB;
    --success-color: #059669;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light); /* now black */
}

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

/* Header */
.main-header {
    background: #000000; /* black header bar */
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-dark);
}

.logo img {
    height: 70.5px; /* another 25% larger */
    width: auto;
}

.logo h1 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
}

.logo span {
    color: var(--secondary-color);
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
}

/* (removed site-logo customizations) */

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--secondary-color); /* gold menu text */
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.main-nav a:hover {
    color: #FFFFFF; /* white on hover for contrast */
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color); /* gold underline */
    transition: width 0.3s;
}

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

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color); /* gold hamburger icon */
    transition: all 0.3s;
}

/* Hero Section */
.hero-section {
    position: relative;
    color: white;
    padding: 5rem 0;
    text-align: center;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 1;
    -webkit-transition: opacity 1.5s ease-in-out;
    -moz-transition: opacity 1.5s ease-in-out;
    -o-transition: opacity 1.5s ease-in-out;
    transition: opacity 1.5s ease-in-out;
    visibility: hidden;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
    visibility: visible;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.45) 0%, rgba(59, 130, 246, 0.4) 100%);
    z-index: 2;
}

.hero-section .container {
    position: relative;
    z-index: 3;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

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

.btn-primary:hover {
    background: #F59E0B;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h1,
.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

/* (removed section-title-brand and section-logo styles) */

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

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

.feature-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.feature-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.feature-link:hover {
    text-decoration: underline;
}

/* Standings Section */
.standings-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.standings-table {
    overflow-x: auto;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.standings-table table {
    width: 100%;
    border-collapse: collapse;
}

.standings-table th {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.standings-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.standings-table tr:hover {
    background: var(--bg-light);
}

.team-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.team-link:hover {
    text-decoration: underline;
}

/* Teams Section */
.teams-section {
    padding: 3rem 0;
}

.teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.team-card {
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.team-card a {
    text-decoration: none;
    color: inherit;
    display: block;
    padding: 2rem;
    text-align: center;
}

.team-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    overflow: hidden;
    background-color: var(--bg-light);
}

.team-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    padding: 5px;
}

.team-logo-large {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    overflow: hidden;
    background-color: var(--bg-light);
}

.team-logo-large img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    padding: 8px;
}

.team-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.team-coach {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.team-record {
    font-weight: 600;
    color: var(--primary-color);
}

/* Team Detail */
.team-detail-section {
    padding: 3rem 0;
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.back-link:hover {
    text-decoration: underline;
}

.team-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.team-info h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

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

.team-players,
.team-games {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.team-players h2,
.team-games h2 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.players-table table {
    width: 100%;
    border-collapse: collapse;
}

.players-table th {
    background: var(--bg-light);
    padding: 0.75rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid var(--border-color);
}

.players-table td {
    padding: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.games-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.game-item {
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.game-date {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.game-teams {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.game-teams .winner {
    color: var(--success-color);
}

.game-location {
    font-size: 0.875rem;
    color: var(--text-light);
}

.game-location:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Schedule Section */
.schedule-section {
    padding: 3rem 0;
}

.schedule-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-color);
    background: var(--bg-white);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.schedule-date-group {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.date-header {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.games-for-date {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.schedule-game-card {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.game-time {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.game-matchup {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.game-team {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--bg-white);
    border-radius: 6px;
}

.game-team.winner {
    background: #D1FAE5;
    font-weight: 700;
}

.game-vs {
    font-weight: 600;
    color: var(--text-light);
}

.team-score {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.game-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.game-status {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.75rem;
}

.view-game-stats-btn {
    display: inline-block;
    padding: 0.4rem 0.75rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.3s;
}

.view-game-stats-btn:hover {
    background: #1E40AF;
    color: white;
}

.status-scheduled {
    background: #DBEAFE;
    color: #1E40AF;
}

.status-completed {
    background: #D1FAE5;
    color: #065F46;
}

.status-cancelled {
    background: #FEE2E2;
    color: #991B1B;
}

/* Stats Section */
.stats-section {
    padding: 3rem 0;
}

.stats-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 0.75rem 2rem;
    border: 2px solid var(--border-color);
    background: var(--bg-white);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.stats-table-wrapper {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow-x: auto;
}

.stats-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.stats-table th {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.stats-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.stats-table tr:hover {
    background: var(--bg-light);
}

.jersey-number {
    color: var(--text-light);
    font-weight: normal;
    margin-left: 0.5rem;
}

.team-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
}

.team-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.team-stat-card {
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.team-stat-header {
    padding: 1.5rem;
    color: white;
}

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

.team-stat-body {
    padding: 1.5rem;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.stat-label {
    color: var(--text-light);
}

.stat-value {
    font-weight: 600;
    color: var(--text-dark);
}

.view-team-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.view-team-link:hover {
    text-decoration: underline;
}

/* Photos Section */
.photos-section {
    padding: 3rem 0;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.photo-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.photo-link {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.photo-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--bg-light);
}

.photo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.photo-card:hover .photo-image img {
    transform: scale(1.1);
}

.photo-overlay {
    padding: 1.5rem;
    background: var(--bg-white);
}

.photo-overlay h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.photo-team {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
}

/* Videos Section */
.videos-section {
    padding: 3rem 0;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
}

.video-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.video-info p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.video-team {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--primary-color);
    color: white;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Footer */
.main-footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        padding: 1rem;
    }
    
    .main-nav.active {
        display: flex;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .main-nav ul li {
        width: 100%;
    }
    
    .main-nav a {
        display: block;
        padding: 0.75rem;
        border-bottom: 1px solid var(--border-color);
        color: var(--text-dark) !important; /* black text for mobile menu */
    }
    
    .main-nav a:hover {
        color: var(--text-dark) !important; /* keep black on hover for mobile */
        background-color: var(--bg-light); /* light background on hover */
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo img {
        height: 45px !important; /* smaller logo for mobile */
    }
    
    .logo a .logo-text {
        font-size: 0.375rem !important; /* 70% smaller for mobile (30% of 1.25rem) */
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }

    /* (removed site-logo and section-logo mobile overrides) */

    .team-content-grid {
        grid-template-columns: 1fr;
    }
    
    .team-header {
        flex-direction: column;
        text-align: center;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .game-matchup {
        flex-direction: column;
        gap: 0.75rem; /* Add spacing between teams in mobile view */
    }
    
    .game-vs {
        margin: 0.25rem 0; /* Add vertical spacing around VS separator */
    }
    
    /* Schedule page mobile styles */
    .schedule-section {
        padding: 2rem 0;
    }
    
    .schedule-date-group {
        padding: 1.25rem;
    }
    
    .date-header {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .schedule-game-card {
        padding: 1rem;
    }
    
    .game-time {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }
    
    .game-team {
        padding: 0.5rem;
        font-size: 0.875rem;
        gap: 0.75rem; /* Add spacing between team name and score */
    }
    
    .team-name {
        flex: 1; /* Allow team name to take available space */
    }
    
    .team-score {
        font-size: 1rem;
        margin-left: 0.5rem; /* Additional spacing before score */
        white-space: nowrap; /* Prevent score from wrapping */
    }
    
    .game-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        font-size: 0.8rem;
    }
    
    .view-game-stats-btn {
        font-size: 0.7rem;
        padding: 0.35rem 0.6rem;
    }
    
    .game-location {
        word-break: break-word;
    }
    
    /* Venues section mobile */
    .venues-section {
        margin-top: 2rem;
    }
    
    .venues-section > div[style*="grid"] {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .venues-section > div[style*="grid"] > div {
        padding: 1.25rem !important;
    }
    
    /* Stats page mobile styles */
    .stats-section {
        padding: 2rem 0;
    }
    
    .stats-tabs {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .tab-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .stats-table-wrapper {
        padding: 1rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .stats-table {
        font-size: 0.875rem;
        min-width: 600px; /* Reduced from 800px but still allows horizontal scroll */
    }
    
    .stats-table th,
    .stats-table td {
        padding: 0.5rem;
    }
    
    /* Section headers mobile */
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h1,
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Container padding mobile */
    .container {
        padding: 0 1rem;
    }
    
    /* Features grid mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Teams grid mobile */
    .teams-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Team stats grid mobile */
    .team-stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Photos grid mobile */
    .photos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Videos grid mobile - reduce min-width */
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Schedule filters mobile */
    .schedule-filters {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Hero buttons mobile */
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

.no-games {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
}

