/* RESET & BASICS */
:root {
    --primary-color: #003366; /* Police Blue */
    --accent-color: #b22222;  /* Fire Red */
    --text-light: #f4f4f4;
    --text-dark: #222;
    --bg-dark: #1a1a1a;
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fff;
}

/* UTILITY CLASSES */
.text-center {
    text-align: center;
}

.centered-text-block {
    text-align: center; 
    max-width: 600px; 
    margin: 0 auto;
}

.announcement-date {
    font-size: 1.8rem; 
    font-weight: bold; 
    color: var(--accent-color); 
    margin-bottom: 10px; 
    text-transform: uppercase; 
    letter-spacing: 2px;
}

.title-left {
    text-align: left; 
    margin: 0 0 20px 0;
}

/* TYPOGRAPHY */
h1, h2, h3 { 
    font-weight: 800; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

.section-title { 
    text-align: center; 
    margin-bottom: 40px; 
    font-size: 2.5rem; 
    position: relative; 
}

.section-title::after {
    content: ''; 
    display: block; 
    width: 60px; 
    height: 4px; 
    background: var(--accent-color);
    margin: 10px auto 0;
}

/* NAVIGATION BAR (WHITE VERSION) */
header { 
    background: #ffffff; 
    padding: 10px 0; 
    position: sticky; 
    top: 0; 
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05); 
    border-bottom: 1px solid #eee;
}

nav { 
    max-width: 1200px; 
    margin: 0 auto; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 0 20px; 
}

.nav-links a { 
    color: #333333; 
    text-decoration: none; 
    margin-left: 20px; 
    font-weight: 700; 
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.3s; 
}

.nav-links a:hover { 
    color: var(--accent-color); 
}

/* LOGO IMAGE STYLES */
.logo { 
    display: flex; 
    align-items: center; 
    text-decoration: none; 
}

.logo img { 
    height: 60px; 
    width: auto; 
    transition: transform 0.3s ease; 
    filter: drop-shadow(0 0 1px rgba(0,0,0,0.5)); 
}

.logo img:hover { 
    transform: scale(1.05); 
}

/* HEADER SLIDER */
.hero-slider { 
    position: relative; 
    width: 100%; 
    height: 80vh; 
    overflow: hidden; 
    background: #000; 
}

.slide {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    opacity: 0; 
    transition: opacity 1s ease-in-out;
    background-size: cover; 
    background-position: center;
    display: flex; 
    align-items: center; 
    justify-content: center;
}

.slide.active { 
    opacity: 1; 
}

.slide::before { 
    content: ''; 
    position: absolute; 
    inset: 0; 
    background: rgba(0,0,0,0.5); 
}

.hero-content { 
    position: relative; 
    z-index: 2; 
    text-align: center; 
    color: var(--text-light); 
    padding: 20px; 
}

.hero-content h1 { 
    font-size: 3.5rem; 
    margin-bottom: 1rem; 
}

.btn {
    display: inline-block; 
    padding: 12px 30px; 
    background: var(--accent-color); 
    color: #fff;
    text-decoration: none; 
    font-weight: bold; 
    text-transform: uppercase; 
    border: none; 
    cursor: pointer;
    transition: background 0.3s;
}

.btn:hover { 
    background: #8b0000; 
}

/* HERO SLIDER ARROWS */
.hero-arrow {
    cursor: pointer; 
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%);
    width: 60px; 
    height: 60px; 
    background-color: rgba(0, 0, 0, 0.4); 
    color: white;
    font-weight: bold; 
    font-size: 28px; 
    border: 2px solid transparent; 
    border-radius: 50%;
    z-index: 10; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: all 0.3s ease;
}

.hero-arrow:hover { 
    background-color: var(--accent-color); 
    border-color: white; 
}

.hero-prev { 
    left: 20px; 
}

.hero-next { 
    right: 20px; 
}

/* COUNTDOWN TIMER STYLES */
.countdown-container { 
    display: flex; 
    justify-content: center; 
    gap: 15px; 
    margin-top: 25px; 
    flex-wrap: wrap; 
}

.countdown-box {
    background: rgba(0, 0, 0, 0.7); 
    border: 2px solid var(--accent-color); 
    padding: 15px 20px;
    border-radius: 8px; 
    min-width: 90px; 
    text-align: center; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.countdown-time { 
    font-size: 2.2rem; 
    font-weight: 800; 
    color: #fff; 
    display: block; 
    line-height: 1; 
    margin-bottom: 5px; 
}

.countdown-label { 
    font-size: 0.8rem; 
    text-transform: uppercase; 
    color: var(--accent-color); 
    letter-spacing: 1px; 
    font-weight: bold; 
}

/* SECTIONS */
.container { 
    max-width: 1100px; 
    margin: 0 auto; 
    padding: 80px 20px; 
}

/* ABOUT GRID */
.about-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 40px; 
}

.info-card { 
    background: #f9f9f9; 
    padding: 30px; 
    border-left: 5px solid var(--primary-color); 
}

/* TEXT & GALLERY SECTION */
.gallery-section { 
    background-color: #fff; 
    padding: 80px 20px; 
    border-bottom: 1px solid #eee; 
}

.gallery-split { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 50px; 
    align-items: center; 
    max-width: 1100px; 
    margin: 0 auto; 
}

.gallery-container { 
    position: relative; 
    width: 100%; 
    height: 400px; 
    overflow: hidden; 
    border-radius: 8px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); 
    background: #000; 
}

.gallery-slide { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    opacity: 0; 
    transition: opacity 0.5s ease-in-out; 
}

