/* --- GLOBAL VARIABLES --- */
:root {
    --primary-red: #e61e25;
    --pure-black: #000000;
    --pure-white: #ffffff;
    --transition: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--pure-black);
    color: var(--pure-white);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* --- NAVIGATION --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

nav.scrolled {
    background: rgba(0, 0, 0, 0.95);
    padding: 10px 50px;
    border-bottom: 2px solid var(--primary-red);
}

.logo img {
    height: 60px;
    cursor: pointer;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-red);
}

.menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #222;
    display: none;
    flex-direction: column;
    min-width: 180px;
}

.dropdown-menu a {
    padding: 10px;
    display: block;
}

.dropdown:hover .dropdown-menu {
    display: flex;
}

.dropdown-menu a:hover {
    background: #333;
}

/* --- SIDEBAR MENU --- */
.sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    /* Hidden off-screen to the left */
    width: 300px;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    /*background: var(--pure-black);*/
    border-right: 3px solid var(--primary-red);
    z-index: 2000;
    transition: 0.5s ease;
    padding: 100px 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar.active {
    right: 0;
    /* Slides into view */
}

.sidebar a {
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    transition: var(--transition);
}

.sidebar a:hover {
    color: var(--primary-red);
    padding-left: 10px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
}

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('background.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease forwards;
}

.hero-content span {
    color: var(--primary-red);
}

.btn-main {
    background: var(--primary-red);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
    transition: var(--transition);
    display: inline-block;
    margin-top: 20px;
}

.btn-main:hover {
    background: white;
    color: var(--primary-red);
    transform: translateY(-5px);
}

/* --- SECTIONS --- */
.section {
    padding: 100px 10%;
}

#transport {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('background2.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #111;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #222;
    opacity: 0;
    transform: translateY(30px);
}

.service-card:hover {
    border-color: var(--primary-red);
    transform: scale(1.02);
}

.service-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.service-info {
    padding: 25px;
}

.service-info h3 {
    color: var(--primary-red);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

#explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--primary-red);
    font-weight: 500;
    transition: 0.3s;
}

#explore-btn:hover {
    gap: 10px;
}

.merch-logo {
    max-width: 150px;
    margin-bottom: 15px;
}

/* --- FOOTER --- */
footer {
    background: #080808;
    padding: 80px 10% 20px;
    text-align: center;
    border-top: 5px solid var(--primary-red);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    border-bottom: #ffffff 1px solid;
}

.social-links a {
    color: white;
    font-size: 2rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-red);
    transform: scale(1.2);
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
    nav {
        padding: 20px;
    }

    .nav-links {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .section {
        padding: 60px 5%;
    }

    .section-title {
        font-size: 2rem;
    }
}