/* Reset some margins */
body, html {
  margin: 0;
  padding: 0;
}

@font-face {
    font-family: 'holidayfreeregular';
    src: url('../fonts/Holiday/holidayfree-webfont.woff2') format('woff2'),
         url('../fonts/Holiday/holidayfree-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

header {
  position:fixed;
  top: 0;
  width: 100%;
  background: white;       /* or whatever matches your design */
  z-index: 9;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);  /* subtle shadow when floating */
}

/* Initially hidden logo in navbar (small version) */
.navbar-logo {
  width: 50px;
  opacity: 0; /* we’ll fade this in with GSAP */
}

.navbar-logo a{text-decoration: none;}

.navbar-logo img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease-in-out;
}

.navbar-logo img:hover{
 transform: scale(1.1) rotate(360deg);
}


/* Nav styling */
nav ul {
  display: flex;
  justify-content: center;
  align-items: center;  /* vertical centering */
  list-style: none;
  margin: 0;
  padding: 10px 0;
}

nav ul li {
  margin: 0 35px;
}

nav ul li a {
  display: inline-block;             /* needed for transform */
  position: relative;                /* so ::after positions under it */
  text-decoration: none;
  color: #333;
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  transition: transform 0.2s ease;
}

nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 3px;                      /* adjust as needed */
  left: 50.8%;
  transform: translateX(-50%);
  width: 0;                          /* start hidden */
  height: 2px;                       /* thickness of underline */
  background-color: #000;            /* black underline */
  transition: width 0.3s ease;
}


nav ul li a:hover::after {
  width: 100%;                       /* underline grows to full */
}

nav ul li.navbar-logo a::after{
  display: none;
}


/* Flag container: attach to top center */
.flag-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;       /* attach to viewport */
  top: 0;
  left: 47.25%;
  transform: translateX(-50%);
  z-index: 10;
}

/* The string */
.flag-string {
  width: 0.5px;
  height: 0px;          /* starting length */
  background: #111;
  transform-origin: top center;
}

/* The flag itself: realistic cloth look */
.flag {
  position: relative;
  padding: 15px 10px 40px 10px;
  background: linear-gradient(135deg, #fdfdfd 0%, #ffffff 40%, #f2f2f2 70%, #dcdcdc 100%);
  border-radius: 4px;
  box-shadow:
    inset 0 0 10px rgba(0,0,0,0.1),   /* inside soft shadow for depth */
    0 4px 10px rgba(0,0,0,0.2);       /* drop shadow */
  transform-origin: top center;
  margin-top: 0;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);  /* pointed bottom */
  overflow: hidden;
  transition: clip-path 0.4s ease;  /* smooth shape change */
}

.flag:hover {
  clip-path: polygon(
    0 0, 100% 0, 
    100% 80%, 
    50% 95%,   /* move tip up slightly */
    0 80%
  );
}

/* Subtle folds: add pseudo-elements
.flag::before,
.flag::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 20%;
  background: rgba(0,0,0,0.05);   /* very subtle fold shadow 
  z-index: 1;
}*/

.flag::before {
  left: 0;
}

.flag::after {
  right: 0;
}

.flag img {
  width: 145px;
  display: block;
  position: relative;   /* keep above pseudo-elements */
  z-index: 2;
}

.video-banner {
  position: relative;
  width: 100%;
  height: 70vh;          /* adjust height: e.g., 70vh = 70% of viewport */
  overflow: hidden;
}

.video-banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* crop & fill nicely */
  display: block;
}

.video-banner .banner-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;     /* crop & fill nicely */
  display: block;
}

/* Overlay content */
.hero-overlay {
  position: absolute;
  bottom: 15%;
  left: 8%;
  color: #fff;
  max-width: 615px;
}

.hero-overlay h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero-tagline {
  font-size: 20px;
  opacity: 0.9;
  margin-bottom: 16px;
}

.hero-meta {
  display: flex;
  gap: 20px;
  font-size: 25px;
  opacity: 0.85;
}

.hero-overlay h1,
.hero-overlay p,
.hero-meta {
  text-shadow:
    0 2px 8px rgba(0,0,0,0.55),
    0 1px 2px rgba(0,0,0,0.35);
}

/* start Hero Image Slider banner styles */
/* ==============================
   HMF HERO SLIDER
============================== */

.hero-slider {
  position: relative;
  width: 100%;
  height: 70vh; /* adjust height: e.g., 70vh = 70% of viewport */
  overflow: hidden;
}

.hero-slider .swiper-slide {
  width: 100%;
  height: 100%;
  object-fit: cover; /* crop & fill nicely */
  display: block;
}

