
body {
  margin: 0;
  font-family: 'Poppins', Arial, sans-serif;
  color: #333;
  background-color: #f4efe6;
  line-height: 1.6;
}/*=== ETOSHA GAME VIEW ===*/
/*=== Index page styles ===*/
.landing{
    background:linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)), 
    url('../assets/sossvlei.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 8%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.landing-container{
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.landing-card{
position: relative;
  width: 500px;
  height: 600px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  background-color: #ddd;
}

.landing-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.landing-card:hover img{
    transform: scale(1.05);
}

.landing-overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding-bottom: 30px;
  transition: background 0.3s ease; 
}

.landing-card:hover .landing-overlay{
    background: rgba(0,0,0,0.4);
}

.landing-overlay h2 {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #d8c3a5;
  margin-bottom: 380px;
}

.btn-overlay {
  background-color: #251704;
  text-decoration: none;
  color: #fff;
  border: none;
  padding: 10px 30px;
  border-radius: 4px;
  font-size: 14px;
  margin-bottom: 20px;
  cursor: pointer;
  letter-spacing: 1px;
  transition: background-color 0.3s ease;
}

.btn-overlay:hover {
  background-color: #5F310E;
}

@media (max-width: 768px) {
  .landing-container {
    flex-direction: column;
    align-items: center;
  }

  .landing-card {
    max-width: 90%;
  }

  .btn-overlay {
    font-size: 13px;
    padding: 8px 20px;
  }
}
/*=== End of Landing page  ===*/

/*=== Game Viewing Page ===*/
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}


.logo {
  color: rgb(6, 48, 25);
  font-weight: bold;
  font-size: 1.5rem;
  flex-shrink: 0; /* Prevents the logo from being squashed */
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
  margin: 0; /* Removes default browser padding/margin */
}

.nav-links li a {
  text-decoration: none;
  color: black;
  padding: 8px 15px;
  border-radius: 50px;
  transition: all 0.3s ease;
  white-space: nowrap; /* Keeps links on one line */
}

/* Hover effect for all links */
.nav-links li a:hover {
  background-color: #f4f4f4;
}

/* Highlighted oval links */
.nav-links li a.highlight {
  background-color: rgb(9, 54, 9);
  color: #aa7744;
}

.nav-links li a.highlight:hover {
  background-color: rgb(15, 80, 15); /* Slightly lighter green on hover */
}

.hero{
  margin-top: 20px; /* separates from navbar */
  height: 650px; /* make it taller */
  background-image: url('../assets/elephant.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  border-radius: 10px;
  overflow: hidden;   
}

.hero-content {
   /* slightly darker overlay */
  padding: 30px 50px;
  border-radius: 10px;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 20px;
}

.btn {
  background-color: #5b3a1a;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
}

.btn:hover {
  background-color: #7b5026;
}

.info-section {
  padding: 50px 20px;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
  text-align: center;
}

.our-guides {
    padding: 60px 10%;
    background: #f9f9f9;
    text-align: center;
}

.our-guides h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.guide-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-8px);
}

.guide-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.guide-info {
    padding: 20px;
}

.guide-info h3 {
    margin-bottom: 10px;
    font-size: 20px;
    color: #333;
}

.guide-info p {
    font-size: 14px;
    color: #666;
}
/* Footer container */
footer {
  background-color: rgb(1, 19, 1);
  color: white;
  padding: 20px 5px;
  font-family: Arial, sans-serif;
}

/* Footer layout */
.footer-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

/* Logo section */
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  padding: 20px;
}

.footer-logo img {
  width: 60px;
  height: auto;
}

.footer-logo p {
  margin: 0;
  font-size: 1em;
  font-weight: bold;
  color: #a97642;
}

/* Footer columns */
.footer-column {
  padding: 20px;
  text-align: center;
}

.footer-column h3 {
  margin-bottom: 10px;
  color: #a97642;
  font-size: 14px;
}

.footer-column p {
  margin:0;
  color: white;
  font-size: 14px;
}

/* Links */
.footer-column a {
  color: white;
  text-decoration: none;
}

