*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{ font-family:Montserrat,sans-serif; background:#0d0d0d; color:white; }

header{ position:fixed; width:100%; top:0; display:flex; justify-content:space-between; align-items:center; padding:20px 80px; background:rgba(0,0,0,.7); backdrop-filter:blur(10px); z-index:999; }

/* Image Logo Styling */
.logo a { display: flex; align-items: center; text-decoration: none; transition: 0.3s; }
.logo img { max-height: 110px; width: auto; transition: 0.3s; }
.logo img:hover { opacity: 0.8; }

nav ul{ display:flex; list-style:none; }
nav li{ margin-left:35px; }
nav a{ color:white; text-decoration:none; transition:.3s; }
nav a:hover{ color:#d81f26; }
nav a.active { color: #d81f26; font-weight: 600; }

.btn{ display:inline-block; padding:16px 40px; margin:10px; border:2px solid white; color:white; text-decoration:none; transition:.3s; }
.btn:hover{ background:white; color:black; }
.red{ background:#d81f26; border:none; }
.red:hover{ background:#ff3037; color:white; }

section{ padding:120px 10%; }

/* =========================================
   PREMIUM FOOTER STYLING
   ========================================= */
footer {
    background: black;
    padding: 60px 10% 30px;
    text-align: center;
    border-top: 1px solid #1a1a1a;
}
footer h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 36px;
    letter-spacing: 2px;
    margin-bottom: 8px;
    color: #fff;
}
footer .tagline {
    color: #b3b3b3;
    font-size: 16px;
    margin-bottom: 30px;
}
.footer-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    color: #666;
    font-size: 14px;
}
.footer-legal p {
    margin: 0;
}
.footer-legal .divider {
    color: #333;
}
.footer-legal a {
    color: #666;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}
.footer-legal a:hover {
    color: #d81f26;
}
/* ========================================= */

.overlay{ position:absolute; width:100%; height:100%; background:rgba(0,0,0,.65); }
.hero-content{ position:relative; max-width:900px; padding:20px; }
.about-hero { height: 60vh; background: url("../images/hero.jpg") center center/cover; display: flex; justify-content: center; align-items: center; text-align: center; position: relative; }
.about-hero h1 { font-family: "Bebas Neue"; font-size: 80px; letter-spacing: 4px; }

.video-wrapper { max-width: 1000px; margin: 0 auto 25px auto; }
.video{ max-width:1000px; margin:auto; }
iframe{ width:100%; height:550px; border:none; border-radius:15px; }

/* =========================================
   TABLET / IPAD RESPONSIVENESS (1024px)
   ========================================= */
@media (max-width: 1024px) {
    header {
        padding: 15px 40px;
    }
    .logo img {
        max-height: 80px;
    }
    nav li {
        margin-left: 20px;
    }
    .about-hero {
        padding-top: 120px;
    }
}

/* =========================================
   GLOBAL MOBILE & TABLET RESPONSIVENESS (768px)
   ========================================= */
@media (max-width: 768px) {
    /* Stack the header and navigation */
    header {
        flex-direction: column;
        padding: 15px 20px;
    }
    
    /* Shrink logo on mobile so it doesn't take up the whole screen */
    .logo img {
        max-height: 70px;
    }
    
    nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    nav li {
        margin-left: 0;
        margin: 5px 10px;
    }
    
    /* Shrink global section padding so it doesn't look empty */
    section {
        padding: 60px 5%;
    }
    
    /* Fix header overlap by increasing top padding and auto height */
    .about-hero {
        height: auto;
        min-height: 50vh;
        padding: 160px 20px 60px 20px; 
    }
    .about-hero h1 {
        font-size: 50px;
    }
    .about-hero h2 {
        font-size: 24px;
    }

    /* Fix Footer text size and stack legal links */
    footer {
        padding: 40px 20px;
    }
    footer h2 {
        font-size: 32px;
    }
    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
    .footer-legal .divider {
        display: none;
    }
}

/* =========================================
   COOKIE BANNER
   ========================================= */
#cookie-banner {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 20px 10%;
    text-align: center;
    z-index: 9999;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.5);
    transition: bottom 0.5s ease-in-out;
    display: none; 
    justify-content: center;
    align-items: center;
    gap: 30px;
    font-size: 14px;
}
#cookie-banner.show {
    display: flex; 
    bottom: 0;
}
#cookie-banner button {
    background: #d81f26;
    color: white;
    border: none;
    padding: 10px 25px;
    cursor: pointer;
    font-family: Montserrat, sans-serif;
    font-weight: bold;
    transition: 0.3s;
    white-space: nowrap;
}
#cookie-banner button:hover {
    background: #ff3037;
}

@media (max-width: 1024px) {
    #cookie-banner {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
}