/* Dark cinematic overlay */
.hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0.65)); */
  z-index: 1;
}

/* Overlay content */
.hero-overlay {
  position: absolute;
  top: 63%;
  left: 46%;
  transform: translate(-50%, -50%);
  z-index: 3;

  width: 100%;
  max-width: 725px; /* controls content width */
  padding: 0 20px;

  text-align: center;
  color: #fff;
}

.hero-overlay h1 {
  font-size: 50px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 15px;
}

.hero-tagline {
  font-size: 20px;
  margin-bottom: 25px;
  opacity: 0.9;
}

.hero-meta {
  display: block;
  justify-content: center;   /* centers horizontally */
  gap: 30px;
  font-size: 25x;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-meta span {
  position: relative;
}


/* Mobile */
@media (max-width: 768px) {
  .hero-overlay h1 {
    font-size: 34px;
  }

  .hero-tagline {
    font-size: 16px;
  }

  .hero-meta {
    flex-direction: column;
    gap: 8px;
  }

  .hero-meta span::after {
    display: none;
  }
}
/* End Hero Image Slider banner styles */

/* dark overlay */
.motorcyclist-in-mountain-desert::after {
  background: radial-gradient(
    circle at center,
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.2),
    rgba(0,0,0,0)
  );
}

/* overlay container */
.festival-dates-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

/* dates styling */
.festival-dates {
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(0px);
  padding: 32px 36px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}


.date-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.calendar-icon {
  width: 28px;
  height: 28px;
}

.festival-dates h2 {
  font-size: 40px;
  font-weight: 600;
  text-shadow: 0 4px 14px rgba(0,0,0,0.6);
}


.festival-dates p {
  margin: 12px 0 24px;
  opacity: 0.9;
}

.festival-dates p.chakrata{
  margin: 12px 0 24px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 12px;;
}

.gooey-button {
  filter: url(#goo);
}


.festival-dates .gooey-button .blob{
  background: white;
  color:#111 !important;
}



/* MY self-written CSS Code*/

.LoveOf , .JoinTheTribe{text-align: center; max-width: 1000px; margin:0px auto;}
.bold_heading h1{
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 900;
  font-size: 100px;
  color:#999;
  text-transform: uppercase;
}

.bold_heading h2{
  font-family: "holidayfreeregular";
  font-size: 49px;
  margin-top: -64px;
  color: #3B75C2;
}

.subheading{
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.motorcyclist-in-mountain-desert{margin-bottom:20px;}

/* Image Collage Styles start*/
/* ==== COLLAGE GRID ==== */
.image-collage {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns */
  grid-auto-rows: 200px; /* each row is 200px tall */
  gap: 20px; /* space between images */
  max-width: 1200px; /* center layout */
  margin: 0 auto;
  padding: 20px;
}

/* ==== COLLAGE ITEMS ==== */
.collage-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* keeps crop pleasant */
  transition: transform 0.4s ease;
}

.collage-item img:hover {
  transform: scale(1.1); /* subtle zoom on hover */
}

/* ==== SIZE VARIANTS ==== */
.collage-item.wide {
  grid-column: span 2; /* double width */
}

.collage-item.tall {
  grid-row: span 2; /* double height */
}

.collage-item.big {
  grid-column: span 2;
  grid-row: span 2; /* large square */
}

/* NEW: Extra large variant (2 rows high, 4 columns wide) */
.collage-item.xl {
  grid-column: span 4;  /* spans 4 columns */
  grid-row: span 2;     /* spans 2 rows */
}

/* NEW: variant (2 rows high, 1 columns wide) */
.collage-item.octr {
  grid-column: span 1;  /* spans 1 columns */
  grid-row: span 2;     /* spans 2 rows */
}

/* NEW: variant (1 rows high, 4 columns wide) */
.collage-item.fcor {
  grid-column: span 4;  /* spans 4 columns */
  grid-row: span 1;     /* spans 1 rows */
}

.image-collage .collage-item{position: relative;}
.image-collage .collage-item .text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* shift back by half */
  text-align: justify;
}
.image-collage .collage-item .text h2{
  color:white;
  font-family: "Josefin Sans", sans-serif;
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 500;
  padding:5px 40px;
  border:3px solid white;
}
.image-collage .collage-item p{
  color:white;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1rem;
  font-weight: 300;
}

.camp .heading h1{
 font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 900;
  font-size: 75px;
  color:#999;
  text-transform: uppercase;
}

.camp .heading h2{
 font-family: "holidayfreeregular";
  font-size: 49px;
  margin-top: -64px;
  color: #3B75C2;
}

