@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

: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 h1 {
        font-size: 2rem;
    }

    .intro-content p {
        font-size: 1rem;
    }
}

/* Secret Society Section */
.secret-society-section {
    padding: 50px 20px;
    background-color: var(--bg-color);
    color: var(--text);
    text-align: center;
    margin-top: 50px;
    border-radius: 10px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.secret-society-section h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--accent);
}

.secret-society-intro {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    color: var(--text);
    text-align: center;
}

.video-card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.video-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
    width: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: scale(1.05);
}

.video {
    width: 100%;
    border-radius: 10px;
}

.video-js {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .video-card {
        width: 100%;
    }
    

    .secret-society-section h1 {
        font-size: 2rem;
    }

    .secret-society-intro {
        font-size: 1rem;
        padding: 0 10px;
    }
}


/* Purpose Section */

.purpose-section {
    padding: 50px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-align: center;
    border-radius: 10px;
    margin-top: 100px; /* Add space between purpose and salvation */
}

.purpose-content {
    max-width: 1100px;
    margin: 0 auto;
}

.purpose-content h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent); /* Maintain the accent color for the title */
}

.purpose-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text); /* Ensure the paragraph text is white */
}

@media (max-width: 768px) {
    .purpose-content h1 {
        font-size: 1.5rem;
    }

    .purpose-content p {
        font-size: 1rem;
    }
}

.pale-horse-section {
    padding: 20px;
    background-color: var(--bg-color);
    color: var(--text);
    text-align: center;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  .pale-horse-section h1 {
    color: var(--accent);
    font-size: 2.2rem;
    margin-bottom: 10px;
  }

  .pale-horse-section p {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text);
  }

  .slider-container {
    margin: 25px auto;
    max-width: 800px;
  }

  .slider-container img {
    width: 100%;
    max-width: 800px;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
  }

  .slider-controls {
    max-width: 800px;
    margin: 20px auto;
    display: flex;
    justify-content: space-between;
  }

  .slider-controls button {
    padding: 8px 12px;
    background-color: var(--accent);
    border: none;
    color: var(--bg-color);
    border-radius: 5px;
    cursor: pointer;
  }

  .slider-controls button:hover {
    background-color: var(--hover-color);
  }

  .slider-container img {
    cursor: pointer;
  }

  .fullscreen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }

  .fullscreen img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
  }

  .close-button {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    background: transparent;
    border: none;
  }

  @media (max-width: 768px) {
    .pale-horse-section {
      width: 100%;
      margin-top: 20px;
      padding: 10px;
    }

    .pale-horse-section h1 {
      font-size: 2rem;
    }

    .pale-horse-section p {
      font-size: 1.2rem;
    }

    .slider-container {
      max-width: 100%;
    }

    .slider-container img {
      max-width: 100%;
    }

    .slider-controls {
      max-width: 100%;
      flex-direction: column;
      align-items: center;
    }

    .slider-controls button {
      margin: 5px 0;
      padding: 6px 10px;
    }
  }


  .dark-truth-section {
    padding: 50px 20px;
    background-color: var(--bg-color);
    color: var(--text);
    text-align: center;
    border-radius: 10px;
    margin-top: 50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .dark-truth-section h1 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
  }
  
  .dark-truth-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 30px auto;
    text-align: justify;
  }
  
  #dark-truth-video {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  
  /* Mobile optimization */
  @media (max-width: 768px) {
    .dark-truth-section h1 {
      font-size: 2rem;
    }
  
    .dark-truth-section p {
      font-size: 1rem;
      padding: 0 10px;
    }
  
    #dark-truth-video {
      max-width: 100%;
    }
  }
  

/***** Roger Morneau Section *****/
.roger-morneau-section {
    padding: 50px 20px;
    background-color: var(--bg-color); /* Matches the site's dark theme */
    color: var(--text);
    text-align: center;
    border-radius: 10px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.roger-morneau-container {
    max-width: 1200px;
    margin: 0 auto;
}

.roger-morneau-section h1 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.roger-morneau-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

/***** Video Styling *****/
.roger-morneau-video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.video-link {
    display: inline-block;
    position: relative;
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    overflow: hidden;
}

.roger-morneau-video {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.video-link:hover .roger-morneau-video {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.3);
}

/***** Mobile Optimization *****/
@media (max-width: 768px) {
    .roger-morneau-section h1 {
        font-size: 2rem;
    }

    .roger-morneau-section p {
        font-size: 1rem;
    }

    .video-link {
        max-width: 100%;
    }

    .roger-morneau-video {
        border-radius: 5px;
    }
}

.temple-of-set-section {
  padding: 50px 20px;
  background-color: var(--bg-color);
  color: var(--text);
  text-align: center;
  border-radius: 10px;
  margin-top: 50px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.temple-of-set-section h1 {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 10px;
}

.temple-of-set-section h2 {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 20px;
}

.temple-of-set-video video {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  margin-bottom: 30px;
}

.temple-of-set-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;
}

.temple-of-set-scrollbox p {
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 15px;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .temple-of-set-section h1 {
    font-size: 2rem;
  }

  .temple-of-set-section h2 {
    font-size: 1.5rem;
  }

  .temple-of-set-scrollbox {
    max-height: 250px;
    padding: 15px;
  }

  .temple-of-set-scrollbox p {
    font-size: 1rem;
  }
}

/* AGE OF DECEIT SECTION */
.age-of-deceit-section {
  padding: 50px 20px;
  background-color: var(--bg-color);
  color: var(--text);
  text-align: center;
  border-radius: 10px;
  margin-top: 50px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.age-of-deceit-section h2 {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 20px;
}

.age-of-deceit-section p {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 30px auto;
  text-align: justify;
}

/* Responsive YouTube Embed */
.age-of-deceit-youtube {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .age-of-deceit-section h2 {
    font-size: 1.6rem;
  }

  .age-of-deceit-section p {
    font-size: 1rem;
    padding: 0 10px;
  }

  .age-of-deceit-youtube {
    max-width: 100%;
    margin: 20px auto;
  }
}



.ephesians-section {
    padding: 20px;
    background-color: var(--bg-color);
    color: var(--text);
    text-align: center;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  .ephesians-section h1 {
    color: var(--accent);
    margin-bottom: 15px;
    font-size: 2rem;
  }

  .ephesians-section h2 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.5rem;
  }

  .ephesians-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    max-height: 600px;
    border-radius: 10px;
    margin-bottom: 20px;
  }

  .ephesians-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  @media (max-width: 768px) {
    .ephesians-section {
      padding: 15px;
      margin-top: 20px;
    }

    .ephesians-section h1 {
      font-size: 1.5rem;
    }

    .ephesians-section h2 {
        font-size: 1.2rem;
      }
  

    .ephesians-section p {
      font-size: 1rem;
    }

    .ephesians-image {
      max-width: 100%;
    }
  }


/* 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;
}