.footer-column a:hover {
  color: #a97642;
  text-decoration: underline;
}

/* Contact icons */
.footer-column i {
  margin-right: 8px;
  color: #a97642;
}

/* Social icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 8px;
}

.social-icons a {
  color: white;
  font-size: 18px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #a97642;
  transform: scale(1.1);
}
/* Footer bottom */
.footer-bottom {
  text-align: center;
  color: #aa7744;
  font-size: 14px;
  padding-top: 10px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .footer-logo {
    align-items: center;
    text-align: center;
  }

  .footer-column {
    padding: 10px 0;
  }
}
/*=== End of Game Viewing Page ===*/

/*=== AboutUsGameV Page ===*/

:root {
    --safari-dark: #635e33;     /* Deep green */
    --safari-sand: #C19A6B;     /* Desert sand */
    --safari-beige: #F4EFE6;    /* Light warm background */
    --text-dark: #333;          /* Clean readable text */
}

body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background: #fff;
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* HERO SECTION */
.about-hero {
    position: relative;
    background: url('../assets/tour.jpg') center/cover no-repeat;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.about-hero .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(37, 45, 37, 0.6);
    top: 0;
    left: 0;
}

.about-hero h1 {
    position: relative;
    font-size: 3em;
    z-index: 1;
    margin: 0;
}

.about-hero p {
    position: relative;
    font-size: 1.2rem;
    margin-top: 10px;
    z-index: 1;
}

/* CONTENT SECTIONS */
.about-content,
.about-mission {
    background: var(--safari-beige);
    padding: 60px 20px;
}

.about-content h2,
.about-mission h2 {
    text-align: center;
    color: var(--safari-dark);
    margin-bottom: 20px;
}

/* VALUES SECTION */
.about-values {
    background: #fff;
    padding: 60px 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--safari-beige);
    padding: 25px;
    border-radius: 12px;
    border-left: 6px solid var(--safari-sand);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.value-card h3 {
    color: var(--safari-dark);
}

/* GALLERY */
.about-gallery {
    padding: 60px 20px;
}

.about-gallery h2 {
    text-align: center;
    color: var(--safari-dark);
    margin-bottom: 25px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(560px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease; /* FIXED: transition must be on the base state */
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-hero {
        height: 45vh;
    }

    .about-hero h1 {
        font-size: 2.3rem;
    }
}

/* Mobile Menu Button */
.menu-btn {
  display: none;
  cursor: pointer;
  font-size: 30px;
  color: black;
}

/* Show menu button on mobile */
@media (max-width: 768px) {
  .menu-btn {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 65px;
    right: 0;
    background: white;
    width: 200px;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    display: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 8px;
  }

  .nav-links.active {
    display: flex;
  }
}
/*=== End of AboutUsGameV Page ===*/


/*=== OurServicesGameV page ===*/

#services-page {
    --namibia-gold: #e6a12c;
    --deep-safari: #2c3e50;
    --soft-sand: #f8f9fa;
    --safari-sand: #C19A6B;
}

/* Page Layout */
#services-page .section-padding {
    padding: 60px 0;
}

#services-page .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Centered Section Headers & Gold Underline Logic */
#services-page .section-header {
  margin-top: -30px;
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#services-page .section-header h2 {
    font-size: 2.5rem;
    color: var(--deep-safari);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

#services-page .section-header h3 {
    font-size: 1.8rem;
    color: var(--deep-safari);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

/* The Signature Gold Underline */
#services-page .accent-line {
    width: 70px;
    height: 4px;
    background-color: var(--namibia-gold);
    border-radius: 2px;
    margin: 0 auto;
}

/* Hero Section */
#services-page .services-hero {
    height: 70vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

#services-page .hero-overlay {
    background: rgba(0,0,0,0.4);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

#services-page .eyebrow {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    color: var(--namibia-gold);
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

#services-page .hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin: 10px 0;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

/* Plan Your Safari Button */
#services-page .cta-btn {
    display: inline-block;
    background-color: var(--safari-sand);
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid var(--safari-sand);
    margin-top: 25px;
}

