/* General */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
  background: #fafafa;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  background: #004aad;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-weight: 600;
  font-size: 1.2rem;
}

/* Logo Image */
.logo img.logo-img {
  height: 70px;        /* adjust as needed */
  width: auto;
  vertical-align: middle;
}

/* Optional: text next to logo */
.logo span {
  margin-left: 10px;
  font-weight: 600;
  font-size: 1.2rem;
  color: white;
  vertical-align: middle;
}

/* Ensure logo links are not styled by nav */
.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}


.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #ffd700;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #004aad;
    flex-direction: column;
    width: 100%;
    text-align: center;
    display: none;
  }

  .nav-links.active {
    display: flex;
    animation: slideDown 0.3s ease forwards;
  }

  .menu-toggle {
    display: block;
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

/* Footer */
footer {
  background: #004aad;
  color: white;
  text-align: center;
  padding: 20px 10px;
  margin-top: 50px;
}

.footer-content a img {
  width: 20px;
  height: 20px;
  margin: 0 8px;
  vertical-align: middle;
  filter: invert(1);
  transition: 0.3s;
}

.footer-content a img:hover {
  transform: scale(1.2);
}

.hero {
  position: relative;
  height: 100vh;
  background: url('../img/bg1.jpg') center center / cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Slightly darker overlay for readability */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px; /* Keeps text from stretching too much */
  padding: 0 20px;
  animation: fadeInUp 1s ease forwards;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn {
  background: #ffd700;
  color: #004aad;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background: #e6c200;
  transform: translateY(-3px);
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Buttons */
.btn {
  background: #ffd700;
  color: #004aad;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.btn:hover {
  background: #e6c200;
  transform: translateY(-3px);
}

.btn-secondary {
  display: inline-block;
  background: #004aad;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  margin: 15px 0;
  text-decoration: none;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: #002f6c;
  transform: translateY(-2px);
}

/* Featured Tours Section */
.featured {
  text-align: center;
  padding: 50px 5%;
}

.featured h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #004aad;
}

/* Page Header */
.page-header {
  text-align: center;
  padding: 50px 20px 30px; /* top 50px, sides 20px, bottom 30px */
  background: #f4f4f4;
  margin-bottom: 40px;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #004aad;
}

.page-header p {
  font-size: 1.2rem;
  color: #333;
}

/* Tour Grid: Centered, side by side */
.tour-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

/* Tour Cards */
.tour-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  width: 300px; /* side by side width */
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.tour-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 15px;
  border-radius: 10px;
}

.tour-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #004aad;
}

.tour-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}

/* Ribbon */
.ribbon {
  position: absolute;
  top: 15px;
  left: -10px;
  background: #ffd700;
  color: #004aad;
  padding: 5px 15px;
  font-weight: bold;
  transform: rotate(-20deg);
  font-size: 0.8rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Services List */
.services-list {
  list-style: none; /* remove default bullets */
  display: flex;
  flex-direction: column;
  align-items: center; /* center items horizontally */
  gap: 20px; /* space between items */
  padding: 0;
  margin-bottom: 50px;
}

.services-list li {
  background: #004aad; /* blue background */
  color: white;
  padding: 15px 25px;
  border-radius: 10px;
  font-size: 1.1rem;
  width: 100%;
  max-width: 500px; /* max width for readability */
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  background: #ffd700; /* hover gold color */
  color: #004aad;
}

/* Animate on Scroll */
[data-aos] {
  opacity: 0;
  transition-property: transform, opacity;
}

[data-aos].aos-animate {
  opacity: 1;
}

/* Responsive: Stack cards on smaller screens */
@media (max-width: 768px) {
  .tour-card {
    width: 90%; /* full width on mobile */
  }
}

/* Mobile adjustments for page header and tours */
@media (max-width: 768px) {
  .page-header {
    text-align: center;
    padding: 40px 15px 30px; /* slightly more padding on sides */
  }

  .page-header h1 {
    font-size: 2rem; /* adjust size for smaller screens */
    line-height: 1.3;
  }

  .page-header p {
    font-size: 1rem;
  }

  .tour-grid {
    flex-direction: column; /* stack tours vertically on mobile */
    align-items: center;    /* center the cards */
    gap: 25px;
  }

  .tour-card ul,
  .tour-card h4,
  .tour-card p {
    text-align: left; /* keep lists readable, but you can also use center if you prefer */
  }
}

/* About Section */
.about-section {
  padding: 50px 20px;
  background: #f9f9f9;
}

.about-text-container {
  max-width: 800px;       /* limits line length for readability */
  margin: 0 auto;         /* centers the container */
  text-align: center;     /* center the text */
  line-height: 1.7;       /* improves readability */
  color: #333;
}

.about-text-container h2 {
  font-size: 1.8rem;
  margin: 30px 0 15px;
  color: #004aad;
}

.about-text-container p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.about-text-container ul {
  list-style-type: disc;
  padding-left: 20px;
  text-align: left;       /* keeps bullet points readable */
  margin: 20px auto;
}

.about-text-container ul li {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

/* Contact Section */
.contact-section {
  padding: 50px 20px;
  background: #f9f9f9;
}

.contact-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #333;
}

.contact-item a {
  color: #004aad;
  text-decoration: none;
  transition: 0.3s;
}

.contact-item a:hover {
  color: #ffd700;
}

.contact-icon {
  font-size: 1.5rem;
}

.contact-btn {
  margin-top: 30px;
}

