@media (min-width: 1025px) {
  
    /* Reset some margins */
body, html {
  margin: 0;
  padding: 0;
}

/* CSS required for gooey button to work */
.gooey-button {
  filter: url(#goo);
}


@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;

}

nav.mobTabMenuBar{display: none;}

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 per breakpoint */
  overflow: hidden;
}

.video-banner video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center;
}

/* 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 {
  opacity: 0.9;
  font-size: 18px;
}

.festival-dates .gooey-button {
  margin-top: 10px;
  transform: scale(1.05);
}

.festival-dates gooey-button::part(button) {
  box-shadow: 0 6px 20px rgba(0,0,0,0.45);
}


/* MY self-written CSS Code*/

.LoveOf , .JoinTheTribe{text-align: center; max-width: 1000px; margin:0px auto; padding: 2rem 1rem; /* add breathing space */}
.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;
}



.hmf-story-video {
  padding: 100px 20px;
  text-align: center;
}

.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: 4.1rem;
  color: #999;
  text-transform: uppercase;
}

.hmf-story-text {
  font-family: "holidayfreeregular";
  font-size: 19px;
  margin: -5px 0 10px 0;
  color: #3B75C2;
}

.hmf-video-frame {
  position: relative;
  padding-top: 50.25%;
  border-radius: 12px;
  overflow: hidden;
}

.hmf-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}



.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 ====*/



.video-slider {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 1rem;
}

.video-slider h2.section-title{
  font-family: "Josefin Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 2rem;
  color: #222;
  position: relative;
}

.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;
}


/* Newsletter 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-row {
    display: grid;
    grid-template-columns: 2fr 2fr 120px 200px;
    align-items: center;
  }

  .hmf-ticket-meta {
    grid-column: 1 / -1;
  }


/* end tickets page HIMALAYAN MOTORRAD TICKETS COMPONENT */


/* 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;
  }
}
/* Footer Section END */

}
