/* 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%;
    margin: 20px auto;
    text-align: center;
}

.banner-container img {
    width: 100%;
    max-width: 420px;
    height: auto;
    box-shadow: 0 0 20px 10px rgba(137, 207, 240, 0.7),
                0 0 8px 2px rgba(255, 255, 255, 0.8),
                inset 0 0 8px 2px rgba(255, 255, 255, 0.8),
                0 0 8px 2px rgba(0, 0, 0, 0.2),
                inset 0 0 8px 2px rgba(0, 0, 0, 0.2);
    border: 5px solid #ccc;
    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%;
    font-family: 'CinzelDecorativeRegular', Arial, sans-serif;
    color: #90EE90;
    background: url('occultbackground.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

header {
    background-color: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 20px;
}

nav a {
    color: #dddddd;
    text-decoration: none;
    padding: 0.5em;
}

nav a.active {
    color: #ffffff;
    text-decoration: underline;
}

.content {
    margin-top: 20px;
    color: #90EE90;
    font-weight: bold;
    text-align: center;
    width: 80%;
    background-color: rgba(0, 0, 0, 0.75);
}

main {
    background-color: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 20px;
}

/* Video Container Styles */
.video-title {
    width: 560px; /* Match the video container width for alignment */
    margin: 20px auto; /* Center the title above the video */
    color: #90EE90;
    font-family: 'CinzelDecorativeRegular', Arial, sans-serif;
    text-align: center;
    padding-bottom: 10px; /* Space between the title and the video container */
}

/* Video Container Styles */
.video-container {
    width: 560px; /* Adjusted width for the container */
    margin: 0 auto 20px; /* Aligns with the title and adds margin below the container */
    position: relative; /* Keeps the container in the normal document flow */
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio Calculation (height/width)*100% */
    box-shadow: 
        0 0 20px 10px rgba(137, 207, 240, 0.7), /* Outer glow */
        0 0 8px 2px rgba(255, 255, 255, 0.8), /* Bright edge */
        inset 0 0 8px 2px rgba(255, 255, 255, 0.8), /* Inner bright line */
        0 0 8px 2px rgba(0, 0, 0, 0.2), /* Outer dark line */
        inset 0 0 8px 2px rgba(0, 0, 0, 0.2); /* Inner dark line */
    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));
    border: 5px solid #ccc; /* Chrome frame effect */
}

/* Adjust the iframe to fill the video container, maintaining the aspect ratio */
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
footer {
    text-align: center;
    padding: 1em;
    background: none;
    margin-top: auto;
}
