/* Font Face Declarations */
@font-face {
    font-family: 'CinzelDecorativeBlack';
    src: url('CinzelDecorative-Black.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'CinzelDecorativeBold';
    src: url('CinzelDecorative-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'CinzelDecorativeRegular';
    src: url('CinzelDecorative-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
/* Banner Container Styles */
.banner-container {
    width: 50%; /* Adjust this to control the container's width */
    margin: 20px auto; /* Adds space and centers the container */
    text-align: center; /* Center the image within the container */
}

.banner-container img {
    width: 100%;
    max-width: 600px;
    height: auto;

    /* Neon Orange glowing effect */
    box-shadow: 
        0 0 20px 10px rgba(255, 165, 0, 0.7), /* Outer neon orange glow */
        0 0 8px 2px rgba(255, 255, 255, 0.8), /* Bright edge for chrome */
        inset 0 0 8px 2px rgba(255, 255, 255, 0.8), /* Inner bright line for chrome */
        0 0 8px 2px rgba(0, 0, 0, 0.2), /* Outer dark line for chrome */
        inset 0 0 8px 2px rgba(0, 0, 0, 0.2); /* Inner dark line for chrome */

    /* Chrome Frame */
    border: 5px solid #ccc; /* Base color for chrome effect */
    padding: 10px;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.3),
        rgba(0, 0, 0, 0.1),
        rgba(0, 0, 0, 0.25),
        rgba(255, 255, 255, 0.3)
    );
}

/* Body Styles */
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 75%;
    text-align: center;
    font-family: 'CinzelDecorativeRegular', Arial, sans-serif;
    color: #90EE90;
    background: url('apocalypsebackground.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    flex-direction: column; /* Column layout for main content and footer */
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

header {
    background-color: rgba(0, 0, 0, 0.75); /* Black with 50% opacity */
    color: white; /* Ensures text is legible against the dark background */
    padding: 20px; /* Optional: Adds some spacing inside the main element */
}

nav a {
    color: #dddddd;
    text-decoration: none;
    padding: 0.5em;
}

nav a.active {
    color: #ffffff;
    text-decoration: underline;
}

.page-title {
    text-align: center;
    font-size: 3em;
    background: none; /* Remove semi-transparent background */
}

.content {
    margin-top: 20px; /* Adjust this value for the desired top 					buffer */
color: #FF8C00; /* Whitesmoke color */
    font-weight: bold; /* Keeps the text bold */
    text-align: center;
    width: 80%; /* Adjust width as needed */
    background-color: rgba(0, 0, 0, 0.75);
}

main {
    background-color: rgba(0, 0, 0, 0.75); /* Black with 50% opacity */
    color: white; /* Ensures text is legible against the dark background */
    padding: 20px; /* Optional: Adds some spacing inside the main element */
}

.video-flex-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* Ensures responsiveness */
    gap: 20px; /* Space between videos */
}
.video-container {
    text-align: center; /* Center the content */
    margin-top: 20px; /* Add some space above the video */
}

.video-container video {
    width: 100%; /* Make the video responsive */
    max-width: 560px; /* Maximum width of the video */
    height: auto; /* Maintain aspect ratio */

    /* Neon Orange glowing effect */
    box-shadow: 
        0 0 20px 10px rgba(255, 165, 0, 0.7), /* Outer neon orange glow */
        0 0 8px 2px rgba(255, 255, 255, 0.8), /* Bright edge for chrome */
        inset 0 0 8px 2px rgba(255, 255, 255, 0.8), /* Inner bright line for chrome */
        0 0 8px 2px rgba(0, 0, 0, 0.2), /* Outer dark line for chrome */
        inset 0 0 8px 2px rgba(0, 0, 0, 0.2); /* Inner dark line for chrome */

    /* Chrome Frame */
    border: 5px solid #ccc; /* Base color for chrome effect */
    padding: 10px;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.3),
        rgba(0, 0, 0, 0.1),
        rgba(0, 0, 0, 0.25),
        rgba(255, 255, 255, 0.3)
    );
}

footer {
    text-align: center;
    padding: 1em;
    background: none;
    margin-top: auto; /* Pushes the footer to the bottom */
}
