/* Reset default browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'EB Garamond', serif;
  background-color: #ffffff;
  color: #1c1c1c;
  line-height: 1.6;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 30px;
  height: 30px;
}

.logo span {
  font-size: 1.2rem;
  font-weight: bold;
  color: #1c1c1c;
}

nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #1c1c1c;
  font-size: 1rem;
}

nav a:hover {
  color: #f48c06;
}

/* Welcome Section */
.welcome {
  padding: 3rem 2rem 2rem;
  display: flex;
  justify-content: flex-start;
  background-color: #ffffff;
}

.welcome-text {
  max-width: 800px;
}

.welcome-text h1 {
  font-size: 1.5rem !important;
  font-weight: 500;
}

.highlight {
  color: #f48c06;
}

.tagline {
  font-size: 1rem !important;
  margin-top: 0.5rem;
  color: #555;
}

/* About Section */
/* About Section */

.about-section {
  display: flex;
  gap: 2rem;
  padding: 4rem 3rem;
  background: #e0e0e0;
  align-items: center; /* 👈 Vertically centers text to image */
  justify-content: center;
  flex-wrap: wrap; /* Enables mobile wrap */
}

.about-image img {
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Text next to the image */
.about-text {
  max-width: 650px;
  padding: 1rem;
  margin: 0 auto;
}

.about-text h2 {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  font-weight: bold;
}

.about-text p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 1rem;
  text-align: justify;
  margin: 0 auto;
}

/* Highlight style for brand name */
.highlight {
  color: #f48c06;
  font-weight: bold;
}

/* Responsive styles */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    padding: 2rem 1.5rem;
    text-align: justify;
  }

  .about-text {
    padding: 0;
  }

  .about-text p {
    text-align: justify;
  }
}

/* Make content responsive */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    margin-top: 1rem;
  }

  .about-section {
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
  }

  .about-image img {
    width: 100%;
    max-width: 400px;
  }

  .welcome-text h1 {
    font-size: 2.2rem;
  }

  .tagline {
    font-size: 1rem;
  }
}
/* Featured Tours Section */
.featured-tours {
  padding: 4rem 2rem;
  background: #fff;
  text-align: center;
}

.section-title {
  font-size: 1.8rem !important;
  font-family: 'Adobe Caslon Pro', serif;
  margin-bottom: 2rem;
  font-weight: bold;
  color: #f48c06;;
}

.gallery-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}

.tour-gallery {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
}

.tour-gallery::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.tour-gallery img {
  flex: 0 0 auto;
  width: 250px;
  height: 350px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.tour-gallery img:hover {
  transform: scale(1.03);
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  padding: 0.8rem 1.2rem;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.scroll-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

.scroll-btn.left {
  left: -20px;
}

.scroll-btn.right {
  right: -20px;
}

/* === Hover Overlay on Tour Cards === */
.tour-card {
  position: relative;
  width: 250px;
  height: 350px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.tour-card:hover {
  transform: scale(1.03);
}

.tour-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
}


.tour-card:hover .overlay {
  opacity: 1;
}

.overlay h3 {
  margin: 0 0 0.3rem;
  font-size: 1.2rem;
  font-family: 'Adobe Caslon Pro', serif;
  font-weight: bold;
}

.overlay p {
  margin: 0 0 0.6rem;
  font-size: 1rem;
}

.details-btn {
  padding: 0.4rem 1rem;
  background: #f48c06;
  color: #fff;
  border: none;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.details-btn:hover {
  background: #d97706;
}

.offer-section {
  padding: 4rem 2rem;
  text-align: center;
  background-color: #ffffff;
}

.offer-intro {
  max-width: 850px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
  color: #333;
  text-align: justify;
}

.offer-intro .highlight {
  font-weight: bold;
  color: #1c1c1c;
}

.offer-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
}

.offer-item {
  text-align: center;
  max-width: 180px;
}

.offer-item img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

.offer-item p {
  font-size: 1.05rem;
  font-family: 'EB Garamond', serif;
  font-weight: 500;
  color: #1c1c1c;
}

.instagram-section {
  text-align: center;
  padding: 40px 20px;
  background-color: #fafafa;
}

.instagram-section h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

.instagram-section h2 a {
  color: #e1306c;
  text-decoration: none;
}

.insta-tagline {
  color: #555;
  font-size: 16px;
  margin-bottom: 30px;
}


.team-section {
  text-align: center;
  padding: 4rem 2rem;
  background: #fff;
}

.section-title {
  font-family: 'Adobe Caslon Pro', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.team-description {
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  text-align: justify;
}

.team-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 100%;
  position: relative;
}

.team-carousel {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem;
  max-width: 90vw;
  justify-content: center;
}

.team-member {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.team-member img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-hover-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 0.5rem 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
}

.team-member:hover .team-hover-info {
  opacity: 1;
}

.team-name {
  font-weight: bold;
  font-size: 1.1rem;
}

.team-role {
  font-size: 0.85rem;
  opacity: 0.85;
}

.team-nav {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-nav:hover {
  background: #eee;
}

@media (max-width: 768px) {
  .team-member {
    width: 140px;
    height: 140px;
  }

  .team-carousel {
    gap: 1rem;
  }
}

.site-footer {
  width: 100%;
  padding: 3rem 0 1rem;
  background: linear-gradient(to right, #f9f9f9, #ffffff);
  border-top: 1px solid #ddd;
}


.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 4rem; /* Add left and right padding */
  max-width: 100%;  /* Remove the width constraint */
  margin: 0 auto;
}


.footer-left {
  flex: 1 1 300px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 1rem;
}

.footer-slogan {
  font-size: 1.2rem;
  font-weight: 500;
  color: #222;
}

.footer-right {
  flex: 1 1 400px;
  color: #222;
  text-align: right;
}

.footer-right h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #e65100;
}

.footer-right p {
  margin: 0.6rem 0;
  font-size: 1.05rem;
  line-height: 1.6;
}

.footer-right a {
  color: #444;
  text-decoration: none;
  font-weight: 500;
}

.footer-right a:hover {
  text-decoration: underline;
}

.footer-social {
  margin-top: 1rem;
  text-align: right;
}

.footer-social a img {
  width: 42px;
  height: 42px;
  margin-left: 14px;
  transition: transform 0.2s ease;
  vertical-align: middle;
}

.footer-social a img:hover {
  transform: scale(1.15);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  font-size: 0.95rem;
  color: #777;
  border-top: 1px solid #ddd;
  margin-top: 2rem;
}

.button {
  display: inline-block;
  padding: 7px 7px;
  background-color: #ff8400;
  color: white;
  text-decoration: none;
  border-radius: 999px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #ff8400;
}
