/* ==========================================
   GLOBAL STYLES & RESET
   ========================================== */

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

:root {
    /* Colors */
    --primary-color: #c41e3a;
    --secondary-color: #1a1a1a;
    --accent-color: #f4f4f4;
    --text-dark: #222;
    --text-light: #fff;
    --text-gray: #666;
    --overlay-dark: rgba(0, 0, 0, 0.6);
    --overlay-light: rgba(0, 0, 0, 0.3);

    /* Fonts */
    --font-primary: 'Montserrat', sans-serif;
    --font-display: 'Playfair Display', serif;

    /* Spacing */
    --section-padding: 80px 20px;
    --container-max: 1200px;

    /* Transitions */
    --transition-smooth: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

.section {
    padding: var(--section-padding);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 60px;
}

.nav-logo-image {
    width: 15em;
    height: 60px;
    object-fit: contain;
    border-radius: 50%;
    background: transparent;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    left: 20px;
}

.nav-logo-image.visible {
    opacity: 1;
    transform: scale(1);
}

.nav-logo h1 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-light);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

.nav-social {
    display: flex;
    gap: 1rem;
}

.nav-social a {
    color: var(--text-light);
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.nav-social a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: var(--transition-smooth);
}

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

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-video,
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-video {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-image {
    opacity: 1;
    transition: opacity 0.5s ease;
}

.hero-video.hidden {
    opacity: 0;
}

.hero-image.visible {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
    max-width: 900px;
    animation: fadeInUp 1s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    width: clamp(240px, 36vw, 480px);
    height: auto;
    margin: 0 auto 2rem auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5)) drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    animation: logoEntrance 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.hero-logo.shrink {
    opacity: 0;
    transform: scale(0.5) translateY(-100px);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 3rem;
    font-weight: 300;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
    min-height: 3.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.typewriter-bold {
    color: var(--text-light);
    font-weight: 700;
}

.typewriter {
    color: var(--text-light);
    font-weight: 400;
}

.typewriter strong {
    color: var(--text-light);
    font-weight: 700;
}

.typewriter-cursor {
    display: none;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .hero-subtitle {
        text-align: center;
        min-height: 5rem;
    }
}

.hero-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: var(--text-light);
    padding: 0;
    width: 180px;
    height: 180px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.1);
    position: absolute;
    bottom: 100px;
    right: 40px;
    transition: all 0.3s ease;
    box-shadow:
        0 0 0 8px rgba(0, 0, 0, 0.5),
        inset 0 2px 10px rgba(255, 255, 255, 0.1),
        inset 0 -2px 10px rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    animation: buttonGlow 3s ease-in-out infinite;
}

.hero-cta.show {
    opacity: 1;
    animation: buttonEntrance 0.6s ease forwards, buttonGlow 3s ease-in-out 0.6s infinite;
}

.hero-cta::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.hero-cta::after {
    content: 'ENGINE\ASTART';
    white-space: pre;
    text-align: center;
    line-height: 1.5;
}

@media (hover: hover) {
    .hero-cta:hover {
        background: linear-gradient(135deg, #c41e3a 0%, #a01829 100%);
        transform: scale(1.05);
        box-shadow:
            0 0 0 8px rgba(0, 0, 0, 0.4),
            0 0 40px rgba(196, 30, 58, 0.6),
            0 0 60px rgba(196, 30, 58, 0.4),
            inset 0 2px 10px rgba(255, 255, 255, 0.2),
            inset 0 -2px 10px rgba(0, 0, 0, 0.5);
        border-color: rgba(255, 255, 255, 0.2);
    }
}

.hero-cta:active {
    transform: scale(0.98);
    box-shadow:
        0 0 0 8px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(196, 30, 58, 0.8),
        inset 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-cta.hidden {
    opacity: 0 !important;
    pointer-events: none;
    transition: opacity 0.3s ease;
    animation: none !important;
}



.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeInUp 0.6s ease 1.6s forwards, float 2s ease-in-out 2.2s infinite;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--text-light), transparent);
}

@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: scale(1.3);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes buttonEntrance {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    60% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes buttonGlow {
    0% {
        box-shadow:
            0 0 0 8px rgba(0, 0, 0, 0.5),
            0 0 5px 8px rgba(196, 30, 58, 0),
            0 0 10px 10px rgba(196, 30, 58, 0),
            0 0 20px 12px rgba(196, 30, 58, 0),
            inset 0 2px 10px rgba(255, 255, 255, 0.1),
            inset 0 -2px 10px rgba(0, 0, 0, 0.5);
    }
    25% {
        box-shadow:
            0 0 0 8px rgba(0, 0, 0, 0.5),
            0 0 8px 8px rgba(196, 30, 58, 0.15),
            0 0 15px 10px rgba(196, 30, 58, 0.1),
            0 0 25px 12px rgba(196, 30, 58, 0.05),
            inset 0 2px 10px rgba(255, 255, 255, 0.1),
            inset 0 -2px 10px rgba(0, 0, 0, 0.5);
    }
    50% {
        box-shadow:
            0 0 0 8px rgba(0, 0, 0, 0.5),
            0 0 15px 10px rgba(196, 30, 58, 0.3),
            0 0 30px 15px rgba(196, 30, 58, 0.2),
            0 0 50px 20px rgba(196, 30, 58, 0.1),
            inset 0 2px 10px rgba(255, 255, 255, 0.1),
            inset 0 -2px 10px rgba(0, 0, 0, 0.5);
    }
    75% {
        box-shadow:
            0 0 0 8px rgba(0, 0, 0, 0.5),
            0 0 8px 8px rgba(196, 30, 58, 0.15),
            0 0 15px 10px rgba(196, 30, 58, 0.1),
            0 0 25px 12px rgba(196, 30, 58, 0.05),
            inset 0 2px 10px rgba(255, 255, 255, 0.1),
            inset 0 -2px 10px rgba(0, 0, 0, 0.5);
    }
    100% {
        box-shadow:
            0 0 0 8px rgba(0, 0, 0, 0.5),
            0 0 5px 8px rgba(196, 30, 58, 0),
            0 0 10px 10px rgba(196, 30, 58, 0),
            0 0 20px 12px rgba(196, 30, 58, 0),
            inset 0 2px 10px rgba(255, 255, 255, 0.1),
            inset 0 -2px 10px rgba(0, 0, 0, 0.5);
    }
}

/* ==========================================
   EVENTS SECTION
   ========================================== */

.events-section {
    background: var(--accent-color);
}

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

.event-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.event-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.event-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.event-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.event-content h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.event-location {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.event-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex-grow: 1;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--text-light);
}

