/*
 Theme Name: Adventure Trekking Camp Child
 Theme URI: https://yourwebsite.com/
 Description: Child theme for Adventure Trekking Camp Theme
 Author: Your Name
 Template: adventure-trekking-camp
 Version: 1.0.0
*/

/* Your custom CSS below */



/* Import parent theme styles */
@import url("../adventure-trekking-camp/style.css");




a.site-logo img {
    max-height: 90px !important;
}
/* =======================================
   GLOBAL STYLES
======================================= */
:root {
  --primary: #004aad;
  --secondary: #f7931e;
  --neutral: #f8f9fc;
  --dark: #0d1b2a;
  --text: #333;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: #fff;
  margin: 0;
  line-height: 1.7;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

h1, h2, h3, h4 {
  color: var(--dark);
  font-weight: 600;
}

p {
  color: #555;
  margin-bottom: 1rem;
}

section {
  padding: 100px 5%;
}

.menu-header {
     background-color : #F6F7F9 !important;
} 

#site-header{
  background-color: #5a7aac!important;
}
.gb_nav_menu li a {
   color: #ffc107 !important;
    font-size: 18px !important;
}
.linksbox a{
  font-weight: 700;
}
/* =======================================
   HERO SECTION
======================================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh; /* Full screen section */
  overflow: hidden;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-background .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4); /* Dark layer */
}

.hero-content {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 50px;
}

.hero-left h1 {
  font-size: 48px;
  color: #fff;
}

.hero-left p {
  font-size: 18px;
  color: #fff;
}

.book-now-btn {
  background: #ffb400;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}



/* =======================================
   ACTIVITIES SECTION
======================================= */
.activities {
  text-align: center;
  padding: 100px 0;
  /* background: var(--neutral); */
}

.activities h2 {
  color: var(--primary);
  margin-bottom: 10px;
}

.subtitle {
  color: #666;
  margin-bottom: 40px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-content: center;
}

.card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card h3 {
  color: var(--dark);
  margin: 15px 0 5px;
}

.card p {
  padding: 0 15px;
  color: #555;
}

.price {
  color: var(--secondary);
  font-weight: bold;
  margin: 10px 0;
}

.btn-view {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  margin-bottom: 15px;
  transition: 0.3s;
  width: 200px;
   
}
/* Center it */
.center-btn {
  text-align: center;
}

.btn-view:hover {
  background: var(--secondary);
}

/* =======================================
   STATS
======================================= */
.stats {
  background: #5a7aac;
  color: #fff;
  padding: 70px 0;
  text-align: center;
}

.stats .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.stat h3 {
  font-size: 2.5rem;
  margin-bottom: 5px;
}

.stat p {
  color: #dbe4ff;
}

/* =======================================
   GALLERY
======================================= */
/* --- Gallery Slider Wrapper --- */
.gallery-slider {
  margin-top: 20px;
}
 
.gallery.container h2{
  text-align: center;
}
/* --- Slide Box --- */
.gallery-slider .swiper-slide {
  height: 350px;
  overflow: hidden;
  border-radius: 15px;
}

/* --- Slide Image --- */
.gallery-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 15px;
}

/* --- Navigation Buttons --- */
.swiper-button-prev,
.swiper-button-next {
  color: #fff;
}

/* --- Pagination Active Bullet --- */
.swiper-pagination-bullet-active {
  background: #fff;
}

/* =======================================
   TESTIMONIALS
======================================= */
.testimonials {
  background: var(--neutral);
  padding: 100px 0;
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 25px;
  font-style: italic;
}

/* =======================================
   BLOG / STORIES
======================================= */
.blog {
  padding: 100px 0;
  text-align: center;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-content: center;
}

.post {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.post:hover {
  transform: translateY(-5px);
}

.post img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* =======================================
   CTA
======================================= */
.cta {
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  color: #fff;
  text-align: center;
  padding: 100px 5%;
}

.cta .btn-main {
  background: #fff;
  color: var(--primary);
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.cta .btn-main:hover {
  background: #f3f5fa;
}

/* =======================================
   SUBSCRIBE
======================================= */
.subscribe-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  max-width: 1200px;
  margin: 40px auto;
  gap: 40px;
}

/* Left Video/Image */
.left-media {
  width: 20%;
}

.left-media video {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

/* Right Content */
.right-content {
  width: 80%;
}

.right-content h3 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #081c3c;
  font-weight: 700;
}

.right-content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

/* Subscribe Form */
.subscribe-form {
  display: flex;
  gap: 15px;
  align-items: center;
}

.subscribe-form input {
  padding: 12px 18px;
  border: 2px solid #ddd;
  border-radius: 30px;
  outline: none;
  flex: 1;
  font-size: 15px;
}

.subscribe-form button {
  padding: 12px 25px;
  background: #f7931e;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.subscribe-form button:hover {
  background: #e48214;
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .subscribe-box {
    flex-direction: column;
    text-align: center;
  }

  .left-media,
  .right-content {
    width: 100%;
  }

  .subscribe-form {
    flex-direction: column;
  }

  .subscribe-form input {
    width: 100%;
  }

  .subscribe-form button {
    width: 100%;
  }
}



/* =======================================
   FOOTER
======================================= */

.footer-col p {
    margin-top: 20px;
    color: #fff;
}


.footer-col ul li a{
    color: #fff;
}
footer#site-footer {
  background-color: #5a7aac;
}

