.nav-link {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  font-size: 18px;
  padding: 10px 15px;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #007bff;
}

.navbar-brand img {
  transition: height 0.3s ease;
  height: 50px;
}

.navbar-brand:hover img {
  height: 55px;
}

.wrapper {
    position: relative;
}

.carousel-item img {
  max-height: 600px;
  object-fit: cover;
  width: 100%;
}

.welcome-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.5); 
  padding: 40px;
  border-radius: 15px;
}

@media (max-width: 767px) {
  .carousel-item img {
    height: 300px; 
    object-fit: cover;
  }

  .welcome-overlay {
    padding: 20px;
    max-width: 95vw;
  }

  .welcome-overlay h1 {
    font-size: 1.8rem; 
  }

  .welcome-overlay p.lead {
    font-size: 1rem;
  }

  .welcome-overlay .btn {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }

  section.container .row {
    flex-direction: column;
  }

  section.container .row > div {
    width: 100%;
    margin-bottom: 2rem;
  }

  section.container .row > div img {
    height: auto;
    max-width: 80%; 
    margin-left: auto;
    margin-right: auto;
  }
}


#menu h2 {
  font-weight: 700;
  font-size: 2.5rem;
}

#menu .lead {
  color: #555;
  font-size: 1.1rem;
}

#menu .dish-img {
  height: 250px;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

#menu .dish-img:hover {
  transform: scale(1.05);
}

#menu .btn-primary {
  padding: 0.6rem 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 12px;
  transition: background-color 0.3s ease;
}

#menu .btn-primary:hover,
#menu .btn-primary:focus {
  background-color: #0056b3;
  border-color: #0056b3;
  box-shadow: 0 4px 12px rgba(0, 86, 179, 0.5);
  text-decoration: none;
}
  
#about {
  background-color: #f8f9fa;
  padding: 60px 15px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  color: #343a40;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

#about h2 {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

#about p.lead {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.6;
}

#about .btn-primary {
  padding: 0.6rem 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 12px;
  transition: background-color 0.3s ease;
}

#about .btn-primary:hover,
#about .btn-primary:focus {
  background-color: #0056b3;
  border-color: #0056b3;
  box-shadow: 0 4px 12px rgba(0, 86, 179, 0.5);
  text-decoration: none;
}

.amenities-container {
  margin-top: 3rem;
  padding: 0 15px;
}

.attractions-container {
  max-width: 1200px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 0 15px;
}

@media (max-width: 768px) {
  .attractions-container {
    grid-template-columns: 1fr;
  }
}

.attraction-item {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 86, 179, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.attraction-item:hover {
  transform: scale(1.03);
}

.attraction-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  display: block;
}

.attraction-item h3 {
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.attraction-item p.lead {
  font-size: 1rem;
  color: #555;
  margin: 0.5rem 1rem 1rem;
  line-height: 1.5;
}


.facebook-section {
  text-align: center;
  margin: 40px 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.facebook-title {
  margin-top: 1rem;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.facebook-invite {
  font-size: 1.25rem;
  margin-bottom: 16px;
  font-weight: 600;
  color: #222;
}

.facebook-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #0d6efd;
  color: white;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.facebook-button .facebook-icon {
  fill: white;
}

.facebook-button:hover {
  background-color: #0b5ed7;
}

.facebook-videos {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.video-container {
  position: relative;
  flex: 1 1 480px;
  max-width: 560px;
  padding-top: 56.25%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  border-radius: 12px;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

.video-caption {
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
  color: #222;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 0 10px;
}

.video-wrapper {
  max-width: 560px;
  flex: 1 1 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  background: black;
}

.video-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

.video-caption {
  margin-top: 8px;
  font-weight: 600;
  font-size: 16px;
  color: #222;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 0 10px;
}



.custom-footer {
  background-color: #e7e7e7;
  padding: 10px;
  color: #f8f9fa;
  border-top: 2px solid #dee2e6;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;   
  align-items: center; 
  gap: 10rem; 
  text-align: center;
}


.footer-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}


.footer-column h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #000000;
}

.footer-column p {
  margin: 4px 0;
  font-size: 0.95rem;
  color: #000000;
}

.footer-column a {
  color: #2f5560;
  font-weight: 600;
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: underline;
}

.logo-column img {
  width: 180px;
  max-width: 100%;
}

.logo-column p {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: #000000;
}

@media (max-width: 918px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
