/* Responsive Video Embeds */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    margin: 2.5rem 0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* NAVBAR CUSTOMIZATION */
.navbar {
    transition: all 0.3s ease;
    /* border-bottom: 1px solid #eee; */
}

.nav-link {
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1rem !important;
}

.nav-link:hover {
    color: var(--bs-primary) !important;
}

/* HERO SECTION WITH PARALLAX */
.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), 
                      url('assets/landingPageBackground.webp');
    height: 90vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* THE PARALLAX MAGIC */
    background-repeat: no-repeat;
}

.hero-subpage {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                      url('assets/truckSubPage.webp');
    height: 50vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}
.hero-subpage2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                      url('assets/truck2.webp');
    height: 50vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.hero-subpage3 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                      url('assets/zdj-3.webp');
    height: 50vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.shadow-text {
    text-shadow: 2px 4px 15px rgba(0, 0, 0, 0.7);
}

/* MAP CONTAINER */
.map-container {
    transition: transform 0.3s ease;
    border: 1px solid #dee2e6;
}

.map-container:hover {
    transform: scale(1.02);
}

/* BUTTONS */
.btn {
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.4);
}

.transition-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.transition-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.1) !important;
}

/* FOOTER */
footer {
    font-size: 0.9rem;
}

/* CUSTOM GRADIENT BADGES */
.country-badge-gradient {
    background: linear-gradient(to right, transparent, rgba(13, 110, 253, 0.8)) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    min-width: 180px;
    display: inline-block;
    margin: 10px; /* This creates the separation you're looking for */
    text-align: center;
}

.country-badge-gradient:hover {
    background: linear-gradient(to right, transparent, rgba(13, 110, 253, 1)) !important;
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.8) !important;
}

/* IMAGE CONSTRAINTS */
.fleet-img {
    height: 300px;
    width: 100%;
    object-fit: cover; /* Crops the image to fill the box without stretching */
}

.brand-logo-img {
    max-height: 80px;
    width: auto;
    max-width: 100%;
    filter: grayscale(100%); /* Optional: makes logos look professional and uniform */
    transition: filter 0.3s ease;
}

.brand-logo-img:hover {
    filter: grayscale(0%);
}

.privacy-text{
    font-size: 0.9rem;
    color: #6c757d;
}

body::after {
    content: "PREVIEW COPY - PUBLIC ACCESS RESTRICTED!";
    position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(-45deg);
    font-size: 4rem; color: rgba(0, 0, 0, 0.1); pointer-events: none; z-index: 9999;
}