.gallery-slide.active { 
    opacity: 1; 
    z-index: 1; 
}

.gallery-slide img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

.arrow { 
    cursor: pointer; 
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%); 
    width: 50px; 
    height: 50px; 
    background-color: rgba(0, 0, 0, 0.6); 
    color: white; 
    font-weight: bold; 
    font-size: 24px; 
    border: none; 
    border-radius: 50%; 
    z-index: 10; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: 0.3s; 
}

.arrow:hover { 
    background-color: var(--accent-color); 
}

.prev { 
    left: 15px; 
}

.next { 
    right: 15px; 
}

/* VIDEO & TEXT SECTION */
.media-section { 
    background-color: var(--bg-dark); 
    color: #fff; 
    padding: 80px 20px; 
}

.media-split { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 50px; 
    align-items: center; 
    max-width: 1100px; 
    margin: 0 auto; 
}

.media-text h2 { 
    font-size: 2.5rem; 
    margin-bottom: 20px; 
    color: var(--text-light); 
}

.media-text p { 
    margin-bottom: 20px; 
    font-size: 1.1rem; 
    color: #ccc; 
}

.video-wrapper { 
    position: relative; 
    width: 100%; 
    padding-bottom: 56.25%; 
    height: 0; 
    overflow: hidden; 
    border-radius: 8px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); 
    border: 1px solid #333; 
}

.video-wrapper iframe { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    border: 0; 
}

/* FAQ SECTION & SPLIT LAYOUT */
.faq-split { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 40px; 
    align-items: start; 
}

.faq-content { 
    width: 100%; 
}

.faq-image-block { 
    position: relative; 
    height: 100%; 
    min-height: 400px; 
    border-radius: 4px; 
    overflow: hidden; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.2); 
}

.faq-image-block img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    display: block; 
}

.faq-item { 
    border-bottom: 1px solid #ddd; 
    margin-bottom: 10px; 
}

.faq-question { 
    background-color: #f8f8f8; 
    color: #333; 
    cursor: pointer; 
    padding: 20px; 
    width: 100%; 
    text-align: left; 
    border: none; 
    outline: none; 
    transition: 0.3s; 
    font-weight: 700; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    border-left: 4px solid transparent; 
}

.faq-question:hover, .faq-question.active { 
    background-color: #e9e9e9; 
    border-left: 4px solid var(--primary-color); 
    color: var(--primary-color); 
}

.faq-answer { 
    padding: 0 20px; 
    background-color: #fff; 
    max-height: 0; 
    overflow: hidden; 
    transition: max-height 0.3s ease-out; 
}

.faq-answer p { 
    padding: 15px 0; 
    color: #555; 
}

.faq-icon::after { 
    content: '+'; 
    font-size: 1.5rem; 
    font-weight: bold; 
}

.active .faq-icon::after { 
    content: '-'; 
}

/* SPONSORS SECTION */
#sponsors { 
    background-color: #b3b3b3; 
    text-align: center; 
    padding: 60px 20px; 
}

.sponsor-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
    gap: 40px; 
    align-items: center; 
    justify-items: center; 
    max-width: 1000px; 
    margin: 40px auto 0; 
}

.sponsor-logo { 
    max-width: 100%; 
    height: auto; 
    max-height: 100px; 
    opacity: 0.8; 
    transition: all 0.3s ease; 
    filter: grayscale(100%); 
}

.sponsor-logo:hover { 
    opacity: 1; 
    filter: grayscale(0%); 
    transform: scale(1.05); 
}

/* FOOTER & CONTACT */
footer { 
    background: var(--bg-dark); 
    color: var(--text-light); 
    padding: 60px 0 20px; 
}

.footer-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 40px; 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

.footer-col h4 { 
    margin-bottom: 20px; 
    color: var(--accent-color); 
}

.footer-col ul { 
    list-style: none; 
}

.footer-col ul li { 
    margin-bottom: 10px; 
}

.footer-col a { 
    color: #ccc; 
    text-decoration: none; 
}

.contact-form input, .contact-form textarea { 
    width: 100%; 
    padding: 10px; 
    margin-bottom: 15px; 
    border: 1px solid #444; 
    background: #333; 
    color: #fff; 
}

.contact-form button { 
    width: 100%; 
}

.footer-copyright {
    text-align: center; 
    margin-top: 40px; 
    font-size: 0.9rem; 
    color: #777;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .gallery-split, .media-split { 
        grid-template-columns: 1fr; 
    }
    
    .gallery-container { 
        height: 300px; 
        margin-top: 20px; 
        order: 1; 
    }
    
    .gallery-text { 
        order: 2; 
    } 
    
    .media-text { 
        margin-bottom: 40px; 
        text-align: center; 
    }
}

@media (max-width: 768px) {
    .hero-content h1 { 
        font-size: 2.5rem; 
    }
    
    .nav-links { 
        display: none; 
    }
    
    .faq-split { 
        grid-template-columns: 1fr; 
    }
    
    .faq-image-block { 
        height: 300px; 
        order: -1; 
    }
    
    .hero-arrow { 
        width: 40px; 
        height: 40px; 
        font-size: 18px; 
    }
    
    .hero-prev { 
        left: 10px; 
    }
    
    .hero-next { 
        right: 10px; 
    }
    
    .countdown-container { 
        gap: 8px; 
    }
    
    .countdown-box { 
        min-width: 65px; 
        padding: 10px; 
    }
    
    .countdown-time { 
        font-size: 1.5rem; 
    }
    
    .countdown-label { 
        font-size: 0.6rem; 
    }
}