: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;
    padding: 100px 20px;
    background-color: #121212; /* Dark background color */
    color: #ffffff; /* White text color */
    text-align: center;
    overflow: hidden; /* Hide any overflowing elements */
}

.intro-section .container {
    max-width: 800px;
    margin: 0 auto;
    z-index: 1; /* Ensure content is above background elements */
}

.header-image {
    max-width: 400px;
    height: 315px;
    display: block; /* Prevents image from overflowing container */
    margin: 0 auto 20px; /* Adds margin below the image */
    border-radius: 10px; /* Optional: Adds rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: Adds a subtle shadow */
}

.intro-section h1 {
    font-size: 3rem;
    font-weight: bold;
    color: var(--secondary);
    margin-bottom: 20px;
}

.intro-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ecf0f1;
}

.intro-video-wrapper {
    max-width: 800px;
    margin: 20px auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.intro-video {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .intro-section h1 {
        font-size: 2.5rem; /* Slightly smaller heading */
    }

    .intro-section p {
        font-size: 1rem; /* Smaller paragraph text */
    }

    .intro-video-wrapper {
        max-width: 100%;
        margin: 15px 0;
    }

    .intro-video {
        width: 100%;
    }

    .header-image {
        margin: 0 auto 10px; /* Reduces margin below the image on mobile */
    }
}

/* Tribulation Section */
.tribulation-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;
}

.tribulation-header h1 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.tribulation-content {
    max-width: 1000px;
    margin: 0 auto;
}

.tribulation-section img {
    width: 100%; /* Full width for responsiveness */
    max-width: 600px; /* Restrict width on larger screens */
    height: auto; /* Maintain aspect ratio */
    margin: 20px auto; /* Center image and add spacing */
    display: block; /* Ensure block-level alignment */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
}

.tribulation-content h2 {
    font-size: 2rem;
    color: var(--secondary);
    margin: 20px 0;
}

.tribulation-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .tribulation-header h1 {
        font-size: 2rem;
    }

    .tribulation-section img {
        max-width: 100%; /* Remove width restriction for smaller screens */
        margin: 15px auto; /* Adjust spacing for compact layout */
    }

    .tribulation-content h2 {
        font-size: 1.6rem;
    }

    .tribulation-content p {
        font-size: 1rem;
        line-height: 1.4;
    }
}

/***** The Mark Section *****/
.the-mark-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;
}

.the-mark-header h1 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.the-mark-content {
    max-width: 1000px;
    margin: 0 auto;
}

.the-mark-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 20px;
}

.video-link {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-link:hover {
    transform: scale(1.05); /* Enlarge slightly on hover */
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2); /* Add a subtle glow */
}

.the-mark-video {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

/***** Mobile Optimization *****/
@media (max-width: 768px) {
    .the-mark-header h1 {
        font-size: 2rem;
    }

    .the-mark-content p {
        font-size: 1rem;
    }

    .the-mark-video {
        max-width: 100%;
    }
}

.millennium-reign-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;
}

.millennium-reign-section h1 {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 10px;
}

.millennium-reign-section h2 {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 20px;
}

.millennium-reign-section h3 {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 15px;
}

.plain-youtube {
  display: block;
  margin: 30px auto;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  border: none;
}


.millennium-scrollbox ul {
  list-style-type: disc;
  padding-left: 40px;
  text-align: left;
  margin-top: 15px;
}

.millennium-scrollbox li {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 10px;
  color: var(--text);
}

.millennium-scrollbox {
  max-height: 300px;
  overflow-y: auto;
  background-color: rgba(0,0,0,0.5);
  padding: 20px;
  border-radius: 10px;
  max-width: 800px;
  margin: 0 auto;
}

.millennium-scrollbox p {
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 15px;
}

/* Mobile Optimization */
@media (max-width: 768px) {

    .plain-youtube {
    max-width: 100%;
    margin: 20px auto;
  }

  .millennium-reign-section h1 {
    font-size: 2rem;
  }

  .millennium-reign-section h2 {
    font-size: 1.5rem;
  }

    .millennium-reign-section h3 {
        font-size: 1.3rem;
    }

  .millennium-scrollbox {
    max-height: 250px;
    padding: 15px;
  }

  .millennium-scrollbox p,
  .millennium-scrollbox li {
    font-size: 1rem;
  }

  .millennium-scrollbox ul {
    padding-left: 20px;
  }

  .millennium-video-wrapper {
    max-width: 100%;
    padding-bottom: 56.25%;
    margin: 20px auto;
  }
  
}


/***** Revelation Analysis Section *****/
.revelation-analysis-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;
}

.revelation-header h1 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.revelation-content {
    max-width: 1200px;
    margin: 0 auto;
}

.revelation-content h2 {
    font-size: 2rem;
    color: var(--secondary);
    margin: 20px 0;
}

.revelation-content h3 {
    font-size: 1.8rem;
    color: var(--accent);
    margin: 15px 0;
}

.revelation-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.revelation-content ul {
    list-style-type: disc;
    padding-left: 40px;
    text-align: left;
    margin: 20px 0;
}

.revelation-content ul li {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

/***** Mobile Optimization *****/
@media (max-width: 768px) {
    .revelation-header h1 {
        font-size: 2rem;
    }

    .revelation-content h2 {
        font-size: 1.6rem;
    }

    .revelation-content h3 {
        font-size: 1.4rem;
    }

    .revelation-content p {
        font-size: 1rem;
    }

    .revelation-content ul li {
        font-size: 1rem;
    }
}


/* 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 i {
    font-size: 20px;
    color: #ffffff;
    margin-left: 10px; /* space beside email */
    transition: 0.3s ease;
}

.footer-facebook 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;
}



