/* Style for active navbar link */
.navbar-nav .nav-item .nav-link.active {
  font-weight: bold;
  color: #007bff !important; /* Change color if needed */
}
/* Custom Styles */
body {
  font-family: 'Poppins', sans-serif;
  color: #264653;
}
body {
  padding: 20px; /* Adds space around the entire page */
  max-width: 1200px; /* Limits content width for better readability */
  margin: auto; /* Centers the content */
  line-height: 1.6; /* Improves text readability */
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}
html {
  scroll-padding-top: 80px; /* Adjust according to your navbar height, This I used because the heading was hidden when clciked on table */
}
.navbar-brand {
  font-weight: bold;
  font-size: 1.5rem;
}

.carousel-item {
  height: 400px;
  background-size: cover;
  background-position: center;
}

.about-section {
  padding: 60px 0;
}

.about-section img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-section img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.destination-section {
  padding: 60px 0;
}

.card {
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
}

a {
  color: inherit; /* Inherit text color */
}

.card:hover {
  background-color: #f0f0f0; /* Add hover effect */
  cursor: pointer; /* Change cursor to pointer */
}
.footer {
  background-color: #264653;
  color: white;
  padding: 20px 0;
}

.social-icon {
  color: white;
  margin: 0 10px;
  font-size: 1.5rem;
}

.social-icon:hover {
  color: #E76F51;
}
/* Carousel Styles */
.carousel {
  position: relative;
  overflow: hidden;
}

.carousel-image {
  width: 100%;
  height: 500px; /* Adjust height as needed */
  object-fit: cover; /* Ensures the image covers the area without cropping */
}

.carousel-control-prev,
.carousel-control-next {
  opacity: 0; /* Hide arrows by default */
  transition: opacity 0.3s ease;
}

.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
  opacity: 1; /* Show arrows on hover */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  border-radius: 50%;
  padding: 10px;
}
footer{
  margin-top: 20px;
}

/* Contact Page Styling */
.contact {
  padding: 50px 20px;
  background: #f4f4f4;
  text-align: center;
}

.contact h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.contact p {
  font-size: 16px;
  margin-bottom: 20px;
}

/* Social Media Links */
.social-links {
  margin-bottom: 20px;
}

.social-links a {
  font-size: 24px;
  color: #555;
  margin: 0 10px;
  transition: color 0.3s ease-in-out;
}

.social-links a:hover {
  color: #007bff;
}

/* Contact Form */
.contact-form {
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
  margin-bottom: 15px;
}

.contact-form input, 
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.contact-form textarea {
  height: 120px;
  resize: none;
}

.contact-form button {
  width: 100%;
  padding: 10px;
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #0056b3;
}

/* Footer */
.footer {
  background: #222;
  color: white;
  padding: 10px;
  text-align: center;
  margin-top: 30px;
}
.contact-form {
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 5px;
}
.contact-form button {
  width: 100%;
  padding: 10px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}
.contact-form button:hover {
  background: #0056b3;
}
/* Back-to-Top Button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 50%;
  display: none;  /* Initially hidden */
  justify-content: center;
  align-items: center;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

.back-to-top:hover {
  background-color: #0056b3;
}

/* Smooth scrolling behavior */
html {
  scroll-behavior: smooth;
}
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}
/* General Background */
body {
    background-color: #F5F3EE;
    color: #2D2D2D;
}

/* Navbar */
.navbar {
    background-color: #BFD7EA;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar .nav-link {
    color: #5E8B7E;
    font-weight: 500;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #4F6F52;
    font-weight: 600;
    border-bottom: 2px solid #7A9E7E;
}

/* Buttons */
.btn-primary {
    background-color: #7A9E7E;
    border-color: #7A9E7E;
    color: white;
}

.btn-primary:hover {
    background-color: #4F6F52;
    border-color: #4F6F52;
}

/* Footer */
.footer {
    background-color: #BFD7EA;
    padding: 20px 0;
    color: #2D2D2D;
    text-align: center;
}


