/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

header {
  background-color: #fff;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  //background-color: rgba(255, 255, 255, 0.1);
  padding: 4px;
  border-radius: 5px;
  height: 40px;
  width: auto;
  object-fit: contain;
}


.hero {
  background-image: url("Pictures/kuya_teb_bg.jpg");
  background-size: cover;
  background-position: center;
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
  padding: 40px 20px;
  position: relative;
}

.hero-text {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

/* Add a dark overlay behind the text */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* Adjust darkness here */
}

.hero-text h2 {
  font-size: 3.5rem;
  font-weight: 700;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

.hero-text p {
  font-size: 1.3rem;
  margin-top: 10px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}

nav h1 {
  font-size: 1.5rem;
}

nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.btn {
  background-color: #007bff;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px;
  display: inline-block;
}

section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.tours-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.tour-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  overflow: hidden;
  width: 300px;
  transition: transform 0.3s;
  text-padding:10px;
}

.card-content {
  padding: 8px;
}

.tour-card:hover {
  transform: translateY(-5px);
}

.tour-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.testimonial {
  background: #fff;
  padding: 30px;
  margin: 30px auto;
  max-width: 600px;
  border-left: 5px solid #007bff;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: auto;
}

form input,
form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  background: #007bff;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

footer {
  text-align: center;
  background: #333;
  color: white;
  padding: 20px 0;
  margin-top: 60px;
}
.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.about-text {
  flex: 1;
  min-width: 280px;
}

.about-image img {
  width: 100%;
  max-width: 400px; /* Limits how wide the image can get */
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    max-width: 90%;
  }
}



@media (max-width: 768px) {
  .tours-container {
    flex-direction: column;
    align-items: center;
  }
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.about-text {
  flex: 1;
  min-width: 280px;
}

.about-images {
  display: flex;
  gap: 20px;
  flex: 1;
  min-width: 280px;
  justify-content: center;
}

.about-logo,
.about-person {
  max-width: 180px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  object-fit: contain;
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }
  
  .about-images {
    justify-content: center;
    gap: 15px;
  }

  .about-logo,
  .about-person {
    max-width: 60vw;
  }
}

.icon {
  vertical-align: middle;
  margin-right: 8px;
}
