* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
    font-family: Arial, Helvetica, sans-serif;
    padding: 20px;
    padding-top: 25px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
/* Navbar Styling */
.navbar {
    background-color: #ffffff !important; /* White background for navbar */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* Subtle shadow for depth */
    padding: 10px 20px;
}

.navbar-brand .logo-circle {
    width: 120px; /* Size of the logo circle */
    height: 80px;
    border-radius: 30%; /* Make it a circle */
    overflow: hidden; /* Hide overflow for circular image */
    display: flex;
    justify-content: center;
    border: 2px solid #17a2b8; /* Border around the logo */
    transition: transform 0.3s ease;
}

.navbar-brand .logo-circle:hover {
    transform: scale(1.05); /* Slightly enlarge on hover */
}

.navbar-brand .logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure image covers the circle */
}

.navbar-nav .nav-link {
    color: #000000 !important; /* Black text color */
    font-weight: 700; /* Bold font weight */
    margin: 0 10px; /* Space between nav items */
    transition: color 0.3s ease, background-color 0.3s ease;
    padding: 8px 15px; /* Padding for hover highlight */
    border-radius: 5px; /* Rounded corners for highlight */
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #17a2b8 !important; /* Blue on hover */
    background-color: rgba(23, 162, 184, 0.1); /* Light blue highlight */
}

.navbar-nav .dropdown-menu {
    background-color: #ffffff; /* White background for dropdown */
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.navbar-nav .dropdown-item {
    color: #000000; /* Black text for dropdown items */
    font-weight: normal;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.navbar-nav .dropdown-item:hover {
    background-color: #e0f7fa; /* Light blue on hover */
    color: #17a2b8; /* Blue text on hover */
}

.btn-outline-success {
    color: #17a2b8;
    border-color: #17a2b8;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-outline-success:hover {
    background-color: #17a2b8;
    color: #ffffff;
    border-color: #17a2b8;
}


/* Destination Gallery */
.destination-gallery {
    padding: 50px 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #074807;
}

.section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #555;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  gap: 20px; /* space between cards */
  padding: 20px 0;
}

.destination-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

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

.destination-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 15px;
}

.card-content h3 {
  margin: 0;
  color: #2e7d32;
}

.card-content p {
  margin-top: 10px;
  font-size: 0.95em;
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
/* Footer Styling */
.main-footer {
    background-color: #474c51; /* Dark background for the footer */
    color: #f8f9fa; /* Light text color */
    padding: 40px 20px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1); /* Shadow at the top of the footer */
}

.footer-heading {
    color: #17a2b8; /* Info blue for headings */
    font-weight: 700;
    margin-bottom: 20px;
}

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

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

.footer-list a {
    color: #f8f9fa; /* Light text color for links */
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-list a:hover {
    color: #17a2b8; /* Hover color for links */
}

.footer-bottom {
    background-color: black;
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Subtle separator */
    text-align: center;
    color: white;
    justify-content: center;
    padding:5px;
}
