/* General Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body, html {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #01143f;
    color: #333;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Use min-height instead of height for responsiveness */
}

#register .container {
    max-width: 1200px; /* Adjust width as per your design */
    margin: 0 auto; /* Center the form horizontally */
    padding: 0 15px; /* Optional: Add padding for inner spacing */
}

#contact .container {
    max-width: 1200px; /* Adjust width as per your design */
    margin: 0 auto; /* Center the form horizontally */
    padding: 0 15px; /* Optional: Add padding for inner spacing */
}

#player .container {
    max-width: 1400px; /* Adjust width as per your design */
    margin: 0 auto; /* Center the form horizontally */
    padding: 0 15px; /* Optional: Add padding for inner spacing */
    display: flex;
    flex-direction: column;
}


.container {
    width: 100%; /* Use full width */
    color: #b20507;
}

header {
    background: #fafafa; /* Header background color */
    color: #b20507; /* Text navigation bar color */
    padding: 15px 50px;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px; /* Add padding for inner spacing */
}

header .logo {
    height: 80px; /* Increased size */
    margin-right: 10px; /* Reduced margin to bring logos closer */
}

header nav {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: flex-end;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: inherit; /* Inherit color from header */
    text-decoration: none;
    font-size: 18px;
    font-weight: bold; /* Make the font bold */
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

nav ul li a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: currentColor; /* Use current color as background */
    transition: width 0.3s;
    position: absolute;
    left: 0;
    bottom: 0;
}

nav ul li a:hover::after {
    width: 100%;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 5px;
}

.hero {
    background: url('hero.jpg') no-repeat center center/cover;
    height: 400px;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero .container {
    text-align: center;
}

.hero .btn {
    background: #666;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.hero .btn:hover {
    background: #999;
}

main {
    flex: 1;
}

section {
    padding: 0;
    margin: 0;

}

form {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input{
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;

}
.form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

form .form-group select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.btn {
    display: inline-block;
    background: #666;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #999;
}

.timeline {
    display: inline-block; /* Ensure image respects text-align: center */
    max-width: 100%; /* Make the image responsive */
    height: auto; /* Maintain aspect ratio */
}

footer {
    background: #fafafa;
    color: #999;
    text-align: center;
    padding: 20px 0;
    margin-top: auto;
}

/* Responsive video */
#video-section video {
    width: 100%;
    height: auto;
    max-width: 1920px;
    margin: 0;
    padding: 0;
}

/* Media Queries */
@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .burger {
        display: block;
    }

    nav ul.active {
        display: block;
        width: 100%;
        text-align: center;
    }

    nav ul.active li {
        display: block;
        margin: 10px 0;
    }
}