#services-page .cta-btn:hover {
    background-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Service Grid Cards */
#services-page .grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

#services-page .card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 5px solid transparent;
}

#services-page .card:hover {
    transform: translateY(-10px);
    border-top-color: var(--namibia-gold);
}

#services-page .card h3 {
    color: var(--deep-safari);
    margin: 15px 0;
}

/* Vision Banner */
#services-page .vision-banner {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
}

#services-page .banner-overlay {
    padding: 120px 20px;
    background: rgba(0,0,0,0.6);
}

/* Mission & Objectives Side-by-Side */
#services-page .split-layout {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

#services-page .content-box {
    flex: 1;
    min-width: 300px;
}

#services-page .light-bg {
    background-color: var(--soft-sand);
}

/* Checklists */
#services-page .check-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

#services-page .check-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    border-bottom: 1px solid #eee;
}

#services-page .check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--namibia-gold);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Responsive Tweaks */
@media (max-width: 600px) {
    #services-page .split-layout {
        gap: 30px;
    }
    
    #services-page .hero-content h1 {
        font-size: 2.2rem;
    }

    #services-page .section-padding {
        padding: 60px 0;
    }
}
  /*=== End of OurServicesGameV page ===*/



  /*=== GameViewGallery Page ===*/
/* HERO */
.gallery-hero {
    position: relative;
    height: 200vh; /* full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    margin-bottom: 40px;
}

.gallery-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* makes image cover the entire section */
    z-index: 1;
    filter: brightness(50%); /* semi-dark overlay */
}

.hero-content {
    position: relative;
    z-index: 2; /* ensures content stays on top of the image */
    color: white;
    display: flex;
    flex-direction: column;
    gap: 10px;
  
}

/*=== Gallery Intro Styles ===*/
.gallery-intro {
    padding: 60px 0 20px; /* Space above and below the text */
    text-align: center;
    background-color: #f4efe6; /* Matches your body background */
}

.gallery-intro .container {
    max-width: 800px; /* Limits width for better readability */
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-intro h2 {
    font-size: 2.5rem;
    color: var(--dark, #1a1a1a);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
}

/* Optional: Elegant gold line under the slogan */
.gallery-intro h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--namibia-gold,#e6a12c);
    margin: 15px auto 0;
}

.gallery-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    font-style: italic; /* Gives it a more "storytelling" feel */
    max-width: 600px;
    margin: 20px auto 0;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  /* #gallery-page .gallery-intro h2 {
        font-size: 1.8rem;
    }
    
    #gallery-page .gallery-intro p {
        font-size: 1rem;
    }*/
}    

/* =========================
   CAROUSEL CONTAINER
========================= */
.carousel-container {
    position: relative;
    width: min(1100px, 92%);
    margin: 100px auto 90px;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
    background: 0;
}

/* =========================
   IMAGE WRAPPER
========================= */
.carousel {
    position: relative;
    height: 450px;
}

/* Images */
.carousel-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

/* Active Image (Fade Effect) */
.carousel-img.active {
    opacity: 1;
    position: relative;
}

/* =========================
   NAVIGATION BUTTONS
========================= */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    cursor: pointer;

    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

/* Position */
.carousel-btn.prev { left: 20px; }
.carousel-btn.next { right: 20px; }

/* Hover Effect */
.carousel-btn:hover {
    background: #c19a6b;
    transform: translateY(-50%) scale(1.08);
  
}

.carousel-dots {
    text-align: center;
    margin-top: 15px;
}