.camp .heading p.kerned{
  color:black;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 8px;
}
.camp .heading p.smallText{
  color:black;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.65rem;
  font-weight: 300;
}

   .camp ul {
      list-style: none;
      padding: 0;
      margin: 0;
      max-width: 500px;
    }
   .camp li {
      margin: 12px 0;
      padding: 10px 15px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.08);
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .camp li i {
      font-size: 20px;
      color: #3B75C2;
      min-width: 24px;
      text-align: center;
    }

/* Image Collage Styles END*/


/*==== Festival Highlights Styles START ====*/
.highlights {
  max-width: 800px;
  margin: 4rem auto;
  text-align: center;
  font-family: "Josefin Sans", sans-serif;
}

.section-title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 2rem;
  color: #222;
  position: relative;
}

.section-title .underline {
  display: block;
  width: 500px;
  height: 2px;
  background: #d4984d;
  margin: 10px auto 0;
  border-radius: 2px;
  transform: scaleX(0);        /* hidden initially */
  transform-origin: center;    /* grow from center */
}


.highlights ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlights li {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0.8rem 0;
  color: #000;
}


.highlights li.accent {
  color: transparent;
  -webkit-text-stroke: 0.5px #1b1917; /* outline only */
}
/*==== Festival Highlights Styles END ====*/


.hmf-story-video {
  padding: 100px 20px;
  text-align: center;
  background: #fafafa;
}

.hmf-story-video .container{
    max-width: 1024px;
    margin:0px auto;
}

.hmf-story-title {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 900;
  font-size: 50px;
  color: #999;
  text-transform: uppercase;
}

.wp-block-ttb-text-typing{
 margin-top:-10px;
}

.hmf-video-frame {
  position: relative;
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
}

.hmf-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}




.video-slider {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 1rem;
}

.video-slider video {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;   /* enforce portrait ratio */
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Make sure arrows are visible */
.swiper-button-next,
.swiper-button-prev {
  color: #d4984d;   /* your accent color */
  z-index: 20;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 24px;   /* adjust arrow size */
  font-weight: bold;
}

.light-grey-wrapper{
    padding: 10px 0px 30px;
    background: #fafafa;
}

.white-wrapper{
    margin: 30px 10px;
    padding: 10px 0px 30px;
    background: #ffffff;
}


/* General section styling */
.newsletter {
  position: relative;
  background: url('../images/newsletter-bg3.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 6rem 1rem;
}

/* Dark overlay for text readability */
.newsletter::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 0;
}

.newsletter header {
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
  background: transparent;
}

/* Headline styles */
.newsletter .headline {
  font-family: "Barlow Semi Condensed", sans-serif;
  color:#9b9b9b;
  display: block;
  font-size: 6rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.newsletter .subhead {
  font-family: "holidayfreeregular";
  color: #3B75C2;
  display: block;
  font-size: 2.5rem;
  margin-top: -3rem; /* overlap effect */
}

/* Form styles */
.newsletter-form {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.newsletter-form input[type="email"] {
  padding: 0.9rem 1.2rem;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  flex: 1;
  max-width: 300px;
  color: #a15528;
}

.newsletter-form input::placeholder {
  color: #a15528;
  text-transform: uppercase;
  font-weight: 600;
}

.newsletter-form button {
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  color: #a15528;
  background: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: #f3f3f3;
}

/* Accessibility helper for hidden labels */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}


/* start tickets page HIMALAYAN MOTORRAD TICKETS COMPONENT */

.hmf-ticket-group {
  margin-bottom: 32px;
}

.hmf-group-title {
  font-size: 22px;
  letter-spacing: 3px;
  opacity: .6;
  margin-bottom: 18px;
}

.hmf-ticket-row {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 18px;
  background: #fff;
  transition: all .25s ease;
}

.hmf-ticket-row:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}


.hmf-ticket-name {
  font-weight: 600;
  letter-spacing: 1px;
}

.hmf-ticket-price {
  opacity: .8;
}


.hmf-qty{
    width: 46px;
    height: 40px;
    border: 1px solid #333;
    border-radius: 5px;
    text-align: center;
}


.hmf-add-cart {
  height: 40px;
  border: 1px solid #111;
  border-radius: 5px;
  background: transparent;
  transition: all .2s ease;
}

.hmf-add-cart:hover {
  border: 1px solid #111;
  background: #f2c94c; /* ticket yellow */
  color: #111;
}

.hmf-add-cart:active {
  transform: translateY(1px);
}



.hmf-ticket-meta {
  font-style: italic;
  opacity: .7;
}

.hmf-know-more {
  color: #4a73c9;
  cursor: pointer;
  margin-left: 8px;
  position: relative;
}

.hmf-tooltip {
  position: absolute;
  bottom: 28px;
  left: 0;
  background: #111;
  color: #fff;
  padding: 10px 12px;
  font-size: 13px;
  border-radius: 6px;
  width: 220px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.hmf-tooltip::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 12px;
  width: 10px;
  height: 10px;
  background: #111;
  transform: rotate(45deg);
}


.tickets-banner{position: relative;}
.tickets-banner div{margin-top:15%;}

#hmf-cart-bar {
 position: absolute;
  top: calc(50% - 55px);
  right: 100px;
  transform: translateX(40px);
  background: #111;
  color: #fff;
  padding: 18px 22px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 160px;
  opacity: 0;
  pointer-events: auto;
  box-shadow: 0 12px 30px rgba(0,0,0,.2);
  border: 1px solid rgba(255,255,255,.15);

}

