
/* Reset / base */
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f9fafb;
  color: #222;
  min-height: 100%;
}

/* Images */
img { max-width: 100%; height: auto; display: block; }

/* NAVBAR tweaks */
.navbar {
  background-color: #6FA89F;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  z-index: 1000;
}
.navbar .navbar-brand { line-height: 1; padding-top: 6px; }
.navbar .brand-title {
  color: #FFFAFA;
  font-weight: 700;
  font-size: 1.6rem; /* desktop size */
  display: block;
  letter-spacing: -0.5px;
}
.navbar .brand-sub {
  color: #FFFAFA;
  font-weight: 600;
  font-size: 0.85rem;
  display: block;
  line-height: 1.1;
  margin-top: 2px;
}

/* nav links (keep them readable but not oversized on phones)
   Use !important in the small-screen rule to override inline styles in your HTML */
.navbar-nav .nav-link {
  color: #6FA89F;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: underline;
  padding: .45rem .6rem;
}
@media (max-width: 768px) {
  .navbar-nav .nav-link { font-size: 0.95rem !important; } /* override inline font-size on mobile */
}

/* HERO */
.hero {
  background: url('https://source.unsplash.com/1600x700/?travel,nature') center/cover no-repeat;
  color: #fff;
  padding: 120px 15px 70px;     /* avoid fixed vh to prevent overflow on mobiles */
  position: relative;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.45);
}
.hero-content { position: relative; z-index: 2; max-width: 1000px; margin: 0 auto; padding: 0 12px; }
.hero h1 { font-size: 2.7rem; margin: 0 0 10px; font-weight: 700; }
.hero p.lead { font-size: 1.1rem; margin: 0 0 10px; }

/* PACKAGES */
.package-card { border-radius: 12px; overflow: hidden; }
.package-card img { height: 200px; object-fit: cover; }

/* CONTACT / CONNECT */
.contact-section { padding: 40px 15px; background: transparent; }
.contact-card {
  background: #fff;
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  max-width: 760px;
  margin: 18px auto;
  text-align: left;
}
.contact-card h2 { text-align: center; font-size: 1.6rem; margin-bottom: 14px; }
.contact-item { display: flex; align-items: centre;  justify-content: center; gap: 10px; margin: 12px 0; color: #333; }
.contact-item i { color: #1e3c72; width: 28px; margin-top: 4px; }
.contact-item span { white-space: normal; word-break: break-word; }

/* SOCIAL ICONS */
.social-icons { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; margin-top: 12px; }
.social-icons a { text-decoration: none; color: #1e3c72; text-align: center; font-weight: 700; }
.social-icons a img { width: 52px; height: 52px; border-radius: 12px; display: block; margin: 0 auto; }

/* FOOTER */
footer { background: #1e3c72; color: #fff; padding: 18px 0; text-align: center; }

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 992px) {
  .hero { padding: 90px 12px 50px; }
  .hero h1 { font-size: 2rem; }
  .package-card img { height: 160px; }
}
@media (max-width: 576px) {
  .hero { padding: 70px 10px 40px; }
  .hero h1 { font-size: 1.6rem; }
  .package-card img { height: 120px; }
  .social-icons a img { width: 44px; height: 44px; }
  /* hide secondary tagline on very small screens */
  .navbar .brand-sub { display: none; }
}

/* Testimonials blockquote */
.blockquote {
  background: transparent;   /* no background */
  border: none;              /* no border */
  font-size: 1.2rem;
  font-style: italic;
  margin: 20px auto;
  max-width: 600px;          /* keep it neat */
  color: #333;               /* dark text */
}

.blockquote-footer {
  display: block;
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: #1e3c72;            /* your brand blue */
  text-align: right;         /* align name to right */
}