.btn-sold-out {
    background: var(--text-gray);
    border: 2px solid var(--text-gray);
    color: var(--text-light);
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: not-allowed;
    opacity: 0.7;
}

/* ==========================================
   NEWS SECTION
   ========================================== */

.news-section {
    background: white;
}

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

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

.news-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.news-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-card.featured .news-image {
    height: 100%;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.news-content {
    padding: 1.5rem;
}

.news-card.featured .news-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-date {
    display: block;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.news-card.featured .news-content h3 {
    font-size: 2.2rem;
}

.news-content p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
    transition: var(--transition-smooth);
}

.read-more:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* ==========================================
   FAQ SECTION
   ========================================== */

.faq-section {
    background: var(--accent-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */

.contact-section {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-card {
    background: var(--accent-color);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.contact-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

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

.contact-card p,
.contact-card a {
    color: var(--text-gray);
}

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

.social-links {
    margin-top: 2rem;
}

.social-links h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--accent-color);
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.social-btn:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateX(5px);
}

.contact-form {
    background: var(--accent-color);
    padding: 3rem;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid transparent;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background: white;
    transition: var(--transition-smooth);
}

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

.form-group textarea {
    resize: vertical;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
    transition: var(--transition-smooth);
    width: 100%;
}

.btn-primary:hover {
    background: #a01829;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(196, 30, 58, 0.4);
}

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

.footer {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 3rem 0 1.5rem 0;
}

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

.footer-logo h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: var(--text-gray);
    font-style: italic;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-light);
    transition: var(--transition-smooth);
}

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

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

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

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

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

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(26, 26, 26, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .nav-social {
        display: none;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .news-card.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .news-card.featured .news-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 20px;
    }

    .hero {
        height: 100vh;
        min-height: 100vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .media-toggle {
        bottom: 120px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .events-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem;
    }

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

@media (max-width: 480px) {
    .nav-logo h1 {
        font-size: 1.2rem;
    }

    .hero-cta {
        width: 108px;
        height: 108px;
        font-size: 0.65rem;
        letter-spacing: 1.2px;
        bottom: 60px;
        left: 50%;
        right: auto;
        animation: buttonEntranceMobile 0.6s ease 1.4s forwards, buttonGlow 3s ease-in-out 2s infinite;
    }

    .hero-cta:active {
        transform: translateX(-50%) scale(0.98);
    }

    @media (hover: hover) {
        .hero-cta:hover {
            transform: translateX(-50%) scale(1.05);
        }
    }

    @keyframes buttonEntranceMobile {
        0% {
            opacity: 0;
            transform: translateX(-50%) scale(0.5);
        }
        60% {
            opacity: 1;
            transform: translateX(-50%) scale(1.1);
        }
        100% {
            opacity: 1;
            transform: translateX(-50%) scale(1);
        }
    }
}

    .event-content,
    .contact-form {
        padding: 1.5rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
}

/* ==========================================
   COOKIE CONSENT NOTICE
   ========================================== */

.cookie-notice {
    position: fixed !important;
    bottom: 20px !important;
    left: 50% !important;
    max-width: 600px !important;
    width: calc(100% - 40px) !important;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(15px);
    padding: 25px 30px;
    z-index: 10000 !important;
    border-radius: 12px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    margin: 0 !important;
    transform: translateX(-50%) translateY(200px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-notice.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.95;
}

.btn-cookie {
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    padding: 12px 40px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.btn-cookie:hover {
    background: #a01829;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 30, 58, 0.3);
}

.btn-cookie:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .cookie-content p {
        font-size: 0.85rem;
    }

    .btn-cookie {
        width: 100%;
        padding: 14px 30px;
    }
}

/* ==========================================
   COOKIE BANNER (SIMPLE)
   ========================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    z-index: 9999;
    border-top: 1px solid rgba(196, 30, 58, 0.5);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-banner:hover {
    background: rgba(0, 0, 0, 0.5);
}

.cookie-banner.hide {
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
}

.cookie-banner-content p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
    text-align: center;
    flex: 1;
}

.cookie-banner-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-banner-content a:hover {
    color: #ff3a5a;
}

.cookie-close {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    opacity: 0.8;
    flex-shrink: 0;
}

.cookie-close:hover {
    color: var(--primary-color);
    opacity: 1;
    transform: rotate(90deg);
}

.cookie-close svg {
    display: block;
}

@media (max-width: 768px) {
    .cookie-banner-content p {
        font-size: 0.85rem;
    }
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */

.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}
