/* Global */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #007ba7;
  background: #fff;
}

h1, h2, h3 {
  margin: 0;
  color: #007ba7;
  text-align: center;
}

h1 { color: white; }

section {
  padding: 60px 20px;
}

a {
  color: #007ba7;
  text-decoration: none;
}

* {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 100;
}

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar .logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
}

.navbar .logo span {
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

/* Hero */
#top {
  background: url('background.jpeg') no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  color: white;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 0 10px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.btn-primary {
  background: #0099cc;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 500;
  transition: background 0.3s;
}

.btn-primary:hover { background: #007ba7; }

/* Tours */
.tour-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.tour-card {
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s;
}

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

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

.tour-card h3 { color: #007ba7; }
.tour-card p { margin: 0 10px 20px; }

/* Book Now */
.book-now {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #0099cc;
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  font-weight: 500;
  transition: background 0.3s;
  z-index: 9999;
}

.book-now:hover { background: #007ba7; }

/* Footer */
footer {
  width: 100%;
  background: #007ba7;
  color: white;
  text-align: center;
  padding: 25px 10px;
  font-size: 0.95em;
}

footer a { color: #fff; text-decoration: underline; font-weight: bold; }
footer a:hover { color: #cdefff; }

/* Inquiry Form */
.tour-search {
  background: #f5f9ff;
  padding: 40px 20px;
  border-radius: 10px;
  max-width: 900px;
  margin: 50px auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.tour-search h2 { color: #007ba7; margin-bottom: 25px; }

.tour-search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.form-group { display: flex; flex-direction: column; flex: 1 1 180px; }

input { padding: 10px; border: 1px solid #ccc; border-radius: 6px; font-size: 14px; }

.inquire-btn {
  background-color: #0077cc;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
}

.inquire-btn:hover { background-color: #005fa3; }

/* Reviews */
.reviews {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.review-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.review-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 320px;
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease;
}

.review-card:hover { transform: translateY(-5px); }

.tour-photo img { width: 100%; height: 180px; object-fit: cover; }

.guest-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px 0;
}

.guest-photo {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.stars { color: #FFD700; font-size: 15px; margin-top: 3px; }

.review-card p {
  padding: 10px 20px 20px;
  font-style: italic;
  color: #555;
  font-size: 14px;
  line-height: 1.5;
}

/* About Section */
#about {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

#about .owner-image {
  float: left;
  margin: 0 20px 10px 0;
  width: 250px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

#about ul {
  list-style-position: outside;
  padding-left: 1.2em;
}

/* Contact links */
.contact-links a { font-weight: bold; font-style: italic; color: #007ba7; }

/* Mobile Responsive */
@media (max-width: 700px) {
  .navbar {
      flex-direction: column;
      align-items: flex-start;
      padding: 10px 15px;
  }
  .nav-links {
      flex-direction: column;
      gap: 10px;
      width: 100%;
      margin-top: 10px;
  }
  .hero-content h1 {
      font-size: 2rem;
  }
  .btn-primary { padding: 8px 15px; font-size: 14px; }
  .tour-card img { height: 150px; }
  .review-card { max-width: 90%; }
  #about .owner-image {
      float: none;
      display: block;
      margin: 0 auto 20px auto;
      width: 80%;
  }
  .tour-search {
      padding: 20px 15px;
  }
  .tour-search-form { flex-direction: column; align-items: stretch; }
}
