/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff4655;
    --primary-dark: #d6323f;
    --secondary-color: #4834d4;
    --accent-color: #ffc107;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --light-bg: #f8f9fa;
    --dark-text: #333;
    --border-color: #ddd;
    --gradient-primary: linear-gradient(135deg, #ff4655 0%, #4834d4 100%);
    --gradient-dark: linear-gradient(
  135deg,
  rgba(18, 18, 31, 0.92) 0%,
  rgba(31, 17, 64, 0.88) 60%,
  rgba(43, 15, 58, 0.88) 100%
);
}

html, body {
    height: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background: #fff;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, .navbar-brand-title {
    font-family: 'Rajdhani', 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
}

main {
    flex: 1;
    padding: 2rem 0;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navbar */
.navbar {
    background: var(--gradient-dark);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.35);
    border-bottom: 3px solid var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    flex: 1;
}

.navbar-brand-title {
    font-size: 2rem;
    margin: 0;
}

.navbar-brand a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.navbar-brand a:hover {
    color: var(--accent-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    transition: color 0.3s, background 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    position: relative;
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
}

.btn-login {
    background: var(--gradient-primary);
    padding: 0.5rem 1rem;
}

.btn-logout {
    background: var(--danger-color);
    padding: 0.5rem 1rem;
}

/* Footer */
.footer {
    background: var(--gradient-dark);
    color: white;
    margin-top: auto;
    padding: 3rem 0 1rem;
    border-top: 3px solid var(--primary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #999;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 70, 85, 0.45);
}

.btn-secondary {
    background: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background: #3a2ab3;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-discord {
    background: #5865F2;
    color: white;
}

.btn-discord:hover {
    background: #4752c4;
    transform: translateY(-2px);
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.close-btn:hover {
    opacity: 1;
}

/* Hero Section */
.hero {
    background: var(--gradient-dark);
    background-image:
        radial-gradient(circle at 15% 20%, rgba(255, 70, 85, 0.35) 0%, transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(72, 52, 212, 0.4) 0%, transparent 45%),
        var(--gradient-dark);
    color: white;
    padding: 5rem 0;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #fff 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.6s ease-out both;
}

.hero-content h1 { animation-delay: 0.1s; }
.hero-content p { animation-delay: 0.2s; }
.hero-actions { animation-delay: 0.3s; }

/* Games Showcase */
.games-showcase {
    margin-bottom: 3rem;
}

.games-showcase h2 {
    text-align: center;
    margin: 0 auto 2rem;
}

/* Discreet contrast pill so section titles stay readable over the optional
   page background photo (set via admin settings) */
.section-title {
    display: table;
    color: #fff;
    background: rgba(18, 18, 31, 0.8);
    padding: 0.4rem 1.1rem;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.featured-events h2,
.latest-articles h2 {
    margin-bottom: 2rem;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.game-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 4px solid var(--secondary-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.game-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.game-card.game-smash {
    border-top-color: var(--secondary-color);
}

.game-card.game-sf6 {
    border-top-color: var(--primary-color);
}

.game-card.game-other {
    border-top-color: var(--accent-color);
}

.game-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.game-card h3 {
    margin-bottom: 0.75rem;
}

.game-card p {
    color: #555;
}

/* Page Header */
.page-header {
    background: var(--gradient-dark);
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 70, 85, 0.3) 0%, transparent 50%),
        var(--gradient-dark);
    color: white;
    padding: 3rem 0;
    margin-bottom: 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Grid Layouts */
.events-grid, .articles-grid, .activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.featured-events, .latest-articles {
    margin-bottom: 3rem;
}

/* Cards */
.event-card, .article-card, .activity-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-left: 4px solid transparent;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    overflow: hidden;
}

.event-card, .activity-card {
    padding: 2rem;
}

.article-card {
    padding: 0 0 2rem 0;
}

.article-card h3, .article-card .article-meta, .article-card .article-excerpt, .article-card .btn {
    margin-left: 2rem;
    margin-right: 2rem;
}

.article-card h3 {
    margin-top: 1.5rem;
}

.article-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.event-card:hover, .article-card:hover, .activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    border-left-color: var(--primary-color);
}

.event-card h3, .article-card h3, .activity-card h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.event-date, .article-meta, .event-location {
    font-size: 0.9rem;
    color: var(--dark-text);
    font-weight: 600;
    margin-bottom: 1rem;
}

.article-excerpt {
    margin-bottom: 1rem;
    color: #555;
}

.event-card .btn, .article-card .btn, .activity-card .btn {
    display: inline-block;
}

/* Text Utilities */
.text-center {
    text-align: center;
}

/* Blog */
.blog-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.blog-articles {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.blog-post-summary {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.blog-post-summary:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.post-summary-thumb {
    flex: 0 0 220px;
    display: block;
    border-radius: 8px;
    overflow: hidden;
    height: 140px;
}

.post-summary-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.post-summary-thumb:hover img {
    transform: scale(1.05);
}

.post-summary-body {
    flex: 1;
    min-width: 0;
}

.blog-post-summary h2 {
    margin-bottom: 0.5rem;
}

.blog-post-summary h2 a {
    color: var(--primary-color);
    text-decoration: none;
}

.blog-post-summary h2 a:hover {
    text-decoration: underline;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
    flex-wrap: wrap;
}

.post-content {
    margin-bottom: 1rem;
    color: #555;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.read-more:hover {
    color: #0056b3;
}

/* Blog Detail */
.blog-post {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.post-cover-image {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 2rem;
    background: #000;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.post-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.post-header h1 {
    margin-bottom: 1rem;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.post-content p {
    margin-bottom: 1rem;
}

.post-content h2 {
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
}

.post-content h3 {
    margin: 1.5rem 0 0.5rem 0;
    font-size: 1.2rem;
}

.post-content ul, .post-content ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

.post-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
    margin-left: 0;
    margin-bottom: 1rem;
    color: #666;
    font-style: italic;
}

.post-actions {
    display: flex;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.pagination a, .pagination .current-page {
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.pagination a {
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border: 1px solid var(--primary-color);
    transition: all 0.3s;
}

.pagination a:hover {
    background: var(--primary-color);
    color: white;
}

.pagination .current-page {
    background: var(--primary-color);
    color: white;
}

/* Events & Calendar */
.calendar-container {
    max-width: 1300px;
    margin: 0 auto;
}

.calendar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.calendar-nav h2 {
    margin: 0 auto;
    color: #fff;
    background: rgba(18, 18, 31, 0.8);
    padding: 0.4rem 1.1rem;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    font-weight: 700;
    text-align: center;
}

.calendar-today-link {
    text-align: center;
    margin-bottom: 1.5rem;
}

.calendar-today-link a {
    display: table;
    margin: 0 auto;
    color: #fff;
    background: rgba(18, 18, 31, 0.8);
    padding: 0.3rem 0.9rem;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    font-size: 0.9rem;
}

.calendar-today-link a:hover {
    text-decoration: underline;
}

.calendar-grid {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: var(--gradient-dark);
    border-radius: 8px 8px 0 0;
}

.calendar-weekday {
    padding: 0.75rem;
    text-align: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.calendar-week {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.calendar-day {
    min-height: 110px;
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.calendar-day.other-month {
    background: var(--light-bg);
    opacity: 0.5;
}

.calendar-day.today {
    background: rgba(255, 70, 85, 0.08);
    border: 2px solid var(--primary-color);
}

.calendar-week:last-child .calendar-day:first-child {
    border-bottom-left-radius: 8px;
}

.calendar-week:last-child .calendar-day:last-child {
    border-bottom-right-radius: 8px;
}

.day-number {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark-text);
}

.calendar-day.today .day-number {
    color: var(--primary-color);
}

.day-events {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.day-event-badge {
    position: relative;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    cursor: pointer;
}

.badge-label {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.day-event-badge.continues {
    background: rgba(255, 70, 85, 0.5);
}

.event-tooltip {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.3rem;
    background: var(--dark-text);
    color: white;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    font-size: 0.75rem;
    white-space: normal;
    width: max-content;
    max-width: 220px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 50;
    flex-direction: column;
    gap: 0.25rem;
    text-align: left;
    line-height: 1.4;
}

.event-tooltip strong {
    color: var(--primary-color);
}

.day-event-badge:hover .event-tooltip,
.day-event-badge.active .event-tooltip {
    display: flex;
}

.upcoming-events-section h2 {
    margin-bottom: 1.5rem;
}

.events-list {
    display: grid;
    gap: 1.5rem;
}

.event-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.event-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.event-header h2 {
    flex: 1;
    margin: 0;
}

.event-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.event-details {
    margin-bottom: 1rem;
    color: #555;
}

.event-details p {
    margin: 0.5rem 0;
}

.event-description {
    margin: 1rem 0;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 4px;
    color: #555;
}

.event-organizer {
    color: #999;
    font-size: 0.9rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    margin-top: 1rem;
}

.no-events {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    color: #666;
}

.no-events a {
    color: var(--primary-color);
    text-decoration: none;
}

.no-events a:hover {
    text-decoration: underline;
}

/* Info Page */
.info-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

.info-section {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.info-section h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.info-section h3 {
    margin: 1.5rem 0 0.5rem 0;
    color: #333;
}

.info-section ul, .info-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.info-section li {
    margin-bottom: 0.5rem;
    color: #555;
}

.activities-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    margin: 1.5rem 0;
}

.activity-card {
    text-align: center;
}

.activity-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.contact-info {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 4px;
    border-left: 4px solid var(--primary-color);
    margin-top: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Statuts */
.statuts-container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.statuts-content h2 {
    margin: 2rem 0 1rem 0;
    color: var(--primary-color);
}

.statuts-content h3 {
    margin: 1.5rem 0 0.5rem 0;
}

.statuts-content p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

.statuts-content ul, .statuts-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.statuts-content li {
    margin-bottom: 0.5rem;
    color: #555;
}

.statuts-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    color: #666;
}

/* About Section */
.about-section {
    background: var(--gradient-primary);
    color: white;
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.about-section h2 {
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1rem;
    opacity: 0.95;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h4 {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.stat p {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.gallery-item .gallery-caption {
    padding: 0.75rem 1rem;
    color: var(--dark-text);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .events-grid, .articles-grid, .activities-grid {
        grid-template-columns: 1fr;
    }

    .blog-post {
        padding: 1.5rem;
    }

    .event-header {
        flex-direction: column;
        gap: 1rem;
    }

    .event-badge {
        align-self: flex-start;
    }

    .blog-post-summary {
        flex-direction: column;
    }

    .post-summary-thumb {
        flex: none;
        width: 100%;
    }

    .calendar-nav {
        flex-direction: column;
    }

    .calendar-day {
        min-height: 70px;
        font-size: 0.8rem;
    }

    .day-event-badge {
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }

    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }

    .nav-menu a {
        padding: 1rem;
        width: 100%;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}