#hmf-cart-bar.hidden {
  pointer-events: none;
}


.hmf-cart-btn {
  background: #f2c94c;
  color: #111;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
}

.hmf-add-tooltip {
  position: absolute;
  background: #111;
  color: #fff;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
}

.hmf-add-tooltip::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 12px;
  width: 8px;
  height: 8px;
  background: #111;
  transform: rotate(45deg);
}

.hmf-stay-info {
  padding: 80px 0;
  background: #fafafa;
}

.hmf-container {
  max-width: 900px;
  margin: auto;
  padding: 0 20px;
}

.hmf-info-title {
  font-size: 32px;
  margin-bottom: 16px;
}

.hmf-info-desc {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.hmf-note-box {
  background: #fff;
  border-left: 4px solid #f2c94c;
  padding: 12px 16px;
  margin-bottom: 30px;
  font-size: 14px;
}

.hmf-subtitle {
  margin-bottom: 16px;
  font-size: 22px;
}

.hmf-hotel-list {
  list-style: none;
  padding: 0;
}

.hmf-hotel-list li {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
}

.hmf-hotel-list span {
  font-weight: 500;
}

.hmf-hotel-list a {
  text-decoration: none;
  color: #111;
  font-weight: 600;
}


/* end tickets page HIMALAYAN MOTORRAD TICKETS COMPONENT */


/* ==============================
   HIMALAYAN MOTORRAD CART PAGE
============================== */

.wp-block-cover{min-height: 35vh !important;}

.wp-block-woocommerce-cart{padding:2rem 6rem;}

.wc-block-cart .wc-block-components-sidebar {
        margin-top: 0;
        background: #fafafa;
        padding: 28px;
        border-radius: 12px;
        position: sticky;
        top: 120px;
    }

  .wc-block-cart .wc-block-cart__submit-container {
    border-radius: 8px;
    padding: 4px;
    font-weight: 500;
    margin-top: 18px;
    color: #FFC107;
  }


  /* ==============================
   HIMALAYAN MOTORRAD CHECKOUT PAGE
============================== */

.wp-block-woocommerce-checkout {
    container-type: inline-size;
    margin: 0;
    padding-top: 24px;
    width: 100%;
    padding: 2rem 6rem;
}

.wp-block-woocommerce-checkout-order-summary-block {
  background: #fafafa;
  padding: 28px;
  border-radius: 12px;
}

body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link){
    min-height: 3em;
    background: #111 !important;
    border-radius: 8px;
    padding: 4px;
    font-size: 16px;
    font-weight: 500;
    margin-top: 18px;
    color: #FFC107;
    padding: 5px 25px;
}


/* ============================= */
/* start HMF Order Summary Style */
/* ============================= */

.woocommerce-checkout .woocommerce {
  max-Width: 1200px;
  margin: 8em auto;
  text-align: center; 
}

.woocommerce ul.order_details {
    margin: 0 0 3em;
    list-style: none;
    display: flex;
    justify-content: center;
}

.woocommerce-checkout #btn-razorpay, #btn-razorpay-cancel{
  padding: 10px;
}

/* ============================= */
/* end HMF Order Summary Style */
/* ============================= */


 /* ==============================
   HIMALAYAN MOTORRAD FAQ PAGE
============================== */
h2.wp-block-heading{text-align: center; font-size:2rem;}
.wp-block-gutena-accordion{padding: 3rem 6rem;}




/* Sponsors Logo Section */
.sponsors {
  text-align: center;
  padding: 4rem 2rem;
  background: #fff; /* or transparent if needed */
}

.sponsors h2 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 900;
  font-size: 100px;
  color: #999;
  text-transform: uppercase;
  margin-bottom: 3rem;
  letter-spacing: 2px;
}

.sponsor-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  gap: 2rem;
}

