/* Reset */
body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  color: white;
}


/* ===== Top Info Bar ===== hero-title */
.top-info {
  background: #44170e; /* green */
  color: #fff;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.top-info i {
  margin-right: 6px;
  color: #f49e3f; /* gold accent */
}
.language-switcher button {
  background: transparent;
  border: none;
  color: white;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  cursor: pointer; 
  gap: 6px;
  padding: 4px 8px;
}
.language-switcher img {
  width: 20px;
  margin-right: 5px;
  border-radius: 4px;  
}

/* ===== Header ===== */
.header {
  background: #6d2a1d;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .logo {
  height: 60px;
}
.logo-container {
  display: flex;
  align-items: center;
  gap: 15px; /* space between logo and text */
}
.logo-container2 {
  display: flex;
  align-items: center;
  gap: 15px; /* space between logo and text */
  padding-left: 150px;
}

.logo{
     border-radius: 50px;
}
.header nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}
.header nav a:hover {
  color: #f49e3f;
}
/* kwaajili ya space ndani ha hili eneo
.branding h1 {font-size: 2em; margin: 0;}
.branding p {margin: 5px 0; font-style: italic;}
nav {display: flex; gap: 20px;}
nav a {color: white; text-decoration: none; font-weight: bold;}
nav a:hover {color: #f4c842;}*/


/**/
/* ===== Dropdown Styles ===== */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background: none;
  border: none;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  margin-left: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.3s ease;
}

.dropbtn:hover {
  color: #f49e3f;
}

.arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
}

/* Dropdown menu content */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #6d2a1d;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  border-radius: 5px;
  z-index: 100;
  top: 28px;
  left: 0;
}

.dropdown-content a {
  color: #fff;
  padding: 10px 14px;
  text-decoration: none;
  display: block;
  font-size: 14px;
  transition: background 0.3s;
}

.dropdown-content a:hover {
  background-color: #fff;
  color: #f49e3f;
}

/* Show dropdown on active */
.dropdown.show .dropdown-content {
  display: block;
}

/* Rotate arrow when open */
.dropdown.show .arrow {
  transform: rotate(180deg);
}
/**/


/* Hero */
.hero-section {margin: 0; padding: 0;}
.hero-title {background-color: #44170e; padding: 10px 20px;}
.hero-title p, .hero-title h2 {margin: 0; line-height: 1.2;}
.hero-title p {font-size: 17px;}
.hero-title h2 {font-size: 1.7em;}
.img-background img {width: 100%; height: 100vh; object-fit: cover;}

.custom-strike {
    position: relative;
    display: inline-block;
    font-size: 17px;
}
.custom-strike::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 150%;
    height: 2px;
    background-color: rgb(255, 255, 255);
    transform: translateY(-50%);
}

/* ===== Tabs Container ===== */
.tabs-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  background: #6d2a1d;
  padding: 12px 15px;
}

.tab-btn {
  background: transparent;
  border: 2px solid #f49e3f;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.tab-btn i {
  font-size: 16px;
  color: #f49e3f;
}

.tab-btn:hover {
  background: #f49e3f;
  color: #fff;
}

.tab-btn.active {
  background: #f49e3f;
  color: #fff;
}

/* ===== Tabs Content ===== */
.tab-content {
  display: none;
  padding: 40px 20px;
  background: #fff;
  color: #333;
  line-height: 1.6;
}

/* Overview content ionekane by default */
#overview {
  display: block;
}

/* Active tab button */
.tab-btn.active {
  background: #f49e3f;
  color: #fff;
}


/* ===== Info Blocks ===== */
.info-block {
  margin-bottom: 25px;
  background: #f4f1e9;
  padding: 15px;
  border-left: 4px solid #f49e3f;
  border-radius: 6px;
}

/* ===== Accommodation & Destination Layout ===== */
.destination-accommodation-section {
  display: grid;
  grid-template-columns: 2fr 1.2fr; /* left side (accommodation) bigger */
  gap: 20px;
  margin-top: 20px;
  align-items: flex-start;
}

