
/* Horse Fan Page - Modern CSS Styles */
/* Responsive design with smooth animations */

/* === CSS Variables for Theme === */
:root {
    /* Colors - Earthy tones with horse-inspired palette */
    --primary-color: #8B4513; /* SaddleBrown */
    --primary-dark: #6D360F;
    --secondary-color: #556B2F; /* DarkOliveGreen */
    --accent-color: #FFD700; /* Gold */
    --accent-dark: #DAA520;
    --background-light: #F5F5DC; /* Beige */
    --background-white: #FFFFFF;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --border-color: #DEB887; /* Burlywood */
    
    /* Gradients */
    --primary-gradient: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    --secondary-gradient: linear-gradient(135deg, var(--secondary-color), #4A5C26);
    --gold-gradient: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    --header-gradient: linear-gradient(135deg, var(--primary-color), #A0522D);
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 20px;
    --border-radius: 15px;
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    
    /* Animations */
    --animation-speed: 0.3s;
    --transition-speed: 0.3s;
}

/* === Global Styles === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* === Navigation === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--background-white);
    box-shadow: var(--shadow-light);
    z-index: 1000;
    padding: 15px 0;
    transition: all var(--transition-speed);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-text {
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all var(--transition-speed);
    position: relative;
    padding: 5px 0;
}

/* Home Button in Navigation */
.nav-link.home-nav {
    background: var(--primary-gradient);
    color: var(--background-white) !important;
    border-radius: 20px;
    padding: 8px 15px !important;
    font-weight: 600 !important;
}

.nav-link.home-nav:hover {
    background: var(--gold-gradient);
    color: var(--text-dark) !important;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.nav-link:hover {
    color: var(--primary-color);
}

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

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

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all var(--transition-speed);
    border-radius: 3px;
}

/* === Hero Section === */
.hero {
    padding: 160px 20px 100px;
    background: var(--header-gradient);
    color: var(--background-white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="40" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="70" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="80" r="4" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 200px;
    opacity: 0.5;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding: 0 10px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-speed);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-light);
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

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

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    background: var(--background-light);
}

.hero-visual {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.floating-horse {
    animation: float 6s ease-in-out infinite;
    font-size: 8rem;
    position: relative;
}

.floating-horse::before {
    content: '✨';
    position: absolute;
    top: -20px;
    right: -30px;
    animation: twinkle 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(-5deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(-15px) rotate(5deg); }
}

@keyframes twinkle {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1.2); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s ease-in-out infinite;
}

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

.scroll-indicator span {
    font-size: 3rem;
    color: var(--background-white);
    opacity: 0.7;
}

.scroll-indicator p {
    color: var(--background-white);
    margin-top: 5px;
    font-size: 0.9rem;
}

/* === Stats Section === */
.stats-section {
    padding: var(--section-padding);
    background: var(--background-white);
}

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

.stat-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--background-light);
    border-radius: var(--border-radius);
    transition: all var(--transition-speed);
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.stat-number {
    font-family: 'Fredoka', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* === Memes Section === */
.memes-section {
    padding: var(--section-padding);
    background: var(--background-light);
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.memes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.meme-card {
    background: var(--background-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-speed);
    animation: fadeInUp 0.6s ease-out;
}

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

.meme-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--primary-gradient);
    color: var(--background-white);
}

.meme-header h3 {
    font-size: 1rem;
    margin: 0;
}

.meme-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.meme-btn:hover {
    transform: scale(1.2);
}

.meme-image {
    height: 250px;
    width: 100%;
    background: linear-gradient(135deg, var(--background-light), var(--background-white));
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.meme-placeholder {
    text-align: center;
    padding: 20px;
}

.meme-placeholder .emoji-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 15px;
}

.meme-text-overlay {
    display: block;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.7);
    color: var(--background-white);
    padding: 10px 20px;
    border-radius: 30px;
    max-width: 80%;
    line-height: 1.4;
}