.carousel-dots span {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-dots span.active-dot {
    background: #c19a6b;
}

.gallery-intro .cta-button {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 35px;
    background-color: var(--safari-sand, #c19a6b);
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 50px; /* Rounded pill shape */
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(193, 154, 107, 0.3);
}

.gallery-intro .cta-button:hover {
    background-color: #a67c52; /* Slightly darker shade on hover */
    transform: translateY(-3px); /* Subtle lift effect */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: white;
}

.gallery-intro .cta-button:active {
    transform: translateY(-1px);
}
/* GALLERY GRID */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 20px;
}

.gallery-item {
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 80%;
}

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

/* CAROUSEL ANIMATION */
.carousel-container{
   width: 100%;
    max-width: 100%;
    margin: 0 auto 40px;
}
.carousel-img {
    animation: fade 0.8s ease-in-out;
    width: 100%;
    height: 60vh;
    object-fit: cover;
}

@keyframes fade {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

/* DOTS */
.carousel-dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
}

.carousel-dots span {
    display: inline-block;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    cursor: pointer;
}

.carousel-dots .active-dot {
    background: #c19a6b;
}

/*=== End of GameViewGallery Page ===*/

/*=== End of CSS for ETOSHA GAME VIEW ===*/



/*=== ETOSHA TOURS AND RENTALS ===*/

/*=== Tours & Rental Page ===*/
/* RESET 
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}*/

/* === GENERAL === */


h1, h2, h3 {
  font-weight: 600;
}

/* === NAVBAR === */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  padding: 15px 40px;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.logo img {
  height: 90px;  
  width: auto;
}





/* === HERO === */
.hero-2 {
  background: url('../assets/sunset2.jpg') center/cover no-repeat;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.btn-primary {
  background-color: #5F310E;
  border: none;
  color: white;
  padding: 12px 28px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #5F310E;
}

/* Scroll Down Arrow */
.scroll-down {
  position: absolute;
  bottom: -100px; /* distance from bottom of hero */
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: white;
  text-decoration: none;
  animation: bounce 2s infinite;
  z-index: 2;
}

/* Bounce animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(10px);
  }
  60% {
    transform: translateX(-50%) translateY(5px);
  }
}

/* === ABOUT === */
.about {
  padding: 60px 10%;
  background-color: #f4f4f4;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-img {
  width: 30%;
  border-radius: 10px;
}

.about-text {
  flex: 1;
}

/* === Self drive | Private tours === */

/* ===== TOURS SECTION ===== */

.tour-intro {
  text-align: center;
  padding: 50px 20px 30px;
  max-width: 800px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
}

.tour-intro h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tour-intro p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  font-style: italic;
}

.tour-intro h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #e6a12c;
  margin: 15px auto 0;
}

/* ===== CARD LAYOUT ===== */

.tour-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  padding: 40px 8%;
  flex-wrap: wrap;
}

.tour-card {
  flex: 1;
  min-width: 280px;
  max-width: 380px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.tour-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
}

.card-content {
  padding-top: 20px;
}

.card-content h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 15px;
}

.card-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  max-width: 320px;
  margin: 0 auto;
}

/* ===== CALL TO ACTION ===== */

.tour-cta {
  text-align: center;
  padding: 70px 20px;
  background-color: #f7f7f7;
  margin-top: 40px;
}

.tour-cta h2 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 15px;
}

.tour-cta p {
  color: #555;
  margin-bottom: 25px;
  font-size: 1.05rem;
}

/* Button */
.cta-btn {
  display: inline-block;
  background-color: #e6a12c;
  color: #fff;
  padding: 14px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-btn:hover {
  background-color: #cf8e1f;
  transform: scale(1.05);
}

/* ===== MOBILE RESPONSIVE ===== */

@media (max-width: 768px) {
  .tour-container {
    padding: 30px 20px;
  }

  .tour-card img {
    height: 200px;
  }
}
/*=== About Us Tours ===*/
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f7f3ee;
  color: #333;
  line-height: 1.6;
}
/* HEADER */
.about-header {
  position: relative;
  height: 70vh;
  width: 100%;

  background-image: url('../assets/tours-rentals/about..jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  color: white;
}


.about-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Keep content above overlay */
.about-header * {
  position: relative;
  z-index: 2;
}

.about-header h1 {
  font-size: 48px;
  margin-bottom: 15px;
  color: #ffffff;
}

.header-image {
  max-width: 250px;
  margin: 20px 0;
  border-radius: 12px;
}

.about-header p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  color: #f1f1f1;
}