.sponsor-row.top img.bardahl-logo {
  max-width: 250px; /* bigger */
  max-height: 150px;
}

.sponsor-row.bottom img {
  max-width: 180px;
  max-height: 100px;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.sponsor-row.bottom img:hover,
.sponsor-row.top img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.15));
}

/* Footer Section START */
.footer {
  background: #fff;
  text-align: center;
  padding: 40px 20px;
  border-top: 1px solid #eee;
}

.footer-top {
  width:1000px;
  margin:0px auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 30px;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 300;
}

.footer-address,
.footer-contact {
  flex: 1;
  min-width: 250px;
}
.footer-address{text-align: left;}
.footer-contact{text-align: right;}

.footer-address h3,
.footer-contact h3 {
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-logo {
  flex: 1;
  text-align: center;
}

.footer-logo img {
  max-width: 100px;
  margin: 0 auto;
  transition: transform 0.6s ease-in-out;
}

.footer-logo img:hover {
  transform: scale(1.1) rotate(360deg);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding-left: 10px;
}

.social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  font-size: 32px;
  color: #fff;
  text-decoration: none;
}

/* Animation for Social Icons */
.footer-social .social-icon {
  transition: transform 0.6s ease-in-out;
}

.footer-social .social-icon:hover {
  transform: scale(1.1) rotate(360deg);
}

.instagram { background: #2c4477; } /* dark #3B75C2 circle */
.youtube { background: #e62117; }  /* red circle */
.facebook { background: #3b5998; } /* FB #3B75C2 circle */

/* Responsive */
@media(max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .footer-address,
  .footer-contact {
    text-align: center;
    margin-bottom: 20px;
  }
}

/* ==========================================
  Start HIMALAYAN MOTORRAD — CONTACT MODAL
========================================== */

/* Overlay wrapper */
#hmf-contact-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

#hmf-contact-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background overlay */
.hmf-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
}

/* Modal card */
.hmf-modal-content {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 48px 50px;
  max-width: 720px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  z-index: 2;
  box-shadow: 0 40px 100px rgba(0,0,0,.35);
  animation: modalFadeIn 0.35s ease;
}

/* Smooth entrance */
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Close button */
.hmf-modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid #e2e2e2;
  background: #fafafa;
  cursor: pointer;
  font-size: 18px;
  transition: 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hmf-modal-close:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

/* Heading */
.hmf-modal-content h2 {
  font-size: 32px;
  margin-bottom: 35px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* ===============================
   Fluent Forms Styling
=============================== */

.hmf-modal-content .ff-el-group {
  margin-bottom: 22px;
}

/* Labels */
.hmf-modal-content .ff-el-group label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

/* Inputs */
.hmf-modal-content input,
.hmf-modal-content textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid #ddd;
  background: #f9f9f9;
  font-size: 15px;
  transition: 0.2s ease;
  box-sizing: border-box;
}

/* Focus state */
.hmf-modal-content input:focus,
.hmf-modal-content textarea:focus {
  outline: none;
  border-color: #111;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,0,0,.05);
}

/* Textarea */
.hmf-modal-content textarea {
  min-height: 160px;
  resize: vertical;
}

/* Submit button */
.hmf-modal-content .ff-btn-submit,
.hmf-modal-content button[type="submit"],
.hmf-modal-content input[type="submit"] {
  background: #FFC107 !important;
  color: #222 !important;
  font-weight: 600;
  border-radius: 14px;
  padding: 14px 30px;
  font-size: 16px;
  transition: 0.25s ease;
  border: none;
  margin-top: 10px;
}

.hmf-modal-content .ff-btn-submit:hover {
  background: #ffb300 !important;
  transform: translateY(-2px);
}

/* Success message */
.hmf-modal-content .ff-message-success {
  margin-top: 30px;
  padding: 18px 22px;
  border-radius: 14px;
  background: #f1f7ed;
  border: 1px solid #d7e8cc;
  color: #2e5e1c;
  font-weight: 500;
}

/* Scrollbar styling */
.hmf-modal-content::-webkit-scrollbar {
  width: 8px;
}
.hmf-modal-content::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hmf-modal-content {
    padding: 32px 24px;
    border-radius: 18px;
  }

  .hmf-modal-content h2 {
    font-size: 24px;
  }
}
/* ==========================================
 End HIMALAYAN MOTORRAD — CONTACT MODAL
========================================== */

/* Footer Section END */


/*FAQ Page Contact Form */
.hmf-faq-contact{
 max-width: 1299px;
 margin:0px auto;
}
.hmf-faq-contact h2{font-size:1.5rem;}
.hmf-faq-contact p {font-size:1rem;}
.hmf-faq-contact .ff-btn-submit{
  background-color: #FFC107 !important;
  color: #333 !important;
  font-weight: 600;
  border-radius: 12px;
  padding: 10px 20px;
  font-size: 15px;
}


/* ===========================================
start Shop page (archive-product.php) Styles */

/* =========================
HMF BOOKING EXPERIENCE
========================= */

.hmf-booking-wrap {
  max-width: 1200px;
  margin: auto;
  padding: 120px 20px 0;
}

/* STEP CONTAINER */
.hmf-booking-step {
  background: #fff;
  border-radius: 24px;
  padding: 50px;
  margin-bottom: 60px;
  box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, .05);
  position: relative;
  position: relative;
}