.footer-title {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  margin-bottom: 18px;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;        /* length of line */
  height: 3px;        /* thickness */
  background: #ffcc00;  /* line color */
  border-radius: 3px;
}

h4.footer-title {
    color: #fff;
}


.copyright{
   background: #5a7aac !important;
}

@media (max-width: 768px) {
  .logo .site-title{
    text-align: left;
  }
  a.site-logo img{
    max-height: 60px !important;
  }
  .toggle-col{
    justify-content: end;
  }
  .linksbox{
    flex-shrink: 0;
    padding-right: 15px
  }
 .linksbox a{
    font-size: 14px;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 400;
}
.toggle-menu{
  width: auto;
}
  footer#site-footer {
    padding: 20px 5% 20px; /* reduced padding */
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;  /* smaller gap */
  }

  .footer-col {
    text-align: left;
  }

  .footer-title {
    margin-bottom: 8px;
    padding-bottom: 5px;
  }

  .footer-title::after {
    left: 0;                  /* align underline left */
    transform: none;
  }

  .footer-col p {
    margin-top: 5px;
    font-size: 0.9rem;
  }

  .footer-col ul li {
    margin-bottom: 4px;
  }

  .footer-bottom {
    margin-top: 15px;
    text-align: center;
    font-size: 0.8rem;
  }

  .social-icons {
    margin-top: 5px;
  }
}


/* =======================================
   RESPONSIVE DESIGN
======================================= */
@media (max-width: 992px) {
  .hero {
    padding: 80px 5%;
  }

  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
  }
  .hero-left h1 {
    font-size: 2.2rem;
  }
  .hero-right img {
    height: 350px;
  }

  .stats .container {
    flex-direction: column;
    gap: 20px;
  }
  .subscribe-box {
    flex-direction: column;
  }
  .subscribe-box img {
    width: 100%;
    height: 250px;
  }
  .subscribe-box div {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  section#block-8,section#block-9, section#block-10, section#block-11 {
    padding: 10px !important;
  }
}

@media (max-width: 600px) {
  .hero-left h1 {
    font-size: 1.8rem;
  }
  .activities, .gallery, .testimonials, .blog, .cta, .subscribe {
    padding: 60px 20px;
  }
  .card, .post {
    width: 100%;
  }
  .subscribe-form {
    flex-direction: column;
  }
  .subscribe-form input,
  .subscribe-form button {
    width: 100%;
  }
  .footer {
    text-align: center;
  }
}






/* ==========================
   SOCIAL ICONS
   ========================== */
.social-icons {
    margin-top: 18px;
}

.social-icons a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 8px;
    background: rgba(255, 255, 255, 0.15);
    transition: 0.3s ease;
}

.social-icons a i {
    color: #ffffff;
    font-size: 14px;
}

.social-icons a:hover {
    background:#f7931e;
    transform: translateY(-3px);
}

/* ==========================
   LINKS (ANY <a> IN FOOTER)
   ========================== */
.footer-col a:hover {
    color: #f7931e !important;
    opacity: 1;
}


.site-info {
    display: none;
}
.swiper-button-prev,
.swiper-button-next {
  display: none !important;
}

a.site-logo img{
    max-height: 60px;
}

.site-navigation .primary-menu li.menu-item-has-children:hover > ul{
  background-color: #5a7aac;
}



    /* ================================
   OUR ADVENTURES SECTION
================================ */
.adventures {
  padding: 100px 5%;
  background: linear-gradient(180deg, #f9fbff 0%, #eef3fa 100%);
  text-align: center;
}

.adventures .heading {
  margin-bottom: 60px;
}

.adventures .heading h1 {
  font-size: 2.8rem;
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.adventures .heading h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary);
  border-radius: 2px;
}

/* ===== Adventure Items ===== */
.adventures-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
}

.adventure-item {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  padding: 40px 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.adventure-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--secondary);
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.adventure-item:hover::before {
  opacity: 1;
}

.adventure-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.adventure-item h2 {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.adventure-item p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

.adventure-item .btn {
  display: inline-block;
  background: var(--secondary);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  transition: 0.3s ease;
}

.adventure-item .btn:hover {
  background: #ff9f45;
  transform: scale(1.05);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .adventures {
    padding: 70px 5%;
  }

  .adventures .heading h1 {
    font-size: 2.2rem;
  }

  .adventure-item {
    padding: 30px 20px;
  }

  .adventure-item h2 {
    font-size: 1.4rem;
  }
}