.meme-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.meme-category {
    background: var(--secondary-gradient);
    color: var(--background-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.reaction-btn {
    background: none;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all var(--transition-speed);
}

.reaction-btn:hover {
    background: var(--background-light);
}

.reaction-count {
    font-weight: 600;
    font-size: 0.9rem;
}

/* === Jokes Section === */
.jokes-section {
    padding: var(--section-padding);
    background: var(--background-white);
}

.jokes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.joke-card {
    background: var(--background-light);
    border-radius: var(--border-radius);
    padding: 30px;
    border-left: 5px solid var(--accent-color);
    transition: all var(--transition-speed);
}

.joke-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.joke-content {
    margin-bottom: 20px;
}

.joke-setup {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.joke-punchline {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Fredoka', sans-serif;
    line-height: 1.5;
}

.joke-punchline strong {
    color: var(--secondary-color);
    font-family: 'Fredoka', sans-serif;
}

.joke-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.joke-btn {
    background: none;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all var(--transition-speed);
    font-weight: 600;
}

.joke-btn:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.laugh-count, .groan-count {
    font-size: 0.9rem;
    margin-left: 5px;
}

.joke-add-section {
    text-align: center;
}

.submit-form {
    max-width: 600px;
    margin: 30px auto 0;
    padding: 30px;
    background: var(--background-light);
    border-radius: var(--border-radius);
}

.submit-form.hidden {
    display: none;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all var(--transition-speed);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.form-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.form-actions .btn {
    padding: 12px 25px;
}

/* === Fun Facts Section === */
.fun-facts-section {
    padding: var(--section-padding);
    background: var(--primary-gradient);
    color: var(--background-white);
}

.fun-facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.fun-fact-card {
    background: var(--background-white);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: all var(--transition-speed);
    animation: fadeInUp 0.6s ease-out;
}

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

.fact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.fun-fact-card h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.fun-fact-card p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.fun-fact-random {
    text-align: center;
    margin-top: 40px;
}

/* === Gallery Section === */
.gallery-section {
    padding: var(--section-padding);
    background: var(--background-light);
}

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

.gallery-item {
    background: var(--background-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-speed);
    animation: fadeInUp 0.6s ease-out;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.gallery-image {
    height: 200px;
    width: 100%;
    background: linear-gradient(135deg, var(--background-light), var(--background-white));
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.gallery-placeholder {
    font-size: 5rem;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.gallery-caption {
    padding: 15px 20px;
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
    background: var(--background-light);
}

/* === Interactive Section === */
.interactive-section {
    padding: var(--section-padding);
    background: var(--background-white);
}

.interactive-content {
    background: var(--primary-gradient);
    border-radius: var(--border-radius);
    padding: 50px;
    color: var(--background-white);
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.interactive-text h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.interactive-text p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.interactive-game {
    background: var(--background-white);
    border-radius: var(--border-radius);
    padding: 40px;
    margin-top: 40px;
    text-align: center;
}

.game-status {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--background-light);
    border-radius: 10px;
}

.score, .question-count {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.question-container {
    margin-bottom: 30px;
}

.question-text {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    font-family: 'Fredoka', sans-serif;
    color: var(--primary-color);
}

.options-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.option-btn {
    padding: 20px;
    background: var(--background-light);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all var(--transition-speed);
    font-family: 'Poppins', sans-serif;
}

.option-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
}

.option-btn.correct {
    background: #4CAF50;
    color: var(--background-white);
    border-color: #388E3C;
}

.option-btn.wrong {
    background: #F44336;
    color: var(--background-white);
    border-color: #D32F2F;
}

.feedback {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.2rem;
    display: none;
}

.feedback.correct {
    background: #E8F5E9;
    color: #2E7D32;
    display: block;
}

.feedback.wrong {
    background: #FFEBEE;
    color: #C62828;
    display: block;
}

/* === Horse of the Month === */
.horse-month-section {
    padding: var(--section-padding);
    background: var(--background-light);
}

.horse-month-content {
    text-align: center;
}

.horse-month-content h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.horse-of-month {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    background: var(--background-white);
    border-radius: var(--border-radius);
    padding: 50px;
    box-shadow: var(--shadow-light);
}

.horse-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.photo-placeholder {
    font-size: 6rem;
}

.horse-details {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.horse-details h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.horse-bio {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
    color: var(--text-dark);
}

.horse-stats {
    margin-bottom: 30px;
}

.stat {
    margin-bottom: 20px;
}

.stat-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.stat-bar {
    height: 15px;
    background: var(--background-light);
    border-radius: 10px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 10px;
    transition: width 1s ease-in-out;
}

/* === Footer === */
.footer {
    background: var(--primary-dark);
    color: var(--background-white);
    padding: 60px 0 30px;
}

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

.footer-section h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-desc {
    margin-bottom: 20px;
    line-height: 1.6;
    opacity: 0.9;
}

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

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--accent-color);
    color: var(--text-dark);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all var(--transition-speed);
}

.social-link:hover {
    transform: translateY(-3px);
    background: var(--accent-dark);
    color: var(--background-white);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all var(--transition-speed);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
}

.newsletter-form .btn {
    padding: 12px 20px;
    min-width: 100px;
}

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

.footer-bottom p {
    margin-bottom: 15px;
    opacity: 0.7;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

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

/* === Animations === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

/* === Mobile Responsive === */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .horse-of-month {
        flex-direction: column;
        text-align: center;
    }
    
    .horse-details {
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--background-white);
        width: 100%;
        padding: 20px;
        box-shadow: var(--shadow-light);
        transition: left var(--transition-speed);
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        display: none;
    }
    
    .mobile-menu-overlay.active {
        display: block;
    }
    
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--background-white);
        z-index: 1000;
        transition: right var(--transition-speed);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    }
    
    .mobile-menu.active {
        right: 0;
    }
    
    .mobile-menu-content {
        padding: 20px;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--border-color);
    }
    
    .close-menu {
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
    }
    
    .mobile-menu-list {
        list-style: none;
        margin-top: 20px;
        flex: 1;
    }
    
    .mobile-nav-link {
        display: block;
        padding: 15px 20px;
        text-decoration: none;
        color: var(--text-dark);
        font-weight: 500;
        transition: all var(--transition-speed);
        border-radius: 10px;
    }
    
    .mobile-nav-link:hover {
        background: var(--background-light);
        color: var(--primary-color);
    }
    
    .hero {
        padding: 140px 20px 80px;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .memes-grid,
    .jokes-container,
    .fun-facts-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .interactive-content {
        padding: 30px 20px;
    }
    
    .options-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .horse-of-month {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
    }
    
    .interactive-text h2 {
        font-size: 1.8rem;
    }
    
    .question-text {
        font-size: 1.2rem;
    }
    
    .horse-details h3 {
        font-size: 1.5rem;
    }
}