.hmf-booking-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  width: 6px;
  background: #FFC107;
  border-radius: 10px;
}

/* STEP HEADER */
.hmf-step-badge {
  background: #FFC107;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
}

.hmf-step-title {
  font-size: 34px;
  font-weight: 700;
  margin-top: 10px;
}

.hmf-step-subtitle {
  color: #777;
  margin-bottom: 40px;
}

/* DIVIDER */
.hmf-step-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #eee, transparent);
  margin: 40px 0;
}

/* PASS TICKET */
.hmf-pass-ticket {
  display: flex;
  gap: 40px;
  background: #111;
  color: #fff;
  padding: 40px;
  border-radius: 20px;
  align-items: center;
}

.hmf-ticket-left img {
  width: 220px;
  border-radius: 14px;
}

.hmf-ticket-right h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

/* STAY GRID */
.hmf-stay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.hmf-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 20px 40px rgba(0,0,0,.05);
  transition: .3s;
}

.hmf-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 70px rgba(0,0,0,.1);
}

.hmf-card-img img {
  border-radius: 14px;
  margin-bottom: 15px;
}

/* PRICE */
.hmf-price {
  font-size: 20px;
  font-weight: 700;
  color: #FFC107;
  margin: 10px 0;
}

/* BUTTON */
.hmf-booking-wrap .add_to_cart_button {
  background: #111 !important;
  color: #fff !important;
  border-radius: 10px !important;
  padding: 10px 20px;
  border:2px solid transparent !important;
}

.hmf-booking-wrap .add_to_cart_button:hover {
  background: #FFC107 !important;
  color: #111 !important;
  border:2px solid black !important;
}

/* MOBILE */
@media(max-width:768px){
  .hmf-stay-grid {
    grid-template-columns: 1fr;
  }

  .hmf-pass-ticket {
    flex-direction: column;
    text-align: center;
  }
}

/* STEP CONTAINERS */
.hmf-step {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 40px 45px;
  margin-bottom: 0px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.05);
  transition: all 0.35s ease;
  overflow: hidden;
}

.hmf-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 30px;
  bottom: 30px;
  width: 4px;
  background: linear-gradient(to bottom, #FFC107, transparent);
  border-radius: 10px;
}

.hmf-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 60px rgba(0,0,0,0.08);
}

/* PASS TICKET */
.hmf-pass-card {
  position: relative;
  background: #FFC107;
  color: #000;
  border-radius: 20px;
  padding: 35px;
  display: flex;
  align-items: center;
  gap: 25px;
  overflow: hidden;
  /* box-shadow: 19px 10px 20px 0px rgba(0, 0, 0, 0.15); */
}

.hmf-pass-image img{border-radius: 10px;}

.hmf-pass-card .hmf-pass-content .pass-title{
  font-size:3em;
}

.hmf-pass-card .hmf-pass-content .pass-price{
  font-size:2em;
  margin: 10px 0 20px 0;
}


/* LEFT SIDE HOLES */
.hmf-pass-card::before,
.hmf-pass-card::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    background: #fff; /* page background */
    border-radius: 50%;
    left: -11px;
    z-index: 2;
}

.hmf-pass-card::before { top: 35%; }
.hmf-pass-card::after  { bottom: 35%; }


/* RIGHT SIDE HOLES */
.hmf-pass-card .pass-cut-right::before,
.hmf-pass-card .pass-cut-right::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
    right: -11px;
    z-index: 2;
}

.hmf-pass-card .pass-cut-right::before { top: 35%; }
.hmf-pass-card .pass-cut-right::after  { bottom: 35%; }

/* Divider line */
.hmf-pass-card .pass-divider {
  width: 1px;
  height: 70px;
  background: repeating-linear-gradient(
    to bottom,
    #FFC107,
    #FFC107 4px,
    transparent 4px,
    transparent 8px
  );
}

