@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');
        
:root {
    --bg-color: #ffffff;
    --bg-alt: #f5f5f5;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #555555;
    --accent-red: #e60000;
    --accent-hover: #cc0000;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Navbar */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: background-color 0.3s ease;
}

.site-header.scrolled {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 20px 50px;
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-light);
    text-decoration: none;
    text-transform: uppercase;
}

.logo span {
    color: var(--accent-red);
}

/* Menu Toggle Button (Hidden on Desktop) */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--text-light);
}

/* Hamburger to X Animation */
.menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.site-navigation > ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.site-navigation li {
    position: relative;
}

/* Sub-menu Dropdowns */
.site-navigation ul.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    min-width: 220px;
    padding: 10px 0;
    flex-direction: column;
    gap: 0;
    border-top: 3px solid var(--accent-red);
    z-index: 101;
    list-style: none;
}

/* Show sub-menu on hover */
.site-navigation li:hover > ul.sub-menu {
    display: flex;
}

.site-navigation a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
    text-transform: uppercase;
    display: block;
}

.site-navigation a:hover {
    color: var(--accent-red);
}

/* Style links inside dropdown */
.site-navigation ul.sub-menu a {
    color: var(--text-dark);
    padding: 10px 20px;
    text-transform: none; /* Submenus look better normal cased */
    font-size: 14px;
}

.site-navigation ul.sub-menu a:hover {
    background-color: var(--bg-alt);
    color: var(--accent-red);
}

/* Button style for the last item in the MAIN menu only */
.site-navigation > ul > li:last-child > a {
    background-color: transparent;
    border: 2px solid var(--accent-red);
    padding: 10px 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.site-navigation > ul > li:last-child > a:hover {
    background-color: var(--accent-red);
    color: var(--text-light);
}

/* Internal Page Header */
.site-header.internal-header {
    position: relative;
    background-color: var(--text-dark);
    padding: 20px 50px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: #000;
    color: var(--text-light);
}

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 0;
    object-fit: cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(5,5,5,0.6) 0%, rgba(5,5,5,0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.1;
    text-transform: uppercase;
}

.hero h1 span {
    color: var(--accent-red);
}

.hero p {
    font-size: 22px;
    margin-bottom: 40px;
    color: #eeeeee;
    font-weight: 600;
}

.btn {
    display: inline-block;
    background-color: var(--accent-red);
    color: var(--text-light);
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

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

/* Features Section */
.features {
    padding: 100px 50px;
    background-color: var(--bg-color);
    text-align: center;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 60px;
    text-transform: uppercase;
    color: var(--text-dark);
}

.section-title span {
    color: var(--accent-red);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background-color: #f6f6f6;
    padding: 40px;
    border: 1px solid #eeeeee;
    transition: border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
}

.card:hover {
    border-color: var(--text-dark);
}

.card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.card p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 1.6;
}

.card-btn {
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.card-btn:hover {
    color: var(--accent-red);
    border-bottom: 1px solid var(--accent-red);
}

/* CTA Banner */
.cta-banner {
    background-color: var(--accent-red);
    color: var(--text-light);
    text-align: center;
    padding: 80px 20px;
}

.cta-banner h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cta-banner p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-white {
    display: inline-block;
    background-color: var(--text-light);
    color: var(--accent-red);
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 4px;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-white:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}


/* Two Column Section */
.two-col-section {
    background-color: var(--bg-alt);
}

.two-col {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 50px;
    gap: 60px;
}

.two-col-content {
    flex: 1;
}

.two-col-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.two-col-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 18px;
}

/* Dark Section modifiers */
.dark-section {
    background-color: #111111;
    color: var(--text-light);
}

.dark-section .two-col-content h2 {
    color: var(--text-light);
}

.dark-section .two-col-content p {
    color: #cccccc;
}

.two-col-img {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.two-col-img img {
    width: 100%;
    height: auto;
    display: block;
}

.info-box {
    background-color: var(--accent-red);
    color: var(--text-light);
    padding: 40px;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(230, 0, 0, 0.2);
}

.info-box h3 {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 24px;
}

.info-box ul {
    list-style: none;
    line-height: 2;
}

/* Gallery Section */
.gallery {
    padding: 100px 50px;
    background-color: var(--bg-color);
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.gallery-grid img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Footer */
.site-footer {
    background-color: #111;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.site-footer p {
    color: #888;
    margin-top: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .site-header {
        padding: 20px;
        /* Keep flex-direction row so logo and hamburger are side by side */
        flex-direction: row; 
    }
    
    .menu-toggle {
        display: block;
    }
    
    .site-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--text-dark);
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }
    
    .site-navigation.toggled {
        display: block;
    }
    
    .site-navigation > ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    
    .site-navigation li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .site-navigation a {
        padding: 15px;
        display: block;
    }
    
    .site-navigation ul.sub-menu {
        position: static;
        display: none;
        background-color: transparent;
        box-shadow: none;
        border-top: none;
        min-width: 100%;
    }
    
    .site-navigation ul.sub-menu a {
        color: #cccccc;
        font-size: 14px;
        padding: 10px;
    }
    
    /* On mobile, either expand sub-menus on hover or keep them expanded. Let's show them on hover. */
    .site-navigation li:hover > ul.sub-menu {
        display: flex;
    }
    
    .site-navigation > ul > li:last-child {
        border-bottom: none;
        margin-top: 15px;
    }
    
    .site-navigation > ul > li:last-child > a {
        display: inline-block;
        width: auto;
    }
    
    .hero h1 {
        font-size: 42px;
    }
    
    .two-col {
        flex-direction: column;
        padding: 50px 20px;
    }
}
