@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
    --primary: #ffd600; /* Bright yellow */
    --hover-primary: #ffea00;
    --text-dark: #111;
    --text-light: #fff;
    --border-color: rgba(255, 255, 255, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--text-dark);
    color: var(--text-light);
    overflow-x: hidden;
}

/* Background Section */
.hero-wrapper {
    position: relative;
    min-height: 100vh;
    background: url('./images/Header_11.webp') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
}

.hero-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.7) 100%);
    pointer-events: none;
}

.content-layer {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Top Bar */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid var(--border-color);
}

.top-bar-left {
    display: flex;
    gap: 30px;
}

.top-bar-left a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.top-bar-left a:hover {
    color: var(--primary);
}

.top-bar-right {
    display: flex;
    gap: 10px;
}

.social-circle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-circle:hover {
    border-color: var(--primary);
    background-color: var(--primary);
    color: var(--text-dark);
}

/* Main Navbar */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 5%;
    height: 80px;
    position: relative;
}

.logo-container {
    position: absolute;
    left: 5%;
    top: 0;
    background-color: #fff;
    padding: 15px 30px;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.logo-container img {
    height: 60px;
    width: auto;
}

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

.nav-links li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

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

.navbar .btn-nav {
    position: absolute;
    right: 5%;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-dark);
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 214, 0, 0.3);
}

.btn-primary:hover {
    background-color: var(--hover-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 214, 0, 0.4);
}

/* Hero Content */
.hero-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 6rem;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 4px 4px 10px rgba(0,0,0,0.7);
    line-height: 1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-date {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 40px;
    letter-spacing: 1px;
}

/* Info Boxes */
.info-bar {
    display: flex;
    gap: 0;
    margin-bottom: 30px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    width: 100%;
    max-width: 800px;
    justify-content: space-around;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-icon {
    font-size: 2rem;
    color: var(--text-light);
}

.info-text {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.info-text span:first-child {
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.info-text span:last-child {
    font-size: 1rem;
    font-weight: 600;
}

/* CTA Buttons */
.hero-ctas {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

/* Red top border */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 5px;
    background-color: #d1121d;
    z-index: 1000;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 4rem;
    }
    .navbar {
        justify-content: flex-end;
    }
    .nav-links {
        display: none; /* Hide on mobile for simplicity in this demo */
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    .info-bar {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    .info-item {
        justify-content: center;
    }
    .hero-ctas {
        flex-direction: column;
    }
    .top-bar {
        flex-direction: column;
        gap: 15px;
    }
    .logo-container {
        padding: 10px 15px;
    }
    .logo-container img {
        height: 40px;
    }
}