/* PASS TITLE */
.hmf-pass-card h3 {
  font-size: 28px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ACCESS BADGE */
.pass-access {
  display: inline-block;
  background: #FFC107;
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 6px;
}

/* STAY CARD */
.hmf-stay-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
}

/* IMAGE OVERLAY */
.hmf-stay-card .stay-image-wrap {
  position: relative;
}

.hmf-stay-card .stay-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.6),
    rgba(0,0,0,0.1),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* HOVER EXPERIENCE */
.hmf-stay-card:hover .stay-image-wrap::after {
  opacity: 1;
}

/* HOVER LIFT */
.hmf-stay-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* =========================
STAY GRID
========================= */

.hmf-stay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 30px;
}

/* =========================
CARD
========================= */

.hmf-stay-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  position: relative;
}

.hmf-stay-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

/* =========================
IMAGE
========================= */

.stay-image-wrap {
  width: 100%;
  height: 260px;
  overflow: hidden;
  position: relative;
}

.stay-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* subtle dark gradient on hover */
.stay-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  opacity: 0;
  transition: 0.3s ease;
}

.hmf-stay-card:hover .stay-image-wrap::after {
  opacity: 1;
}

/* =========================
CONTENT
========================= */

.stay-title {
  font-size: 18px;
  font-weight: 600;
  margin: 18px 20px 5px;
  color: #111;
}

.stay-price {
  color: #f4b400;
  font-weight: 700;
  font-size: 16px;
  margin: 0 20px 15px;
}

/* =========================
CTA
========================= */

.stay-cta {
  margin: auto 20px 20px;
}


.woocommerce a.added_to_cart{
  display: inline-block;
  margin-left: 1em;
  padding: 5px 12px !important;
  background: #000;
  color: white;
  border-radius: 10px;
}

.woocommerce a.added_to_cart:hover{
  display: inline-block;
  margin-left: 1em;
  padding: 5px 20px;
  background: transparent;
  color: black;
  border:2px solid black;
  border-radius: 10px;
}



/* STEP LABELS */
.step-label {
  display: inline-block;
  background: #FFC107;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

/* FESTIVAL DEPTH (SUBTLE) */
.hmf-step {
  backdrop-filter: blur(4px);
}

/* ------------------------------
STEP 2 STAY GRID FIX
------------------------------ */

.hmf-stay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.hmf-stay-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  padding-bottom: 25px;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
}

.hmf-stay-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* IMAGE WRAP */
.stay-image-wrap {
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.stay-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TITLE */
.stay-title {
  font-size: 1.5em;
  font-weight: 600;
  margin: 20px 20px 5px;
}

/* PRICE */
.stay-price {
  color: #f4b400;
  font-weight: 600;
  font-size: 1.2em;
  margin: 0 20px 15px;
}

/* CTA WRAP */
.stay-cta {
  margin: 0 20px;
  display: flex;
}

.stay-cta .button {
  flex: 46%;
  background: #f4b400 !important;
  color: #000 !important;
  border-radius: 10px !important;
  border:2px solid transparent !important;
  padding: 10px 5px !important;
  text-align: center;
  font-weight: 600;
  transition: all 0.2s ease;
}

.stay-cta .added_to_cart{padding: 10px 5px !important;}

.stay-cta .button:hover {
  background: #f4b400;
  color: #000;
  border:2px solid black !important;
}



/* End Shop page (archive-product.php) Styles 
=============================================
*/




/* start Thank you page that gets displayed to customer after they place order (thankyou.php) Styles */
/* ============================
   HMF THANK YOU PAGE
============================ */

.hmf-thankyou-wrapper {
  max-width: 820px;
  margin: 80px auto;
  padding: 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,.08);
  text-align: center;
}

/* HERO */
.hmf-thankyou-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.hmf-subtext {
  font-size: 20px;
  margin-bottom: 15px;
}

.hmf-meta {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 20px 0;
  font-weight: 500;
}

.hmf-desc {
  color: #666;
  margin-bottom: 30px;
}

/* SUMMARY CARD */
.hmf-thankyou-summary {
  background: #f7f7f7;
  padding: 30px;
  border-radius: 16px;
  margin: 40px 0;
  text-align: left;
}

.hmf-thankyou-summary h3 {
  margin-bottom: 20px;
}

.hmf-order-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}

.hmf-order-grid label {
  display: block;
  font-size: 13px;
  color: #777;
}

.hmf-order-grid strong {
  font-size: 16px;
}

/* ITEMS */
.hmf-thankyou-items {
  text-align: left;
}

.hmf-thankyou-items h3 {
  margin-bottom: 20px;
}

.hmf-thankyou-items ul {
  list-style: none;
  padding: 0;
}