/* ================================
   RESPONSIVE DESIGN
================================ */
@media (max-width: 768px) {
  .about-header {
    padding: 80px 15px;
  }

  .about-header h1 {
    font-size: 36px;
  }

  .about-header p {
    font-size: 16px;
  }

  .header-image {
    max-width: 180px;
  }
}

@media (max-width: 480px) {
  .about-header h1 {
    font-size: 30px;
  }

  .about-header p {
    font-size: 15px;
  }
}

/* CARDS SECTION */
.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  padding: 50px 40px;
}

/* INDIVIDUAL CARD */
.info-card {
  background-color: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  min-height: 450px; /* ensures buttons can stay at bottom */
  text-align: center;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.info-card h2 {
  color: #5b3a1a;
  font-size: 24px;
  margin-bottom: 15px;
}

.card-image {
  max-width: 450px;
  border-radius: 8px;
  margin-bottom: 25px;
}

.info-card ul {
  list-style-type: disc;
  padding-left: 20px;
  text-align: left;
  margin-bottom: 15px;
}

.info-card p {
  margin-bottom: 15px;
}

/* BUTTON POSITIONING */
.learn-more {
  background-color: #5b3a1a;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  align-self: center; /* bottom-right alignment */
  margin-top: auto;
  transition: background-color 0.3s ease;
}

.learn-more:hover {
  background-color: #3e2612;
}

/* OBJECTIVES SECTION */
.objectives-section {
  text-align: center;          
  max-width: 600px;
  margin: 50px auto;
  padding: 40px 20px;
  background-color: #e8e2d8;
  border-radius: 12px;
}

.objectives-section h2 {
  color: #5b3a1a;
  font-size: 36px;
  margin-bottom: 20px;
}

.objectives-section p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0 auto;
  text-align: left;;
}

.extra-content {
  margin-bottom: 15px;
  font-size: 15px;
  color: #444;
}

/* Tour Services Page */

/* Section */
.overview-section {
  padding: 5px 0;
  background-color: #f6f7f7;
}

/* Container for the heading */
.our-services {
  text-align: center;
  padding: 60px 20px 20px 20px; /* Extra top padding to separate from the section above */
  background-color: #f9f9f9; /* Light grey background to distinguish the section */
}

/* Heading Styling */
.our-services h2 {
  font-family: 'Arial', sans-serif;
  font-size: 2.5rem;
  color: #2c3e50; /* Deep charcoal blue */
  text-transform: uppercase;
  letter-spacing: 3px; /* Gives it a premium, spacious look */
  margin: 0;
  position: relative;
  display: inline-block;
}

/* Decorative Gold Underline */
.our-services h2::after {
  content: "";
  display: block;
  width: 50%; /* Short line for a modern look */
  height: 4px;
  background-color: #e6a12c; /* Matching your N$ gold color */
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

/* Grid: 4 cards in one row */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 60px;
}

/* Cards */
.overview-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.overview-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

/* Icons */
.overview-card i {
  font-size: 34px;
  color: #aa7744;
  margin-bottom: 15px;
}

/* Titles */
.overview-card h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: rgb(9, 54, 9);
}

/* Lists */
.overview-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.overview-card ul li {
  font-size: 14px;
  margin-bottom: 10px;
  color: #333;
}

/* Vision text */
.overview-card p {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}


/* Responsive */
@media (max-width: 1100px) {
  .overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .overview-grid {
    grid-template-columns: 1fr;
  }
}


/* Hero Section */
.hero-services {
  position: relative;
  height: 60vh;
  background-image: url("../assets/tours-rentals/IP_14466-2.jpg"); /* change image */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay */
.hero-overlay-services {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.55);
}

/* Content */
.hero-content-services {
  position: relative;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content-services h1 {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: bold;
}

.hero-content-services p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #f0f0f0;
}

/* CTA Button */
/* CTA Button */
.hero-btn {
  display: block;
  width: fit-content;
  margin: 20px auto;   /* THIS centers it */
  padding: 14px 36px;
  background-color: #aa7744;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero-btn:hover {
  background-color: #8f5f30;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    height: 60vh;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 16px;
  }
}

/* Tour Gallery Page */
/* --- Tour Gallery Page --- */

