:root {
    --primary: linear-gradient(to bottom right, #1b2631, #34495e);
    --secondary: #e67e22; /* Muted orange */
    --text: #ecf0f1; /* Light text color */
    --bg-color: #2c3e50; /* Dark blue-gray */
    --accent: #f39c12; /* Bright accent color */
    --hover-color: #2980b9; /* Hover color for tabs */
}

.scroll-down {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: var(--accent);
    color: var(--bg-color);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.scroll-down:hover {
    background-color: var(--hover-color);
}

html {
    scroll-behavior: smooth;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #181818;
    font-family: 'Arial', sans-serif;
    color: var(--text);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
}

/* Navbar Style */

/* Bouncing or Pulsating Effect for Menu Icon */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@-webkit-keyframes bounceWithColor {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        color: white; /* Default color is white */
    }
    40% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
        color: #e74c3c; /* Mid-bounce color */
    }
    60% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
        color: #3498db; /* Another color during the bounce */
    }
}

@keyframes bounceWithColor {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
        color: white; /* Default color is white */
    }
    40% {
        transform: translateY(-10px);
        color: #e74c3c; /* Mid-bounce color */
    }
    60% {
        transform: translateY(-5px);
        color: #3498db; /* Another color during the bounce */
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.menu-icon {
    display: none;
    font-size: 30px;
    color: white; /* Default color is white */
    cursor: pointer;
    -webkit-animation: bounceWithColor 2s infinite; /* Webkit prefix for mobile browsers */
    animation: bounceWithColor 2s infinite; /* Regular animation */
}

.menu-icon:hover {
    -webkit-animation: none; /* Webkit prefix */
    animation: none;
    color: var(--hover-color);
}

/* Navbar style */
.navbar {
    width: 100%;
    background-color: #f39c12;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border-bottom: 2px solid var(--secondary);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    flex-direction: row;
}

.navbar ul li {
    margin: 0 15px;
}

.navbar ul li a {
    text-decoration: none;
    color: var(--text);
    font-size: 1rem;
    padding: 8px 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 5px;
}

.navbar ul li a:hover {
    background-color: var(--hover-color);
    color: var(--bg-color);
}

/* Media Queries for Mobile */
@media (max-width: 768px) {
    .menu-icon {
        display: block;
        font-size: 30px;
        color: white;
        cursor: pointer;
        -webkit-animation: bounceWithColor 2s infinite;
        animation: bounceWithColor 2s infinite;
    }

    .navbar ul {
        flex-direction: column;
        display: none;
        background-color: #202020;
        position: absolute;
        top: 50px;
        right: 0;
        width: 100%;
        padding: 20px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    }

    .navbar ul.active {
        display: block;
    }

    .navbar ul li {
        margin: 10px 0;
        text-align: center;
    }
}

/* Intro Section Styles */
.intro-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align content to the top */
    align-items: center;
    color: var(--text);
    text-align: center;
}

#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.8;
}

.intro-content {
    z-index: 2;
    max-width: 800px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    border-radius: 10px;
    margin-top: auto; /* Pushes the content towards the bottom */
    margin-bottom: 50px; /* Adjust this value to control the distance from the bottom */
}

.intro-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.intro-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-top: 20px; /* Ensure space between h1 and p */
}

@media (max-width: 768px) {
    .intro-content p {
        font-size: 1rem;
    }

    .intro-content h1 {
        font-size: 2rem;
    }


}


/* Aliens Deception Section */
.aliens-deception-section {
    max-width: 1200px; /* Set the maximum width */
    margin: 0 auto; /* Center the section horizontally */
    padding: 20px;
    background-color: var(--bg-color); /* Keep the background color */
    color: var(--text); /* Keep the text color */
    border-radius: 10px; /* Optional: Add rounded corners */
    margin-top: 50px;
}

.aliens-deception-section h1 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 30px;
}

/* Subsection Styling */
.alien-subsection {
    padding: 20px;
    margin-bottom: 30px;
    background-color: #202020; /* Background color for subsection */
    border-radius: 10px; /* Add rounded corners */
}

.alien-subsection h2 {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.alien-subsection h3 {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

/* Image Section */
.alien-images {
    display: flex; /* Use flexbox for layout */
    flex-direction: row; /* Align images in a horizontal row */
    flex-wrap: wrap; /* Allow wrapping to the next line if needed */
    justify-content: center; /* Center the images horizontally */
    gap: 20px; /* Add space between the images */
}

.alien-images img {
    width: 200px; /* Set a fixed width for the images */
    height: 300px; /* Set a fixed height for the images */
    object-fit: cover; /* Ensure images maintain aspect ratio */
    border-radius: 10px; /* Add rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Optional shadow for style */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Add hover effect */
}

.alien-images2 {
    display: flex;
    justify-content: center; /* Centers the image horizontally */
    align-items: center; /* Centers the image vertically if height is set */
}

.alien-images2 img {
    max-width: 480px; /* Ensures the image scales properly */
    height: 360px; /* Maintains aspect ratio */
    border-radius: 10px; /* Optional: Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Optional: Shadow for style */
}

.alien-images2 img:hover {
    transform: scale(1.05); /* Slightly enlarge the image on hover */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4); /* Intensify the shadow on hover */
}

.alien-images img:hover {
    transform: scale(1.05); /* Slightly enlarge the image on hover */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4); /* Intensify the shadow on hover */
}

