body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.logo {
  height: 60px;
}

.navbar .nav-link {
  font-weight: 500;
  margin-left: 0.5rem;
}

.navbar .nav-link:hover {
  color: #ff7a00;
}

.hero-section {
  min-height: 70vh;
  background: radial-gradient(circle at top left, #ffb266, #ff7a00 25%, #061833 70%);
}

.hero-section .btn-primary {
  background-color: #ff7a00;
  border-color: #ff7a00;
}

.hero-section .btn-primary:hover {
  background-color: #e26b00;
  border-color: #e26b00;
}

.hero-card {
  border-radius: 1.5rem;
}

.info-pill {
  border-radius: 1.5rem;
}

.tour-card img {
  height: 210px;
  object-fit: cover;
}

.booking-box {
  border-radius: 1.5rem;
}

.footer {
  font-size: 0.9rem;
}

.page-header {
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.btn-primary {
  background-color: #0b2340;
  border-color: #0b2340;
}

.btn-primary:hover {
  background-color: #07172a;
  border-color: #07172a;
}

.text-primary {
  color: #0b2340 !important;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #ff7a00;
}

.hero-section {
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.5);
}

.contact-card {
  transition: all 0.3s ease;
  background: #fff;
}

.contact-card:hover {
  transform: translateY(-5px);
  background: #f8f9fa;
}

.contact-info p i {
  width: 20px;
}

.contact-section form label i {
  color: #ff7a00;
  margin-right: 5px;
}

.breadcrumb-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.about-box {
  transition: transform 0.3s ease;
}
.about-box:hover {
  transform: translateY(-5px);
}

/* Tour card hover animation */
.tour-card {
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Image zoom effect */
.tour-img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.tour-card:hover .tour-img {
    transform: scale(1.08);
}

/* Duration badge */
.duration-badge {
    font-size: 0.8rem;
    border-radius: 0 5px 0 0;
}

/* Rating styling */
.tour-card i.fa-star,
.tour-card i.fa-star-half-alt {
    margin-right: 2px;
}

/* Hero text enhancement */
.hero-section h1,
.hero-section h2 {
    text-shadow: 0 3px 8px rgba(0,0,0,0.6);
}
.hero-section {
  box-shadow: inset 0 0 60px rgba(0,0,0,0.5);
  animation: zoomSlow 12s infinite alternate ease-in-out;
}
@keyframes zoomSlow {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

/* Destination cards */
.destination-card {
  height: 200px;
  border-radius: 10px;
  position: relative;
  transition: transform 0.3s ease;
}
.destination-card:hover { transform: translateY(-5px); }
.destination-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  display:flex; align-items:center; justify-content:center;
  color: white; font-weight: bold;
  font-size: 1.25rem; transition: 0.3s;
}
.destination-card:hover .destination-overlay { opacity: 1; }

/* Search box */
.search-box input { max-width: 400px; }

/* Fade animation */
.animate-fade { animation: fadeIn 1s ease forwards; }
.animate-fade-delayed { animation: fadeIn 1.5s ease forwards; }
@keyframes fadeIn { from { opacity:0; transform: translateY(20px); } to { opacity:1; transform:translateY(0); } }

/* Testimonial */
.testimonial-box { max-width: 600px; margin: auto; background: #f8f9fa; }

/* Tour cards */
.tour-card:hover .tour-img { transform: scale(1.05); }

/* HERO */
.hero-section {
  height: 80vh;
  min-height: 480px;
}
.hero-slide {
  height: 100%;
  min-height: 80vh;
  background-position: center;
  background-size: cover;
  background-attachment: fixed; /* parallax-like on desktops */
  position: relative;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.25); /* works well with light hero.jpg */
  backdrop-filter: blur(2px);
}
.hero-title-dark,
.hero-text-dark {
  color: #111;
  text-shadow: 0 2px 12px rgba(255,255,255,0.8);
}

/* SEARCH BOX */
.search-box input {
  max-width: 420px;
}

/* DESTINATIONS */
.destination-card {
  height: 220px;
  border-radius: 14px;
  position: relative;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.18);
}
.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.1));
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1rem;
}

/* TOURS */
.tour-card {
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.tour-img {
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.tour-card:hover .tour-img {
  transform: scale(1.07);
}

/* TESTIMONIAL */
.testimonial-box {
  max-width: 650px;
  background: #fdfdfd;
}

/* Responsive tweaks */
@media (max-width: 767.98px) {
  .hero-section {
    height: auto;
    min-height: 60vh;
  }
  .hero-slide {
    background-attachment: scroll; /* mobile-safe */
  }
}