.container-gallery {
  max-width: 1200px; /* Fixed the 12000px typo */
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.gallery-hero {
  position: relative;
  height: 45vh;
  /* Make sure this path is correct relative to your CSS file */
  background-image: url("../assets/about.jpg"); 
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gallery-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.gallery-hero-content {
  position: relative;
  text-align: center;
  color: white;
  z-index: 2;
}

.gallery-hero-content h1 {
  font-size: 40px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Gallery Grid Section */
.gallery-section {
  padding: 80px 0;
  background-color: #fcfcfc;
}

.gallery-grid {
  display: grid;
  /* This creates a responsive grid that fills automatically */
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

/* Individual Gallery Items */
.gallery-item {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  height: 280px; /* Fixed height for uniformity */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Crops image to fill the 280px height without stretching */
  display: block;
  transition: transform 0.5s ease;
}

/* Hover Effects */
.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover img {
  transform: scale(1.05); /* Subtle zoom on hover */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .gallery-hero-content h1 {
    font-size: 28px;
  }
  .gallery-section {
    padding: 40px 0;
  }
  .gallery-grid {
    gap: 15px;
  }
}
/*=== End of About Us Tours ===*/

/*=== Booking page ===*/

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f2f5f7;
    margin: 0;
    display: flex; /* Required for alignment to work */
    flex-direction: column; /* Stacks Header, Content, and Footer */
    min-height: 100vh;
}
main {
  flex-grow: 1; /* Makes main content take up remaining space */
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center;     /* Centers vertically */
  padding: 40px 20px;

}

/* Create a wrapper or use the container to push itself to the middle */
.booking-container {
    background: #ffffff;
    padding: 30px;
    width: 100%;
    max-width: 420px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.booking-container h2 {
    text-align: center;
    color: #2e7d32;
    margin-bottom: 5px;
}

.subtitle {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
}

input, select {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input:focus, select:focus {
    outline: none;
    border-color: #2e7d32;
}

button {
    width: 100%;
    padding: 12px;
    background: #2e7d32;
    color: #ffffff;
    border: none;
    font-size: 15px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
}

button:hover {
    background: #1b5e20;
}
.success-message {
    text-align: center;
    color: #1b5e20;
    margin-top: 15px;
    font-weight: bold;
}


/*=== Contact page===*/
/* --- Contact Hero --- */
.contact-hero {
    background-color: #e1e1da;
    color: rgb(58, 57, 57);
    text-align: center;
    padding: 60px 20px;
}

.contact-hero h1 { margin: 0; font-size: 2.5rem; }
.contact-hero p { font-size: 1.1rem; opacity: 0.9; }

/* --- Main Layout --- */
.contact-container {
    max-width: 1100px;
    margin: -40px auto 60px; /* Overlaps hero slightly */
    padding: 0 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Form is wider than info box */
    gap: 30px;
}

/* --- Form Styling --- */
.contact-form-container {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-row {
    display: flex;
    gap: 15px;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #100f0f;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
}

.submit-btn {
    background: #e3e1cf;
    color: rgb(24, 22, 22);
    border: none;
    padding: 15px 30px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
}

.submit-btn:hover { background: #1b5e20; }

/* --- Info Box Styling --- */
.contact-info-container {
    background: white;
    color: rgb(3, 3, 3);
    padding: 60px;
    border-radius: 8px;
}

.info-details i {
    margin-right: 10px;
    color: #333131;
}

.social-icons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: rgb(49, 45, 45);
    font-size: 1.5rem;
    transition: 0.3s;
}

.social-icons a:hover { color: #1b5e20; }

/* --- Responsive Layout --- */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr; /* Stacks vertically on mobile */
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .contact-container {
        margin-top: 20px;
    }
}

/* SUCCESS POPUP */
.popup {
    position: fixed;
    top: 30px;
    right: 30px;
    background: #2e7d32;
    color: white;
    padding: 18px 28px;
    border-radius: 6px;
    font-weight: bold;
    display: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 9999;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px);}
    to { opacity: 1; transform: translateY(0);}
}