.alien-images video {
    width: 480px; /* Set a fixed width */
    height: 390px; /* Set a fixed height */
    object-fit: cover; /* Ensure images and videos maintain aspect ratio */
    border-radius: 10px; /* Add rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Optional shadow for style */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Add hover effect */
}

.alien-images video:hover,
.alien-images a:hover img {
    transform: scale(1.05); /* Slightly enlarge the element on hover */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4); /* Intensify the shadow on hover */
}

.alien-images a {
    display: inline-block; /* Ensures the link wraps properly around the video/image */
    border: none;
    text-decoration: none;
}

/* Content Styling */
.alien-subsection p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.alien-subsection ul {
    list-style-type: disc;
    padding-left: 40px;
    margin-bottom: 20px;
}

.alien-subsection ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Video Section */
.alien-subsection iframe {
    width: 100%;
    max-width: 800px;
    height: 315px;
    border-radius: 10px;
}

/* Mobile Optimization */
@media (max-width: 768px) {

    .alien-images2 img {
        max-width: 100%; /* Take up full width on smaller screens */
        height: auto; /* Maintain aspect ratio */
    }

    .youtube-button {
        font-size: 0.9rem; /* Smaller font size for mobile */
        padding: 6px 10px; /* Reduce padding */
    }

    .aliens-deception-section {
        max-width: 100%; /* Take up full width on smaller screens */
        padding: 10px; /* Reduce padding for mobile */
    }

    .alien-subsection h1 {
        font-size: 2.2rem;
    }

    .alien-subsection h2 {
        font-size: 1.8rem;
    }

    .alien-subsection h3 {
        font-size: 1.3rem;
    }

    .alien-subsection p,
    .alien-subsection ul li {
        font-size: 1rem;
    }

    .alien-images {
        flex-direction: row;
        overflow-x: auto;
        gap: 10px;
    }

    .alien-images img {
        width: 150px;
        height: 225px;
        margin: 0 5px;
    }

    .alien-images video {
        width: 300px;
        height: 240px;
        margin: 0 5px;
    }
}

/* End Times Production Section */
.end-times-production-section {
    padding: 50px 20px;
    background-color: #000000; /* Black background */
    color: #ffffff; /* White text */
    text-align: center;
    border-radius: 10px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.end-times-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px; /* Space between the H1 and logo */
    margin-bottom: 20px;
}

.end-times-header h1 {
    font-size: 2.5rem;
    color: #ffffff;
    margin: 0;
}

.end-times-logo {
    width: 100px;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.end-times-logo:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.4);
}

/* Social Media Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.social-links a {
    font-size: 2rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

.social-links .fa-youtube {
    color: #FF0000; /* YouTube red */
}

.social-links .fa-twitter {
    color: #1DA1F2; /* Twitter blue */
}

.social-links .fa-instagram {
    color: #E1306C; /* Instagram gradient base */
}


/* Intro Paragraph */
.end-times-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 20px 0 30px;
    text-align: center; /* Center the paragraph */
}

/* Embedded Video */
.end-times-production-section iframe {
    width: 100%;
    max-width: 800px;
    height: 450px;
    border-radius: 10px;
    display: block;
    margin: 0 auto; /* Center the iframe */
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .end-times-header {
        flex-direction: column;
        align-items: center;
    }

    .end-times-header h1 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .end-times-logo {
        width: 80px;
    }

    .social-links a {
        font-size: 1.5rem;
    }

    .end-times-intro {
        font-size: 1rem;
    }

    .end-times-production-section iframe {
        height: 250px;
    }
}

/* Chuck Missler Section */
.chuck-missler-section {
    padding: 50px 20px;
    background-color: var(--bg-color);
    color: var(--text);
    text-align: center;
    border-radius: 10px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.chuck-missler-header h1 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.chuck-missler-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 20px 0 30px;
    text-align: justify;
}

.chuck-slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.chuck-slider {
    display: flex;
    overflow: hidden;
}

.chuck-slide {
    flex: 0 0 100%;
    display: none;
}

.chuck-slide iframe {
    width: 100%;
    height: 450px;
    border-radius: 10px;
}

.slider-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.slider-controls button {
    padding: 10px 20px;
    background-color: var(--accent);
    border: none;
    color: var(--bg-color);
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-controls button:hover {
    background-color: var(--hover-color);
}

.slider-controls span {
    font-size: 1.2rem;
    color: var(--text);
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .chuck-missler-header h1 {
        font-size: 2rem;
    }

    .chuck-missler-intro {
        font-size: 1rem;
    }

    .chuck-slide iframe {
        height: 250px;
    }

    .slider-controls button {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}



/* Footer Styling */
footer {
    background-color: #202020;
    color: #ecf0f1;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
}

footer p {
    margin: 0 0 10px;
    font-size: 1.2rem;
}

footer p:last-of-type {
    margin-bottom: 0;
    font-size: 1rem;
}

footer a {
    color: #f39c12;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.footer-social {
    margin-top: 10px;
}

.footer-facebook-square i {
    font-size: 20px;
    color: #ffffff;
    margin-left: 10px; /* space beside email */
    transition: 0.3s ease;
}

.footer-facebook-square i:hover {
    color: #3b5998; /* Facebook blue */
    transform: scale(1.1);
}

#progress-container {
    width: 80%;
    background-color: #ecf0f1;
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 10px;
}

#progress-bar {
    width: 0;
    height: 100%;
    background-color: #f39c12;
    transition: width 0.5s ease;
}

#progress-text {
    font-size: 1rem;
    color: #ecf0f1;
}