.hmf-thankyou-items li {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
}

.hmf-booker-details {
  background: #fff8e1;
  padding: 30px;
  border-radius: 16px;
  margin: 30px 0;
  text-align: left;
}

.hmf-booker-details h3 {
  margin-bottom: 20px;
}

/* CTA */
.hmf-thankyou-footer {
  margin-top: 40px;
}

.hmf-btn {
  background: #FFC107;
  color: #222;
  padding: 14px 34px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 15px;
  transition: .2s ease;
}

.hmf-btn:hover {
  transform: translateY(-2px);
  background: #ffb300;
}

/* MOBILE */
@media (max-width:768px) {
  .hmf-order-grid {
    grid-template-columns: 1fr;
  }
}
/* End Thank you page that gets displayed to customer after they place order (thankyou.php) Styles*/


/* ===================================
  start HMF EVENT SCHEDULE
=================================== */

.hmf-schedule {
  position: relative;
  background: url('../images/Event-Page-BG-IMG.jpg') center/cover no-repeat;
  padding: 120px 20px;
  color: #111;
}

.hmf-schedule-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.40);
  z-index: 1;
}

.hmf-schedule-wrapper {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 10em auto;
}

.hmf-schedule-header {
  text-align: center;
  margin-bottom: 60px;
}

.hmf-schedule-header h1 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hmf-schedule-header p{
 margin: 12px 0 24px;
 opacity: 0.9;
 color:white;
}

/* DAY HEADER */
.hmf-day-title {
  background: #d8e03d;
  display: flex;
  justify-content: space-between;
  padding: 14px 25px;
  border-radius: 12px;
  font-weight: 700;
  margin: 50px 0 25px;
}

/* SLOT */
.hmf-slot {
  display: flex;
  align-items: stretch;
  margin-bottom: 20px;
}

/* TIME BOX */
.hmf-time {
  background: #d8e03d;
  width: 130px;
  padding: 20px 10px;
  border-radius: 16px 0 0 16px;
  text-align: center;
  font-weight: 700;
}

.hmf-time strong {
  font-size: 28px;
  display: block;
}

.hmf-time small {
  font-size: 11px;
  letter-spacing: 1px;
}

.hmf-time.empty {
  background: #d8e03d;
}

/* CONTENT BOX */
.hmf-content {
  background: #f2f2f2;
  flex: 1;
  padding: 25px;
  border-radius: 0 16px 16px 0;
}

.hmf-content h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
}

.hmf-content p {
  margin: 0;
  font-size: 14px;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hmf-slot {
    flex-direction: column;
  }

  .hmf-time {
    border-radius: 16px 16px 0 0;
    width: 100%;
  }

  .hmf-content {
    border-radius: 0 0 16px 16px;
  }
}

.hmf-slot {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s ease;
}

.hmf-slot.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================
  End HMF EVENT SCHEDULE
=================================== */


/* ===================================
 start HMF Tech Partner Section Styles
=================================== */
.hmf-tech-partner {
  text-align: center;
  padding: 80px 20px 80px 20px;
  border-top: 1px dashed rgba(255,255,255,0.15);
}

.hmf-partner-label {
  font-size: 16px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 20px;
}

.hmf-partner-logo img {
  height: 67px;
  margin:0px auto;
  filter: grayscale(100%) contrast(1.2);
  opacity: 0.8;
  transition: 0.3s ease;
}

.hmf-partner-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ===================================
 end HMF Tech Partner Section Styles
=================================== */


/* ==========================================================================
/* start styles of BOOKING STEPS visual queue for customer on tickets page */
/* =======================================================================*/

.hmf-booking-steps{
display:flex;
gap:20px;
margin-bottom:40px;
}

.hmf-step{
padding:6px 20px;
border-radius:30px;
background:#eee;
font-weight:500;
font-size:14px;
display:flex;
flex-direction:column;
}

.hmf-step span{
font-size:11px;
opacity:.7;
}

.hmf-step.active{
background:#FFC107;
color:#000;
}

/* LOCKED STAY OPTIONS */

.hmf-stay-option.locked{
opacity:.4;
pointer-events:none;
filter:grayscale(60%);
}

.hmf-pass-required{
background:#fff3cd;
border-left:4px solid #FFC107;
padding:10px 15px;
margin-bottom:20px;
font-size:14px;
}
/* ==========================================================================
/* End styles of BOOKING STEPS visual queue for customer on tickets page   */
/* =======================================================================*/









/* =============================
Start PRODUCT EXPERIENCE PAGE
============================= */

/* =============================
End PRODUCT EXPERIENCE PAGE
============================= */