.accommodation-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns */
  gap: 12px;
}

.accommodation-images img {
  width: 100%;
  height: 160px;          /* reduced size */
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.destination-main-image img {
  width: 100%;
  max-height: 340px;      /* smaller but good visibility */
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}


/* ===== Meals Section ===== */
.meals {
  margin: 20px 0;
  padding: 15px;
  background: #fff7e0;
  border-radius: 8px;
  border-left: 4px solid #f49e3f;
}
.meals h3 {
  margin: 0;
  font-size: 16px;
  color: #6d2a1d;
}

/* ===== Section Divider ===== */
.section-divider {
  border: none;
  border-top: 2px solid #f49e3f;
  margin: 30px 0;
}

/* ===== Accommodation Cards ===== */
/*kwa sasa hizi zinamuhusu Accommodation Cards tu*/
.accommodation-card {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: #f4f1e9;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin-bottom: 25px;
}

.accommodation-image {
  flex: 1 1 250px;
}
.accommodation-image img {
  width: 100%;
  border-radius: 8px;
}

.accommodation-info {
  flex: 2 1 350px;
}
.accommodation-info h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #6d2a1d;
}
.accommodation-info p {
  margin-bottom: 6px;
  font-size: 15px;
}
/*kwa sasa hizi zinamuhusu day bay day tu*/
.destination-accommodation-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: #f4f1e9;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin-bottom: 25px;
}
.accommodation-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* picha 2 kila mstari */
  gap: 15px;
  max-width: 500px;
}

.accommodation-images h3 {
  grid-column: 1 / -1; /* kichwa kienee mstari mzima */
  font-size: 20px;
  margin-bottom: 10px;
  color: #f4c842;
}

.accommodation-images img {
  width: 90%;
  border-radius: 6px;
  box-shadow: 0 0 6px rgba(0,0,0,0.2);
  object-fit: cover;
}

.destination-main-image {
  flex: 2;
  width: 100%;
  margin-top: 0; /* Remove blank space above */
}

.destination-main-image h3 {
  font-size: 20px;
  color: #f4c842;
  margin-bottom: 12px;
}

.destination-main-image img {
  width: 100%;
  height: 300px; /* Increase height for better view */
  object-fit: cover; /* Ensures the image fills the space without distortion */
  border-radius: 8px;
  display: block;
  margin-top: 20px; /* Slight spacing below title if needed */
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}




/* ===== Inclusions & Exclusions ===== */
.inclusions-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.inclusion-box {
  flex: 1 1 300px;
  padding: 20px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
}

.inclusion-box h3 {
  margin-bottom: 15px;
  color: #6d2a1d;
  font-size: 18px;
}

.inclusion-box ul {
  list-style: none;
  padding: 0;
}
.inclusion-box li {
  margin-bottom: 10px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.inclusion-box li i {
  color: #f49e3f;
}
.inclusion-box li i.fa-times-circle {
  color: red;
}

/* ===== Booking Form ===== */
#book {
  background: #f4f1e9;
  padding: 30px 20px;
  border-radius: 10px;
}

#book h2 {
  color: #6d2a1d;
  margin-bottom: 10px;
}
#book p {
  margin-bottom: 20px;
}

form fieldset {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
}

form legend {
  font-weight: bold;
  color: #6d2a1d;
  padding: 0 8px;
}

form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

form textarea {
  min-height: 100px;
}

.form-submit {
  background: #f49e3f;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.form-submit:hover {
  background: #6d2a1d;
}
/* ===== Book Now Form Submit Button Center ===== */
#book .form-submit {
  display: block;
  margin: 20px auto 0;   /* center horizontally */
}


/* ===== Scroll to Top Button ===== */
.scroll-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #f49e3f;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: background 0.3s ease;
}
.scroll-top-btn:hover {
  background: #6d2a1d;
}

