/* ============================================================
   FRONT PAGE STYLES — Inspired by Go2Africa
   ============================================================ */

:root {
  --tta-green: #3b5d3a;
  --tta-beige: #f4ede3;
  --tta-gold: #d7a94e;
  --tta-dark: #222;
  --tta-light: #fff;
  --tta-gray: #777;
  --tta-max-width: 1200px;
  --tta-radius: 12px;
  --tta-transition: all 0.3s ease;
  --tta-font-main: "Poppins", "Lato", sans-serif;
}

/* === General Structure === */

body.home,
.tta-homepage {
  font-family: var(--tta-font-main);
  color: var(--tta-dark);
  background: var(--tta-light);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: var(--tta-max-width);
  margin: 0 auto;
}

.tta-section {
  padding: 80px 0;
  position: relative;
}

.tta-section-header {
  text-align: center;
  margin-bottom: 40px;
}

.tta-section-header h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--tta-dark);
  margin-bottom: 10px;
}

.tta-section-header p {
  color: var(--tta-gray);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1rem;
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.tta-hero-slider {
  position: relative;
  overflow: hidden;
  height: 90vh;
  min-height: 600px;
}

.tta-hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.tta-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--tta-light);
}

.tta-hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.tta-hero-text p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.tta-btn-primary {
  background: var(--tta-gold);
  color: var(--tta-dark);
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--tta-transition);
}

.tta-btn-primary:hover {
  background: var(--tta-dark);
  color: var(--tta-light);
}

/* ============================================================
   GRID LAYOUTS
   ============================================================ */

.tta-grid {
  display: grid;
  gap: 30px;
}

.tta-destination-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.tta-tour-grid,
.tta-accommodation-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* ============================================================
   DESTINATION CARDS
   ============================================================ */

.tta-destination-card {
  position: relative;
  border-radius: var(--tta-radius);
  overflow: hidden;
  background: var(--tta-light);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: var(--tta-transition);
}

.tta-destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.tta-destination-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.tta-destination-card h3 {
  padding: 15px;
  font-size: 1.1rem;
  color: var(--tta-dark);
}

/* ============================================================
   TOUR CARDS
   ============================================================ */

.tta-tour-card {
  border-radius: var(--tta-radius);
  overflow: hidden;
  background: var(--tta-light);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: var(--tta-transition);
}

.tta-tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

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

.tta-tour-info {
  padding: 20px;
}

.tta-tour-info h3 {
  font-size: 1.2rem;
  color: var(--tta-dark);
  margin-bottom: 5px;
}

.tta-tour-info p {
  color: var(--tta-gray);
  font-size: 0.95rem;
}

/* ============================================================
   WHY TRAVEL WITH US
   ============================================================ */

.tta-bg-light {
  background: var(--tta-beige);
}

.tta-why-us {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  text-align: center;
}

.tta-why-item i {
  font-size: 2rem;
  color: var(--tta-green);
  margin-bottom: 10px;
  display: block;
}

.tta-why-item h3 {
  font-size: 1.2rem;
  color: var(--tta-dark);
  margin-bottom: 10px;
}

.tta-why-item p {
  color: var(--tta-gray);
  font-size: 0.95rem;
}

/* ============================================================
   GALLERY GRID
   ============================================================ */

.tta-gallery-grid {
  columns: 3 200px;
  column-gap: 15px;
}

.tta-gallery-item {
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
  border-radius: var(--tta-radius);
}

.tta-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.tta-gallery-item:hover img {
  transform: scale(1.05);
}

.tta-gallery-item figcaption {
  font-size: 0.9rem;
  color: var(--tta-gray);
  padding-top: 8px;
}

/* ============================================================
   ACCOMMODATION CARDS
   ============================================================ */

.tta-accommodation-card {
  border-radius: var(--tta-radius);
  overflow: hidden;
  background: var(--tta-light);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: var(--tta-transition);
}

.tta-accommodation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.tta-accommodation-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.tta-accommodation-card h3 {
  padding: 15px;
  font-size: 1.1rem;
  color: var(--tta-dark);
}

/* ============================================================
   CTA / ENQUIRY SECTION
   ============================================================ */

.tta-cta {
  background: var(--tta-green);
  color: var(--tta-light);
  text-align: center;
  padding: 100px 0;
}

.tta-cta-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
	color: var(--tta-sand) !important;
}

.tta-cta-content p {
  font-size: 1rem;
  margin-bottom: 25px;
  color: #f0f0f0;
}

.tta-cta .tta-btn-primary {
  background: var(--tta-gold);
  color: var(--tta-dark);
}

.tta-cta .tta-btn-primary:hover {
  background: var(--tta-light);
  color: var(--tta-green);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.tta-btn-secondary {
  display: inline-block;
  padding: 10px 28px;
  border-radius: 50px;
  background: var(--tta-dark);
  color: var(--tta-light);
  text-decoration: none;
  font-weight: 600;
  transition: var(--tta-transition);
}

.tta-btn-secondary:hover {
  background: var(--tta-gold);
  color: var(--tta-dark);
}

.tta-section-footer {
  text-align: center;
  margin-top: 40px;
}

/* ============================================================
   RESPONSIVE STYLES
   ============================================================ */

@media (max-width: 768px) {
  .tta-hero-text h1 {
    font-size: 2.2rem;
  }
  .tta-hero-text p {
    font-size: 1rem;
  }
  .tta-section {
    padding: 60px 0;
  }
}

/* ============================================================
/* === FRONT PAGE HERO (Swiper-compatible) === 
   ============================================================ */
.tour-hero-slider {
  position: relative;
}

.tour-hero {
  width: 100%;
  height: 90vh;
  min-height: 500px;
  overflow: hidden;
}

.tour-hero .swiper-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tour-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  max-width: 700px;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.tour-hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.tour-hero-content .hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.tour-hero-content .tta-btn-primary {
  background: var(--tta-sunset, #e77b25);
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.tour-hero-content .tta-btn-primary:hover {
  background: var(--tta-accent, #d86b00);
}

.swiper-pagination-bullet {
  background: #fff !important;
  opacity: 0.7;
}

.swiper-pagination-bullet-active {
  background: var(--tta-accent, #f2b632) !important;
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  transition: opacity 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  opacity: 0.7;
}
