/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #FFFFFF; /* White text */
    background-color:#000000; /* Black background */
    background-image: url('logos.png'); /* Logo as background */
    background-position: center center; /* Center the logo */
    background-repeat: no-repeat; /* Prevent tiling */
    background-attachment: fixed; /* Fixed during scroll */
    background-size: contain; /* Scale logo to fit viewport */
    min-height: 100vh; /* Full viewport height */
}

/* Navigation */
nav {
    background-color: #000000; /* Black */
    color:#FFFFFF; /* White */ 
    padding: 1rem;
    display: flex;
    justify-content: center; /* Center nav */
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000; /* Above content */
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: #FFFFFF; /* White */
    text-decoration: none;
}

nav ul li a:hover {
    color: #666666; /* Dark gray for hover */
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    color: #FFFFFF;
    position: absolute;
    left: 1rem;
    top: 0.5rem;
    z-index: 1001;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    justify-content: center;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .nav-menu {
        display: none; /* Hidden by default on small screens */
        flex-direction: column;
        position: absolute;
        top: 50px; /* Below nav height */
        left: 0;
        width: 100%;
        background-color:  #000000;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
    }
    .nav-menu.active {
        display: flex; /* Show when active */
    }
    nav ul li {
        margin: 0.5rem 0;
        text-align: center;
    }
    nav {
        padding: 0.5rem;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    table {
        width: 100%; /* Ensure table fits screen width */
        font-size: 0.85rem; /* Smaller font size */
    }
    th, td {
        padding: 0.4rem; /* Reduced padding for compact cells */
    }
}

/* Sections */
section {
    padding: 5rem 2rem;
    min-height: calc(100vh - 100px);
    background-color: rgba(0, 0, 0, 0.9); /* NO TRANSPARENCY */
    text-align: center;
}

h1, h2 {
    color: #FFFFFF; / *White* / 
    margin-bottom: 1rem;
}

p {
    color: #FFFFFF; / *White* /
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Button */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    color:color:#0000FF; /* Blue */
    text-decoration: none;
    border-radius: 5px;
    margin: 1rem 0;
}

.btn:hover {
    background: #666666; /* Dark gray */
    color: #FFFFFF; /* White */
}

/* Social Links */
.social-links a {
    margin: 0 1rem;
    color: #FFFFFF; /* White */
    text-decoration: none;
}

.social-links a:hover {
    color:#0000FF; /* Blue */
}

/* Table */
table {
    width: 100%;
    max-width: 800px;
    border-collapse: collapse;
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
}

th, td {
    border: 1px solid #FFFFFF; /* White border */
    padding: 0.75rem;
    text-align: left;
}

th {
    background: #000000; /* Black */
    color: #FFFFFF; /* White */
}


/* Footer */
footer {
    background-color:#000000; /* Black */
    color:  #FFFFFF; /* White */ 
    text-align: center;
    padding: 1rem;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
    }
    nav ul {
        flex-direction: column;
        margin-top: 1rem;
    }
    nav ul li {
        margin: 0.5rem 0;
    }
    section {
        padding: 3rem 1rem;
    }
    iframe {
        width: 100%;
        height: 600px;
    }
}