/* ===== Floating WhatsApp Button ===== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.whatsapp-float:hover {
  background: #128c7e;
}
















/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .tabs-container {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .destination-accommodation-section {
    flex-direction: column;
  }
  .accommodation-card {
    flex-direction: column;
  }
  .inclusions-container {
    flex-direction: column;
  }
}



/* ============================= */
/* Responsive Design (max-width: 770px) */
/* ============================= */
@media screen and (max-width: 770px) {

  /* Top Info */
  .top-info {
    flex-direction: column;
    text-align: center;
    gap: 6px;
    font-size: 13px;
  }

  /* Header */
  .header {
    flex-direction: column;
    align-items: center;
    padding: 15px 20px;
    text-align: center;
  }
  .logo-container2 {
    padding-left: 0;
  }
  .header nav {
    margin-top: 10px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  /* Hero */
  .hero-title {
    padding: 8px 12px;
  }
  .hero-title h2 {
    font-size: 1.5em;
  }
  .hero-title p {
    font-size: 15px;
  }
  .img-background img {
    height: 70vh;
  }

  /* Tabs */
  .tabs-container {
    flex-wrap: wrap;
    gap: 8px;
  }
  .tab-btn {
    font-size: 13px;
    padding: 8px 12px;
  }

  /* Info Block */
  .info-block {
    font-size: 14px;
    padding: 12px;
  }

  /* Accommodation & Destination */
  .destination-accommodation-section {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .accommodation-images {
    grid-template-columns: 1fr;
  }
  .destination-main-image img {
    max-height: 240px;
  }

  /* Meals */
  .meals h3 {
    font-size: 15px;
  }

  /* Accommodation Card */
  .accommodation-card {
    flex-direction: column;
  }
  .accommodation-info h3 {
    font-size: 18px;
  }

  /* Inclusions */
  .inclusions-container {
    flex-direction: column;
  }

  /* Booking Form */
  #book {
    padding: 20px 15px;
  }

  /* Scroll Top */
  .scroll-top-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  /* WhatsApp */
  .whatsapp-float {
    font-size: 14px;
    padding: 8px 12px;
  }
}


/* ============================= */
/* Responsive Design (max-width: 480px) */
/* ============================= */
@media screen and (max-width: 480px) {

  /* Top Info */
  .top-info {
    font-size: 12px;
    padding: 6px 10px;
  }

  /* Header */
  .header {
    padding: 10px 15px;
  }
  .header nav a {
    font-size: 0.9em;
  }
  .header .logo {
    height: 50px;
  }

  /* Hero */
  .hero-title h2 {
    font-size: 1.3em;
  }
  .hero-title p {
    font-size: 13px;
  }
  .img-background img {
    height: 50vh;
  }

  /* Tabs */
  .tab-btn {
    font-size: 12px;
    padding: 6px 10px;
  }

  /* Info Block */
  .info-block {
    font-size: 13px;
  }

  /* Accommodation & Destination */
  .destination-accommodation-section {
    flex-direction: column;
    padding: 12px;
  }
  .accommodation-images {
    grid-template-columns: 1fr;
  }
  .destination-main-image img {
    height: 200px;
  }

  /* Meals */
  .meals h3 {
    font-size: 14px;
  }

  /* Accommodation Card */
  .accommodation-info h3 {
    font-size: 16px;
  }
  .accommodation-info p {
    font-size: 13px;
  }

  /* Inclusions */
  .inclusion-box {
    padding: 15px;
  }
  .inclusion-box h3 {
    font-size: 16px;
  }
  .inclusion-box li {
    font-size: 13px;
  }

  /* Booking Form */
  #book {
    padding: 15px 10px;
  }
  form legend {
    font-size: 0.9em;
  }

  /* Scroll Top */
  .scroll-top-btn {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  /* WhatsApp */
  .whatsapp-float {
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 30px;
  }
}
