 body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    font-size: 12px!important;
    text-align: center;
    line-height: 1.5;
}

.container {
    width: 100%;
}

header {
    background: linear-gradient(90deg, #007bff 0%, #ffa07a 100%);
    color: #ffffff;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%; /* Ensure the header spans the entire width */
    box-sizing: border-box;
}

.logo h1 {
    margin: 0;
    font-size: 2.5em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul li a:hover {
    text-decoration: underline;
}

main {
    padding: 20px;
    text-align: center;
}

.hero {
    background-color: #e2e2e2;
    padding: 20px;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 45px;
    font-weight: bolder;
}

.hero p {
    font-size: 25px;
}

.slideshow-container {
    position: relative;
    max-width: 80%; /* Reduced width */
    margin: auto;
    overflow: hidden;
}

.slideshow-container .slide {
    display: none;
    text-align: center;
    height: 100%;
    position: relative;
}

.slideshow-container .slide img {
    width: 70%;
    height: 650px; /* Reduced height */
    border-radius: 5%;
    opacity: 0.8; /* Reduced opacity */
}

.slideshow-container .floating-text {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 1.2em;
}

.slideshow-container p {
    font-size: 3.5em;
    font-family: 'Times New Roman', Times, serif;
    box-sizing: border-box;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 50px;
}

.big-image-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0; /* Adjust margin for spacing */
    margin-top: 20px;
}

.big-image {
    flex: 1;
    max-width: 30%; /* Adjusted to fit the site more moderately */
    box-sizing: border-box;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.big-image img {
    width: 50%;
    height: 100%;
    border-radius: 50px;
}

.big-image p {
    margin-top: 10px;
    font-size: 2.5em;
    color: #333;

}


/* CTA Container Styles */
.cta-container {
    text-align: center;
    background-color: #ffcc00;
    padding: 40px 10px;
    margin-top: 100px; /* Increased margin to the top */
}

.cta-container h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
}

.cta-container p {
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #555;
}

.cta-container .apply-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff0000;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
}

.cta-container .apply-button:hover {
    background-color: #cc0000;
}


/* About Section Styles */
.about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    background-color: #f5f5f5;
    margin: 0 auto; /* Centering the container */
    max-width: 800px; /* Set a max width to ensure it's not too wide */
}

.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.logo-container img {
    max-width: 50%;
    height: auto;
}

.about-text {
    text-align: center;
    padding: 20px;
}

.about-text h2 {
    font-size: 4em;
    margin-bottom: 20px;
    color: #333;
}

.about-text p {
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #555;
}

.youtube-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff0000;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
}

.youtube-button:hover {
    background-color: #cc0000;
}

.modal {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.85); display: flex;
  align-items: center; justify-content: center;
  z-index: 1000;
}
.modal-content {
  text-align: center; color: #fff;
  padding: 2rem; border-radius: 8px;
  background: url('img/e78f2f5e3b354b19b2e661f82de56dd9_473598589_18318654865166309_492385318306862566_n.jpg') center/cover no-repeat;
}
#enterBtn {
  margin-top: 1rem; padding: 0.8rem 2rem;
  font-size: 1rem; background: gold; border: none;
  border-radius: 4px; cursor: pointer;
}

/*---- Tablets & Mobiles ----*/
@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 15px 20px;
    text-align: center;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .hero h2 {
    font-size: 2rem;       /* ~32px */
  }

  .hero p {
    font-size: 1rem;       /* ~16px */
  }

  .slideshow-container {
    max-width: 100%;
    margin: 20px 0;
  }

  .slideshow-container .slide img {
    width: 100%;
    height: auto;
  }

  .big-image-container {
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
  }

  .big-image {
    max-width: 100%;
  }

  .cta-container h2 {
    font-size: 1.5rem;     /* ~24px */
  }

  .cta-container p {
    font-size: 1rem;       /* ~16px */
  }

  .about-container {
    padding: 20px;
  }

  .about-text h2 {
    font-size: 2rem;       /* ~32px */
  }

  .about-text p {
    font-size: 1rem;       /* ~16px */
  }

  .footer-container {
    flex-direction: column;
    gap: 20px;
  }
}


/* Footer Styles */
footer {
    background-color: #6c5ce7;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    padding: 10px;
}

.footer-section h3 {
    border-bottom: 2px solid #fff;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.footer-section p {
    margin: 10px 0;
}

.social-icons {
    display: flex;
    justify-content: center;
}

.social-icons a {
    color: #fff;
    margin: 0 10px;
    font-size: 20px;
    text-decoration: none;
}

.social-icons a:hover {
    color: #ccc;
}

footer p {
    margin-top: 20px;
}
