/* General Styles */
.top-navbar * {
  font-size: 0.8rem;
}

.navbar {
  border-top: 1px solid rgb(236, 236, 236);
  border-bottom: 1px solid rgb(236, 236, 236);
}

a {
  text-decoration: none;
}

/* Swiper Button Styles */
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 1.8rem !important;
  font-weight: 800;
  padding: 0.7rem 1rem;
  text-align: center;
  border-radius: 50%;
  color: rgb(74, 73, 73);
}

/* Responsive Styles */
@media screen and (max-width: 576px) {
  .top-header {
      display: block;
  }
}

@media screen and (max-width: 768px) {
  .logout-desktop {
      display: none; /* Hide the logout button for mobile screens */
  }
}

/* Nav Tabs */
.nav-tabs .nav-link.active {
  color: rgb(11, 25, 94) !important;
}

/* Custom Alert Styles */
.custom-alert {
  background-color: #d4edda;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border: 1px solid #c3e6cb;
  border-radius: 5px;
  margin-bottom: 15px;
  position: fixed;
  right: 10px;
  top: 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.custom-alert .close {
  cursor: pointer;
  font-size: 20px;
}

#error-alert {
  background-color: #f15347;
}

#success-alert {
  background-color: rgb(41, 200, 65);
}

/* Custom Navbar Styles */
.custom-navbar {
  background-color: #343a40; /* Grayish-black background */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional shadow for better aesthetics */
}

.custom-navbar .nav-link {
  color: white !important; /* White text for better contrast */
}

.custom-navbar .nav-link:hover,
.custom-navbar .dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.1); /* Subtle hover effect */
  color: #f8f9fa !important;
}

.custom-navbar .navbar-toggler {
  border: none; /* Remove border from the toggle button */
  background: transparent; /* Ensure background is transparent */
}

.custom-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
/* Banner Wrapper */
.banner-wrapper {
  position: relative;
  width: 100%;
  height: 100vh; /* Full screen height */
  overflow: hidden;
  background-color: #000; /* Fallback color */
}

/* Banner Image */
.banner-image {
  width: 100%;
  height: 100vh; /* Match the wrapper height */
  object-fit: cover; /* Ensure images cover the area without distortion */
}

/* Banner Text Overlay */
.banner-text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 10;
}

.banner-text-overlay .welcome-text {
  font-family: 'Brush Script MT', cursive;
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

.banner-text-overlay .flavor-faith-text {
  font-family: 'Oswald', sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 2rem;
}

/* Button */
.btn-orange {
  display: inline-block;
  background-color: #FFA500;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  border-radius: 25px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-orange:hover {
  background-color: #FF7F32;
  transform: scale(1.05);
}

/* Swiper Styles */
.swiper-container {
  width: 100%;
  height: 100vh; /* Consistent height for the container */
}

.swiper-slide {
  width: 100%;
  height: 100vh; /* Ensure all slides match the container's height */
}

.swiper-pagination {
  position: absolute;
  bottom: 10%;
  z-index: 20;
}

.swiper-button-next,
.swiper-button-prev {
  color: white;
  z-index: 20;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .banner-text-overlay .welcome-text {
      font-size: 1.8rem;
  }
  .banner-text-overlay .flavor-faith-text {
      font-size: 1.5rem;
  }
  .btn-orange {
      padding: 8px 16px;
      font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .banner-text-overlay .welcome-text {
      font-size: 1.5rem;
  }
  .banner-text-overlay .flavor-faith-text {
      font-size: 1.2rem;
  }
  .btn-orange {
      padding: 6px 12px;
      font-size: 0.8rem;
  }
}


/* Section and Content Styles */
.container {
  max-width: 1200px;
  margin: auto;
}

.section-heading {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
}

.about-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.read-more-btn {
  display: inline-block;
  background-color: #FFA500;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  margin-top: 20px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  background-color: #FF7F32;
  transform: scale(1.05);
}

/* Schedule Chart */
.schedule-chart {
  background-color: #000;
  color: #FFA500;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.schedule-heading {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #FFA500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.schedule-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.schedule-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 1rem;
  color: #fff;
  border-bottom: 1px solid #FFA500;
}

.schedule-list li:last-child {
  border-bottom: none;
}

.schedule-list li:nth-child(odd) {
  background-color: rgba(255, 165, 0, 0.1);
}

@media (max-width: 768px) {
  .schedule-heading {
      font-size: 1.2rem;
  }

  .schedule-list li {
      font-size: 0.9rem;
  }
}

/* Footer Styles */
.footer-with-icons {
  position: relative;
  overflow: hidden;
  z-index: 0;
}

/* Icon Styles */
.footer-with-icons .icon {
  position: absolute;
  color: rgba(255, 255, 255, 0.2); /* Transparent white */
  font-size: calc(20px + 10 * var(--size, 1));
  transform: translateY(0) rotate(var(--rotate, 0deg));
  top: var(--top, 50%);
  left: var(--left, 50%);
  z-index: -1;
  animation: float 4s ease-in-out infinite alternate, spin 10s linear infinite;
}

/* Floating Animation */
@keyframes float {
  0%, 100% {
      transform: translateY(0) rotate(var(--rotate, 0deg));
  }
  50% {
      transform: translateY(-15px) rotate(var(--rotate, 10deg));
  }
}

/* Spinning Animation */
@keyframes spin {
  from {
      transform: rotate(0deg);
  }
  to {
      transform: rotate(360deg);
  }
}
