.navbar-light .navbar-nav .nav-link {
  color: #fff;
}

.navbar-light .navbar-brand {
  color: #fff;
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show>.nav-link {
  color: #fff;
}

.navbar-light .navbar-brand:hover {
  color: #fff;
}


.nav-item a:hover {
  background-color: #80ed99;
  border-radius: 20px;
  transition: background-color 0.3s ease, border-radius 0.3s ease;
}



.parallax-section {
  background-image: url(https://images.pexels.com/photos/5194709/pexels-photo-5194709.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2);
  /* Replace with your scenic image */
  height: 70vh;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

}

.parallax-content {
  background-color: rgba(0, 0, 0, 0.5);
  /* semi-transparent overlay */
  padding: 40px;
  border-radius: 12px;
  max-width: 80%;
}

.parallax-content h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
}

.parallax-content p {
  font-size: 1.2rem;
  color: #e0f7fa;
}

.parallax-info-section {
  background-color: #f0fff4;
}


.rides-container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  text-align: center;
}

.rides-title {
  font-size: 2.5rem;
  color: #1f487e;
  margin-bottom: 30px;
  border-bottom: 3px solid #3bb59d;
  display: inline-block;
}

.rides-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.ride-card {
  background-color: #f9f9f9;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 400px;
  flex: 1 1 300px;
  transition: transform 0.3s ease;
}

.ride-card:hover {
  transform: scale(1.03);
}

.ride-image {
  width: 100%;
  height: auto;
  display: block;
}

.ride-title {
  color: #30b37a;
  font-size: 1.4rem;
  margin: 15px 0 10px;
}

.ride-description {
  padding: 0 20px 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

.ride-button {
  background-color: #30b37a;
  color: white;
  border: none;
  padding: 10px 25px;
  font-size: 1rem;
  border-radius: 20px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.ride-button:hover {
  background-color: #249067;
}

@media (max-width: 600px) {
  .rides-title {
    font-size: 1.8rem;
  }

  .ride-title {
    font-size: 1.2rem;
  }

  .ride-description {
    font-size: 0.95rem;
  }
}

/* <!--...................................................................... Gallery............................................................... --> */
.gallery-heading {
  font-weight: bolder;
  text-align: center;
  color: #22577a;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
}

.img-gallery {
  width: 80%;
  margin: 0 auto 50px;
  display: grid;
  align-items: center;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 30px;
}

.g-heading {
font-size: 2.5rem;
  color: #1f487e;
  margin-bottom: 30px;
  border-bottom: 3px solid #3bb59d;
  display: inline-block;
}

@media (max-width: 600px) {
  .g-heading {
    font-size: 1.8rem;
  }
}

.img-gallery img {
  width: 100%;
  height: 280px;
  border-radius: 10px;

  cursor: pointer;
}

.img-gallery img:hover {
  transform: scale(0.8) rotate(-15deg);
  border-radius: 20px;
  box-shadow: 0 32px 75px rgba(68, 77, 136, 0.2);
}

.full-img {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
}

.full-img img {
  width: 90%;
  max-width: 500px;
}

.full-img span {
  position: absolute;
  top: 5%;
  right: 5%;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}




.cont {
  width: 90%;
  max-width: 800px;
  margin: 20px auto;
  padding: 10px;
  text-align: center;
  font-weight: 900;
  border: 2px solid #3bb59d;
  border-radius: 10px;
  background-color: #f8f8f8;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.img-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.img-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.centered-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.centered-text h5 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.centered-text p {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.small-btn {
  padding: 6px 12px;
  font-size: 0.9rem;
  background-color: #3bb59d;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.small-btn:hover {
  background-color: #319c88;
}





.btn-outline-light:hover {
  color: #fff !important;
}

form a {
  text-decoration: none !important;
  color: #fff !important;
  background: #22577a !important;
}

/* Optional: Custom styling for the dropdown menu */
.dropdown-menu {
  background-color: #fff;
  color: #22577a;
}

.dropdown-item:hover {
  background-color: #80ed99;
  color: #22577a;
}



/* General Layout */
.ride-listings {
  background-color: #C7F9CC;
  padding: 40px;
  font-family: 'Segoe UI', sans-serif;
  max-width: 800px;
  margin: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Accordion Base */
.ride-item details {
  background-color: #80ED99;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.ride-item summary {
  cursor: pointer;
  padding: 15px 20px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #38A3A5;
  list-style: none;
  position: relative;
}

.ride-item details[open] {
  background-color: #57CC99;
}

.ride-item summary::-webkit-details-marker {
  display: none;
}

/* Ride Content Styling */
.ride-content {
  display: flex;
  flex-direction: column;
  padding: 20px;
  background-color: #C7F9CC;
  border-top: 1px solid #57CC99;
  animation: fadeIn 0.5s ease;
}

.ride-content img {
  max-width: 100%;
  border-radius: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 15px;
}

.ride-content img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 10px #57CC99;
}

/* Hover Preview Effect */
.ride-info .preview {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
  color: #2B5555;
  margin-bottom: 10px;
  font-style: italic;
}

.ride-item:hover .preview {
  opacity: 1;
  transform: translateY(0);
}

/* Ride Details List */
.ride-info ul {
  padding-left: 20px;
  margin: 10px 0;
  color: #2B5555;
}

.ride-info li {
  margin-bottom: 5px;
}

/* Wait Time Section */
.wait-time {
  margin-top: 15px;
}

.wait-time span {
  display: block;
  font-weight: 500;
  color: #2B5555;
  margin-bottom: 6px;
}

.progress-bar {
  width: 100%;
  height: 10px;
  background-color: #E0F8E0;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.progress-bar::before {
  content: '';
  display: block;
  height: 100%;
  transition: width 0.4s ease;
  position: absolute;
  top: 0;
  left: 0;
}

/* Wait Time Levels */
.progress-bar.short::before {
  width: 30%;
  background-color: #80ED99;
}

.progress-bar.medium::before {
  width: 60%;
  background-color: #57CC99;
}

.progress-bar.long::before {
  width: 90%;
  background-color: #38A3A5;
}

/* Fade In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-btn {
  background-color: #57CC99;
  padding: 10px 20px;
  color: white;
  font-size: 1.1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.cta-btn:hover {
  background-color: #80ED99;
}



/* sec of park */
footer a {
  text-decoration: none;
}