/* General Reset */
* {
    box-sizing: border-box; /* Prevents padding from adding to width/height */
}

body {
    margin: 0;
    padding: 0;
    font-family: "Verdana", sans-serif;
    background-color: #000;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    display: flex;
    /* This pushes the links to opposite ends */
    justify-content: space-between; 
    background-color: black;
    padding: 15px 30px;
    border-bottom: 2px solid #bd5f06;
    position: relative;
    z-index: 10;
}

.nav-link {
    text-decoration: none;
    color: #bd5f06;
    font-weight: bold;
    transition: 0.3s;
}

.nav-link:hover {
    color: white;
}

/* Video Section - Extended Height */
.video-container {
    position: relative;
    /* Added 50px to the height as requested */
    height: calc(100vh + 50px); 
    width: 100%;
    overflow: hidden;
    background-color: #000;
}

#bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Content Section - Sits below the video */
.content {    
    position: relative;
    text-align: center;
    padding: 4rem 1rem; /* Added slightly more padding for breathing room */
    background: #000;
    margin: 0 auto;
    max-width: 900px;
}

/* Link Styles */
.org-link {
    color: #e60000; /* Solid Red */
    text-decoration: none;
    font-size: 3rem;
    font-family: "Georgia", serif;
    font-weight: bold;
    transition: color 0.3s ease;
}

.org-link:hover {
    color: #ee7777; /* Turns White on hover */
}

/* Link Styles */
.org-fleet-link {
    color: #bd5f06; /* Solid Red */
    text-decoration: none;
    font-size: 1.5rem;
    font-family: "Georgia", serif;
    font-weight: bold;
    transition: color 0.3s ease;
}

.org-fleet-link:hover {
    color: #ec9e55; /* Turns White on hover */
}

/* Subtitle and Motto - Off-White/Greyish */
.subtitle {
    color: #e0e0e0; /* Light greyish white */
    font-size: 1.1rem;
    margin-top: 10px;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.motto-box p {
    color: #cccccc; /* Slightly darker off-white for the motto */
    font-size: 1.4rem;
    margin: 10px 0;
    font-style: italic;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .video-container { height: calc(40vh + 50px); } 
    .org-link { font-size: 2.2rem; }
    .motto-box p { font-size: 1.1rem; }
}