.hero-section {
    position: relative;
    height: 9s0vh;
}

.title {
    color:brown;
    font: italic;
}

/* Hero images */
.hero-img {
    height: 90vh;
    object-fit: cover;   /* FIXES RESOLUTION ISSUE */
}

/* Dark overlay for text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
    z-index: 10;
}

/* Text styling */
.hero-overlay h1 {
    font-size: 3.2rem;
    font-weight: 700;
}

.hero-overlay p {
    font-size: 1.3rem;
}

/* Control slide animation speed */
.carousel-item {
    transition: transform 0.6s ease-in-out;
}

/* Sliding animation */
@keyframes slideBg {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-66.66%);
    }
}

/* Hero text */
.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.3rem;
}

/* Custom Navbar */
.custom-navbar {
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    transition: background 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* Navbar brand */
.navbar-brand {
    font-size: 1.6rem;
    letter-spacing: 1px;
}

/* Nav links hover animation */
.nav-link {
    position: relative;
    margin-right: 15px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #ffc107;
    left: 0;
    bottom: 0;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('../assets/images/header.jpg') center/cover no-repeat;
    padding: 80
    px 0;
}

/* Feature box */
.feature-box {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.dest-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  display: none;
  z-index: 2000;
}

.dest-container {
  background: rgba(255,255,255,0.95);
  margin-top: 80px;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.overlay-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}

.overlay-header button {
  border: none;
  background: #ff4d4d;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
}

.region-card {
  background: linear-gradient(135deg, #f8f9fa, #e9f2ff);
  border-radius: 14px;
  padding: 20px;
  transition: 0.3s;
  height: 100%;
}

.region-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.region-card h4 {
  margin-bottom: 10px;
}

.region-card ul {
  list-style: none;
  padding-left: 0;
}

.region-card li {
  padding: 6px 0;
  cursor: pointer;
}

.region-card li:hover {
  color: #0d6efd;
}

