@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");

:root {
  --primary-color: #2887ff;
  --primary-color-dark: #2476da;
  --text-dark: #0a0a0a;
  --text-light: #737373;
  --extra-light: #f3f4f6;
  --white: #ffffff;
  --max-width: 1200px;
  --nav-height: 64px; /* new: consistent height for the fixed nav */
}

/* ensure browser scrolls anchors below the fixed nav */
html {
  scroll-padding-top: var(--nav-height);
}

*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section__header {
  margin-bottom: 5px;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
}

.section__description {
  max-width: 600px;
  margin-inline: auto;
  color: var(--text-light);
  text-align: center;
}

.btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  white-space: nowrap;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 5rem;
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--primary-color-dark);
}

.logo {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-dark);
}

img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

ul {
  list-style: none;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9;
  height: var(--nav-height);
}

/* make the nav header use full nav height and keep layout similar */
.nav__header {
  height: 100%;
  padding-inline: 1rem; /* keep horizontal padding */
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--primary-color);
}

.nav__logo .logo {
  font-size: 1.5rem;
  color: var(--white);
}

.nav__menu__btn {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  z-index: 1001;
}

.nav__menu__btn.active {
  background: rgba(40,135,255,0.08);
  border-radius: 50%;
  transition: background 0.2s;
}

.nav__links {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  background-color: var(--primary-color);
  transition: transform 0.5s;
  z-index: -1;
  transform: translateY(-100%); /* Hide by default */
}

.nav__links.open {
  transform: translateY(0); /* Show when open */
}

.nav__links a {
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}

.nav__links a:hover {
  color: var(--text-dark);
}

.nav__btns {
  display: none;
}

 header{
  padding-top: calc(var(--nav-height) + 0.75rem) !important;
  margin-top: 0 !important;
  padding-inline: 1rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
header::before{
  position:absolute;
  content: "";
  height: 100%;
  width: calc(100% - 2rem);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(img/wp.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 3rem;
  z-index: -1;
} 
header::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 3rem;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.25) 45%, rgba(0,0,0,0.45) 100%);
  z-index: 0; /* sits between background image (header::before) and content (z-index:1) */
}
.header__container{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-items: center; /* center items in each column */
  gap: 2rem;
  padding-block: 3rem;
}
.header__content{
  grid-column: 1 / 2;
  margin: 0 auto;        /* center horizontally */
  max-width: 640px;
  text-align: center;    /* center text and buttons */
  z-index: 2;
  padding: 1rem;
}


  .header__content p{
    margin-bottom: 5px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
  }
  .header__content h1{
    margin-bottom: 2rem;
    font-size: clamp(1.8rem, 5.2vw, 4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.08;
    margin-bottom: 1rem;
    letter-spacing: 0.4px;
    text-align: center;
    text-shadow: 0 6px 18px rgba(0,0,0,0.45); /* subtle depth only */
  }

  .header__btns{
    display:flex ;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1rem;
  }
  .header__btns .btn{
    padding: 0.85rem 1.6rem;
    font-weight: 700;
    border-radius: 40px;
    box-shadow: 0 8px 20px rgba(10,102,255,0.12);
    text-transform: uppercase;
  }
.header__btns a {
  padding: 9px 13px;
  font-size: 1,5rem;
  color: var(--primary-color);
  background-color: var(--white);
  border-radius:100% ;
}
.header__btns a:hover{
color: var(--white);
background-color: var(--primary-color);
}

/* Ensure hero/header text is white and legible over wp.jpg */
header#home .header__content {
	color: #fff;
	text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

header#home .header__content p,
header#home .header__content h1,
header#home .header__content h2 {
	color: #fff;
}

/* Make hero buttons readable (optional safeguard) */
header#home .header__btns .btn {
	color: #fff;
	/* adjust background if needed:
	   background: rgba(255,107,53,0.95);
	*/
}

.destination__container :is(.section__header, .section__description){
  text-align: left;
  margin-inline-start: unset;
}

  .destination__grid{
  margin-top: 4rem;
  display: grid;
  gap: 2rem 1rem;

}
.destination__card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 5px 5px 20px rgba(0,0,0,0.08);
  min-height: 360px; /* ensures every card has same visual footprint */
}

.destination__card img {
  width: 100%;
  height: 220px;        /* fixed image height on small screens */
  object-fit: cover;    /* crop while preserving aspect */
  display: block;
}

/* make details section flexible so cards align */
.destination__card__details {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex: 1; /* take remaining vertical space so all cards match height */
}

.destination__card__details h4{
margin-bottom: 5px;
font-size: 1.2rem;
font-weight: 600;
columns: var(--text-dark);
}
.destination__card__details p{
  columns: var(--text-light);
}
.destination__ratings{
  padding: 5px 10px;
  font-size: 0.9rem;
  white-space: nowrap;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 1rem;
  transition: 0.3s;
}

.destination__card:hover .destination__ratings{
  background-color: var(--primary-color-dark);
}

.journey__grid{
  margin-top: 2rem;
  display: grid;
  gap: 0 1rem;
}

.journey__card{
  position: relative;
  isolation: isolate;
  padding-top: 4rem;
  overflow: hidden;
}

.journey__card__bg{
  padding: 2rem;
  background-color:var(--extra-light) ;
  border-bottom-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.journey__card__bg span{
  display: inline-block;
  margin-bottom: 4rem;
  font-size: 1.75rem;
  color: var(--primary-color);
}

.journey__card__bg h4{
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.journey__card__content{
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2rem;
  background-color: var(--primary-color);
  border-bottom-left-radius: 1rem;
   border-bottom-right-radius: 1rem;
   transition: 0.3s;
}
  .journey__card:hover .journey__card__content{
    top: 0;
  }

  .journey__card__content span{
    display: inline-block;
    margin-bottom: 1rem;
    padding: 7px 9px;
    font-size: 1rem;
    border: 2px solid var(--white);
    color: var(--white);
    border-radius: 100%;
  }

  .journey__card__content h4{
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    color:var(--white);
  }

  .journey__card__bg p{
   color: var(--extra-light);
  }

  .showcase__container{
    display: grid;
    gap: 2rem;
    overflow: hidden;
    text-align: center;
    padding-top: 4rem;
  }
  
  .showcase__image img{
    max-width: 400px;
    margin-inline: auto;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
  }

  .showcase__content h4{
    margin-bottom: 2rem;
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-dark);
  }

  .showcase__content p{
    margin-bottom: 1rem;
    color: var(--text-light);
  }

  .showcase__content .btn{
    width: 100%;
    margin-top: 2rem;
    padding: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    background-image: url(img/showcase2.jpeg);
    background-size: cover;
    background-position: center center;
    background-repeat: repeat;
    border-radius: 5px;
  }

  .banner__container{
    display: grid;
    gap: 2rem;
  }

  .banner__card{
    padding: 2rem 1rem;
    text-align: center;
    background-color: var(--extra-light);
    border-radius: 2rem;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
  }

  .banner__card h4{
    font-size: 5rem;
    font-weight: 500;
    color: var(--primary-color);
  }

  .banner__card p{
    color: var(--text-light);

  }

  .discover__grid {
  margin-top: 4rem;
  display: grid;
  gap: 2rem;
}

.discover__card {
  padding: 2rem 1rem;
  text-align: center;
  transition: 0.3s;
  border-radius: 1rem;
}

.discover__card:hover {
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.discover__card span {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 10px 15px;
  font-size: 1.5rem;
  color: var(--primary-color);
  background-color: rgba(40, 135, 255, 0.1);
  border-radius: 100%;
}

.discover__card h4 {
  max-width: 150px;
  margin-inline: auto;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.destination__card p {
  color: var(--text-light);
}

footer {
  background-color: var(--extra-light);
}

.footer__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer__col p {
  max-width: 300px;
  margin-block: 2rem;
  color: var(--text-light);
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__socials a {
  display: inline-block;
  padding: 7px 10px;
  font-size: 1.25rem;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 100%;
}

.footer__socials a:hover {
  background-color: var(--primary-color-dark);
}

.footer__col h4 {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__links a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
}

.footer__links a:hover {
  color: var(--primary-color);
}

.footer__links a span {
  font-size: 1.25rem;
}

.footer__col form {
  display: grid;
  gap: 1rem;
}

.footer__col input {
  padding: 0.75rem;
  font-size: 1rem;
  color: var(--text-dark);
  background-color: var(--white);
  border: 1px solid var(--text-light);
  border-radius: 5px;
}

.footer__col input::placeholder {
  color: var(--text-light);
}

.footer__col .btn {
  border-radius: 5px;
}

.footer__bar {
  padding: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
}

#package {
    padding: 5rem 0;
    text-align: center;
}

#package .section__header {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

#package .section__description {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    line-height: 1.6;
}

.package__header {
    text-align: center;
    padding: 4rem 1rem;
    margin-bottom: 2rem;
    background-color: var(--extra-light);
    border-radius: 1rem;
}

.package__header .section__header {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.package__header .section__description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
}

.package__grid {
    margin-top: 2rem;
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr); /* Show 3 columns */
}

.package__card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package__image {
    height: 250px;
    overflow: hidden;
}

.package__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package__content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.package__content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 2rem;
}

.package__timeline {
    margin-bottom: 2rem;
}

.timeline__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.timeline__item span i {
    font-size: 1.25rem;
    color: var(--primary-color);
    width: 1.5rem;
    text-align: center;
}

.timeline__item div {
    flex: 1;
}

.timeline__item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline__item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.package__features {
    background: var(--extra-light);
    padding: 2rem;
    border-radius: 1rem;
    margin: 2rem 0;
}

.package__features h4 {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.package__features ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.package__features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.package__features li i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.package__footer {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid var(--extra-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.package__price {
  text-align: center;
}

.package__price .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.package__price .per {
  font-size: 0.9rem;
  color: var(--text-light);
}

.camping__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.camping__card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.camping__image {
    height: 300px;
    overflow: hidden;
}

.camping__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.camping__content {
    padding: 2rem;
}

.camping__content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 1.5rem;
}

.camping__features ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.camping__features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

.camping__features i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.food__category {
    margin-bottom: 2rem;
}

.food__category h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.food__category i {
    color: var(--primary-color);
}

.food__category ul {
    padding-left: 2rem;
}

.food__category li {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    list-style-type: disc;
}

.policy__container {
    margin-top: 4rem;
}

.policy__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.policy__card {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 0 20px rgba(0,0,0,0.08);
    padding: 2.5rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 350px;
}

.policy__icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.policy__card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    text-align: center;
}

.policy__card ul {
    list-style: disc inside;
    color: var(--text-light);
    font-size: 1.05rem;
    padding-left: 0;
    margin: 0;
    text-align: left;
}

.policy__card ul li {
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

.booking__container {
    margin-top: 4rem;
}

.booking__card {
    max-width: 500px;
    margin: 2rem auto 0 auto;
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 0 20px rgba(0,0,0,0.08);
    padding: 2.5rem 2rem 2rem 2rem;
}

.booking__card form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form__group label {
    font-weight: 600;
    color: var(--text-dark);
}

.form__group input,
.form__group select,
.form__group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--extra-light);
    border-radius: 0.5rem;
    font-size: 1rem;
    background: var(--extra-light);
    color: var(--text-dark);
    outline: none;
    transition: border 0.2s;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    border: 1.5px solid var(--primary-color);
}

.form__group textarea {
    resize: vertical;
    min-height: 80px;
}

.form__submit {
    text-align: center;
}

.form__submit .btn {
    padding: 0.9rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 2rem;
}

.booking__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.booking__gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.gallery__card {
    position: relative;
    height: 300px;  /* Increased from 200px */
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.gallery__card:hover {
    transform: translateY(-5px);
}

.gallery__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery__card:hover img {
    transform: scale(1.1);
}

.gallery__overlay {
    position: absolute;
    bottom: 0;
    left: 0; 
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 2rem;
    color: var(--white);
}

.gallery__overlay h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.gallery__overlay p {
    font-size: 1rem;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.form__group--inline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form__radio-group {
    display: flex;
    gap: 2rem;
    padding: 0.5rem 0;
}

.form__radio-group label {
    font-weight: normal;
    cursor: pointer;
}

.header__subtitle {
  font-size: 1.2rem;
  color: #ffd700;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  text-align: center;
  text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}

.header__content h1 {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  line-height: 1.2;
  text-align: center;
  color: #fff;
  text-shadow:
    0 2px 8px rgba(0,0,0,0.45),
    0 0 2px #222,
    1px 1px 0 #222,
    -1px -1px 0 #222;
}

.header__nav {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0.6rem 0 1rem 0;
}

.header__link {
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
  transition: all 0.3s;
}

.header__link:hover {
  color: var(--primary-color);
}

.header__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s;
}

.header__link:hover::after {
  width: 100%;
}

.header__btns {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1rem;
}

.header__btns .btn,
.header__btns a {
  padding: 0.7rem 1.4rem;
  font-size: 0.95rem;
}

/* Primary (Book A Trip Now) - strong blue */
.btn--primary {
  background: #0a66ff;       /* theme blue */
  color: #ffffff;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #0a66ff;
  transition: transform 220ms ease, box-shadow 220ms ease, color 220ms ease, background 220ms ease;
  display: inline-block;
}

/* Primary hover: invert to white with blue text, lift and shadow */
.btn--primary:hover {
  background: #ffffff;
  color: #0a66ff;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(10,102,255,0.18);
}

/* Secondary (View Packages) - subtle blue variant initially */
.btn--secondary {
  background: rgba(10,102,255,0.10); /* light blue tint */
  color: #0a66ff;
  padding: 0.95rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid rgba(10,102,255,0.25);
  transition: transform 220ms ease, box-shadow 220ms ease, color 220ms ease, background 220ms ease;
  display: inline-block;
}

/* Secondary hover: full blue filled, white text, lift and shadow */
.btn--secondary:hover {
  background: #0a66ff;
  color: #ffffff;
  border-color: #0a66ff;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(10,102,255,0.18);
}

/* Replace previous header__btns a rule (which forced white) with blue defaults */
.header__btns a {
  padding: 0.95rem 1.5rem;
  font-size: 1rem;
  color: #ffffff;                 /* default white text on blue */
  background-color: var(--primary-color); /* default blue background */
  border-radius: 50px;
  border: 2px solid var(--primary-color);
  display: inline-block;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.8px;
  transition: transform 220ms ease, box-shadow 220ms ease, color 220ms ease, background 220ms ease;
}

/* Hover: invert to white bg with blue text (subtle lift and shadow) */
.header__btns a:hover {
  background: #ffffff;
  color: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(10,102,255,0.12);
}

/* Ensure buttons are responsive on small screens */
@media (max-width: 600px) {
  .btn--primary,
  .btn--secondary {
    width: 100%;
    padding: 0.9rem 1rem;
    text-align: center;
  }
}

/* Mobile view improvements */
@media (max-width: 600px) {
  nav, .nav__header, .nav__links, .nav__btns {
    flex-direction: column !important;
    align-items: flex-start !important;
    width: 100%;
  }
  .nav__links {
    position: static;
    padding: 1rem 0;
    gap: 1rem;
  }
  .header__container {
    grid-template-columns: 1fr;
    padding: 1rem 0;
  }
  .header__content {
    padding: 2rem 0.5rem;
    text-align: center;
    grid-column: 1/2;
  }
  .header__image {
    grid-column: 1/2;
    position: static;
    margin: 0 auto;
    width: 100%;
    height: auto;
  }
  .header__image img {
    position: static;
    width: 100%;
    max-width: 340px;
    height: auto;
    margin: 0 auto;
    display: block;
  }
  .section__container {
    padding: 2rem 0.5rem;
  }
  .destination__grid,
  .package__grid,
  .camping__grid,
  .policy__grid,
  .booking__grid,
  .discover__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  #backToTop {
    right: 10px;
    bottom: 10px;
    width: 40px;
    height: 40px;
  }
}

@media (width > 540px) {
  .destination__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .banner__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .discover__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__col:last-child {
    grid-area: 2/1/3/2;
  }
}
  @media(width > 768px) {
    nav {
      position: static;
      padding: 2rem 1rem;
      max-width: var(--max-width);
      margin-inline: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
    }
    .nav__header{
      flex: 1;
      padding: 0;
      background-color: transparent;
    }
    .nav__logo .logo{
      color: var(--text-dark);
    }
    .nav__menu__btn{
      display: none;
    }
.nav__links{
  position: static;
  width: fit-content;
  padding: 0;
  flex-direction: row;
  background-color: transparent;
  transform: none !important;
}

.nav__links a{
  color: var(--text-dark);
}

.nav__links a:hover{
  color: var(--primary-color);
}

.nav__links li:last-child{
  display: none;
}

.nav__btns{
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.nav__btns .button{
  padding: 75rem 2rem;
  background-color: var(--text-dark);
}
header{
  margin-top: 0;
}
.header__container{
  grid-template-columns:
  minmax(0 ,1fr)
repeat(5, minmax(0, calc(var(--max-width)/ 5)))
minmax(0, 1fr) ;
}
.header__content{
grid-column: 2/4;
padding-block: 8rem;
}
.header__content :is(p, h1){
  text-align: left;
}
.header__btns{
  justify-content: flex-start;
}
.header__image{
  grid-column: 4.5/8;
  position: relative;
  isolation: isolate;
  height: 100%;
}
.header__image img{
  position: absolute;
  top: 0.5rem;           /* moved up slightly as requested */
  left: 0;
  height: 95%;           /* increase from 90% to 95% */
  max-height: 760px;     /* increase max height for large screens */
  width: auto;           /* preserve aspect ratio */
  transform: translateZ(0); /* improve rendering */
}
.destination__grid{
  grid-template-columns: repeat(3, 1fr);
}
.journey__grid{
  grid-template-columns: repeat(3, 1fr);
}
.showcase__container{
  grid-template-columns: repeat(3, 1fr);
}

.showcase__content{
  grid-column: 2/4;
} 

.banner__container{
  grid-template-columns: repeat(3, 1fr);
}
.discover__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer__container {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }

  .footer__col:last-child {
    grid-area: unset;
  }
}
  

  @media (width > 1200px) {
  .header__content {
    padding-inline: 1rem 0;
  }

  .destination__grid {
    gap: 2rem;
  }
}

/* Ensure header links are clickable above overlays */
.header__nav,
.header__nav .header__link {
  position: relative;
  z-index: 60; /* above header overlay and other elements */
  pointer-events: auto;
}

/* Force desktop nav to behave inline and not cover hero */
@media (min-width: 769px) {
  .nav__links {
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: auto !important;
    height: auto !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: transparent !important;
    display: flex !important;
    flex-direction: row !important;
    gap: 1.5rem !important;
    padding: 0 !important;
    align-items: center;
    justify-content: center;
    z-index: 40;
  }

  /* Hide mobile-only menu button on desktop (reinforce) */
  .nav__menu__btn {
    display: none !important;
  }

  /* Ensure fixed nav height doesn't overlap clickable hero area */
  nav {
    height: var(--nav-height);
  }

  header { /* keep header content below nav */
    padding-top: calc(var(--nav-height) + 0.75rem) !important;
  }
}

/* Policies section background using img/fp.jpg */
#policy {
  position: relative; /* for overlay */
  background-image: url("img/fp.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 6rem 1rem; /* a little more vertical space for the hero-like bg */
  border-radius: 1rem;
  overflow: hidden;
  color: #fff; /* default text color on background */
}

/* dark overlay to improve contrast */
#policy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.36); /* lighter overlay for better card contrast */
  z-index: 0;
}

/* policy cards: translucent, blurred backdrop and improved spacing for legibility */
#policy .policy__card {
  background: rgba(255, 255, 255, 0.45); /* more transparent */
  color: #000;                            /* force black text inside cards */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

/* Ensure all textual elements inside cards are black */
#policy .policy__card h3,
#policy .policy__card p,
#policy .policy__card li {
  color: #000;
}

/* Slight hover lift for emphasis (keeps readability) */
#policy .policy__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* Mobile tweak: slightly reduce padding on small screens */
@media (max-width: 768px) {
  #policy .policy__card {
    padding: 1.25rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatY {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

/* Hero text animation helpers (used by ScrollReveal too) */
.header__content h1,
.header__content p,
.header__subtitle {
  will-change: transform, opacity;
}

/* Floating hero image */
.header__image img {
  transition: transform 420ms cubic-bezier(.2,.9,.3,1), filter 300ms;
  transform-origin: center;
  will-change: transform, filter;
  filter: drop-shadow(0 20px 40px rgba(10, 40, 80, 0.2));
}

/* Button micro interactions */
.btn, .header__btns a {
  transition: transform 220ms cubic-bezier(.2,.9,.3,1), box-shadow 220ms ease, background 220ms ease, color 220ms ease;
}
.btn:active, .header__btns a:active { transform: translateY(1px) scale(0.995); }

/* Card hover lifts for depth */
.package__card,
.camping__card,
.policy__card,
.booking__card,
.destination__card,
.discover__card {
  transition: transform 320ms cubic-bezier(.2,.9,.3,1), box-shadow 320ms ease;
  transform-origin: center;
}
.package__card:hover,
.camping__card:hover,
.policy__card:hover,
.booking__card:hover,
.destination__card:hover,
.discover__card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 18px 45px rgba(10,30,80,0.12);
}

/* Timeline items subtle entrance on hover */
.timeline__item {
  transition: transform 220ms ease, opacity 220ms ease;
}
.timeline__item:hover { transform: translateX(6px); opacity: 0.98; }

/* Gallery overlay smoother reveal */
.gallery__overlay {
  transition: opacity 320ms ease, transform 320ms ease;
  transform: translateY(8px);
  opacity: 0;
}
.gallery__card:hover .gallery__overlay {
  transform: translateY(0);
  opacity: 1;
}

/* Make icons pop */
.package__features li i,
.camping__features i,
.policy__icon {
  transition: transform 300ms cubic-bezier(.2,.9,.3,1), color 300ms ease;
}
.package__card:hover .package__features li i,
.camping__card:hover .camping__features i,
.policy__card:hover .policy__icon { transform: scale(1.08); color: var(--primary-color-dark); }

/* Footer links hover with tiny slide */
.footer__links a { transition: color 200ms ease, transform 200ms ease; }
.footer__links a:hover { transform: translateX(6px); }

/* Accessibility: focus states */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline: 3px solid rgba(40,135,255,0.18);
  outline-offset: 2px;
  box-shadow: 0 6px 18px rgba(10, 102, 255, 0.08);
}

/* Small-screen adjustments for hero image animation */
@media (max-width: 768px) {
  .header__image img { transform: none !important; max-height: 420px; }
}

/* Back to top button */
#backToTop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  box-shadow: 0 10px 30px rgba(10, 40, 80, 0.12);
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition: opacity 260ms ease, transform 260ms cubic-bezier(.2,.9,.3,1);
  z-index: 9999;
  cursor: pointer;
  backdrop-filter: blur(4px);
}
#backToTop i { font-size: 1.2rem; }
#backToTop.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}
#backToTop:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 18px 40px rgba(10, 40, 80, 0.18);
}
@media (max-width: 600px) {
  #backToTop { right: 14px; bottom: 14px; width: 46px; height: 46px; }
}

@media (max-width: 900px) {
  .nav__menu__btn {
    display: block;
  }
  .nav__links {
    position: fixed;
    top: 0;
    left: -100%;  /* Start from off-screen */
    width: 100%;
    height: 100vh;
    background: var(--primary-color);
    padding-top: 80px;
    transition: 0.3s ease-in-out;
  }
  .nav__links.open {
    left: 0;  /* Slide in from left */
  }
  .nav__btns {
    display: none;
  }
}

@media (min-width: 901px) {
  .nav__menu__btn {
    display: none !important;
  }
  .nav__links {
    position: static;
    height: auto;
    background: transparent;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
    justify-content: flex-end;
    transform: none !important;
    padding: 0;
  }
  .nav__btns {
    display: flex;
  }
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .nav__menu__btn {
    display: block;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    z-index: 1000;
  }

  .nav__links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 999;
  }

  .nav__links.open {
    transform: translateY(0);
  }

  .nav__links li {
    margin: 1.5rem 0;
    text-align: center;
  }

  .nav__links a {
    font-size: 1.2rem;
    color: var(--white);
  }
}

/* Header container styles */
.header__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
}

.header__content {
  padding: 2rem 1rem;
  max-width: 600px;
}

.header__content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #fff;
}

/* Mobile Header Styles */
@media (max-width: 768px) {
  header {
    margin-top: 4rem;
    padding: 0 1rem;
  }

  .header__container {
    grid-template-columns: 1fr;
    padding: 1rem 0;
  }

  .header__content {
    padding: 1.5rem 0.5rem;
    text-align: center;
  }

  .header__content h1 {
    font-size: clamp(1.8rem, 7.5vw, 2.6rem);
    margin-bottom: 0.75rem;
  }

  .header__subtitle {
    font-size: 0.9rem;
    letter-spacing: 1.8px;
    margin-bottom: 0.4rem;
  }

  /* Stack buttons full width with good touch targets */
  .header__btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
  }
  .header__btns .btn,
  .header__btns a {
    width: min(360px, 94%);
    max-width: 360px;
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
  }

  /* Place image after content and scale */
  .header__image {
    margin-top: 0.5rem;
    padding-bottom: 1rem;
    z-index: 1;
  }
  .header__image img {
    width: 84%;
    max-width: 360px;
    height: auto;
    display: block;
    margin: 0 auto;
    transform: none !important;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  }
}

/* Back to top button styles */
#backToTop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 45px;
  height: 45px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

#backToTop.show {
  opacity: 1;
  transform: translateY(0);
}

#backToTop:hover {
  background: var(--primary-color-dark);
  transform: translateY(-3px);
}

/* Mobile adjustments for back to top */
@media (max-width: 768px) {
  #backToTop {
    right: 15px;
    bottom: 15px;
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

/* Responsive typography (scales between small and large screens) */
.header__content h1 {
  font-size: clamp(1.9rem, 5.6vw, 4rem);
  line-height: 1.08;
  margin-bottom: 1rem;
}

/* Ensure all images scale correctly */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Grid responsiveness: tablet and mobile */
@media (max-width: 1024px) {
  .package__grid,
  .destination__grid,
  .discover__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .camping__grid,
  .policy__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile layout (phones) */
@media (max-width: 768px) {
  :root { --max-width: 1000px; }

  /* NAV: hamburger visible, full-screen overlay menu */
  .nav__menu__btn {
    display: block;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.9rem;
    z-index: 1100;
  }

  .nav__links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100vw;
    height: 100vh;
    padding-top: 4.5rem; /* leave space for header */
    background: linear-gradient(180deg, rgba(40,135,255,0.98), rgba(24,92,196,0.95));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    transition: left 0.32s ease, opacity 0.32s ease;
    opacity: 0;
    z-index: 1050;
  }
  .nav__links.open {
    left: 0;
    opacity: 1;
  }
  .nav__links li { margin: 0; }
  .nav__links a {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 700;
    padding: 0.6rem 1rem;
  }
  .nav__btns { display: none; }

  /* Header single-column, slimmer, centered */
  header { padding-inline: 0.75rem; margin-top: 3.5rem; }
  .header__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    align-items: center;
    padding-block: 1rem;
  }
  .header__content {
    padding: 1rem 0.5rem;
    max-width: 100%;
    text-align: center;
  }
  .header__subtitle { font-size: 0.9rem; letter-spacing: 1.6px; }
  .header__content h1 {
    font-size: clamp(1.9rem, 6.5vw, 2.6rem);
    line-height: 1.12;
    margin-bottom: 0.9rem;
    text-shadow: 0 6px 18px rgba(0,0,0,0.36);
  }

  /* Header nav links wrap and reduce spacing */
  .header__nav {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0.6rem;
  }
  .header__link { font-size: 0.9rem; padding: 0.35rem 0.6rem; color: #fff !important; }

  /* CTAs stacked and touch-friendly */
  .header__btns {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: center;
    width: 100%;
    margin-top: 0.3rem;
  }
  .header__btns .btn,
  .btn--primary,
  .btn--secondary {
    width: min(420px, 92%);
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
    border-radius: 40px;
  }

  /* Hero image scaled & placed under content */
  .header__image { grid-column: 1; padding-bottom: 0.8rem; }
  .header__image img {
    width: 84%;
    max-width: 360px;
    margin: 0 auto;
    height: auto;
    transform: none !important;
    box-shadow: 0 14px 36px rgba(0,0,0,0.14);
  }

  /* Make cards single-column on mobile */
  .destination__grid,
  .package__grid,
  .camping__grid,
  .policy__grid,
  .discover__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Booking and gallery stacked */
  .booking__grid { grid-template-columns: 1fr; gap: 1rem; }
  .booking__gallery { grid-template-columns: 1fr; }

  .form__group--inline { grid-template-columns: 1fr; }

  /* Footer stacked */
  .footer__container { grid-template-columns: 1fr; gap: 1.25rem; text-align: center; }
  .footer__socials { justify-content: center; }
  .footer__links { align-items: center; }

  /* Back to top on mobile smaller */
  #backToTop { right: 12px; bottom: 12px; width: 42px; height: 42px; }

  /* Increase touch targets for nav and footer links */
  .nav__links a, .footer__links a { padding: 0.6rem 1rem; }
}

/* Very small screens */
@media (max-width: 420px) {
  .header__content h1 { font-size: clamp(1.6rem, 8.5vw, 2.2rem); }
  .header__subtitle { font-size: 0.85rem; }
  .header__btns .btn { width: 96%; padding: 0.85rem; }
  .header__image img { max-width: 320px; width: 88%; }
  .nav__links a { font-size: 1rem; padding: 0.55rem 0.8rem; }
}

/* Accessibility: visible focus for interactive elements */
a:focus, button:focus, input:focus, textarea:focus {
  outline: 3px solid rgba(40,135,255,0.18);
  outline-offset: 2px;
}

/* move hero CTAs slightly down and tighten spacing */
.header__btns {
  margin-top: 1.2rem; /* push buttons down */
  gap: 0.6rem;        /* slightly less gap */
  align-items: center;
}

/* smaller, more professional button sizing */
.btn--primary,
.btn--secondary,
.header__btns .btn,
.header__btns a {
  padding: 0.7rem 1.6rem;   /* reduced vertical/horizontal padding */
  font-size: 0.95rem;       /* slightly smaller text */
  border-radius: 36px;
  letter-spacing: 0.6px;
}

/* keep primary strong but compact */
.btn--primary {
  border: 2px solid #0a66ff;
  box-shadow: 0 8px 20px rgba(10,102,255,0.10);
}

/* secondary compact style */
.btn--secondary {
  padding: 0.65rem 1.5rem;
}

/* Mobile adjustments: stacked buttons stay touch-friendly but smaller */
@media (max-width: 768px) {
  .header__btns {
    margin-top: 0.9rem;
    gap: 0.5rem;
  }
  .btn--primary,
  .btn--secondary,
  .header__btns .btn,
  .header__btns a {
    width: min(340px, 92%);
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }
}

.header__image {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header__image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 500px;
  object-fit: contain;
  display: block;
}

@media (min-width: 768px) {
  .header__image {
    grid-column: 4.5/8;
  }
  
  .header__image img {
    position: relative;
    max-width: 90%;
    height: auto;
    transform: translateY(0);
  }
}

/* Adjust desktop header layout and nudge the hero image up */
@media (min-width: 769px) {
  /* Ensure header uses a clean two-column layout and content is vertically centered */
  .header__container{
    /* previously defined grid — replace with a stable two-column layout on larger screens */
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;         /* vertical centering of content and image */
    gap: 2rem;
    padding-block: 4rem;
  }

  /* keep headline/content in the left column */
  .header__content{
    grid-column: 1 / 2;
    padding: 2rem 1rem;
    max-width: 640px;
  }

  /* place image in the right column and center it */
  .header__image{
    grid-column: 2 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    /* allow a little negative margin to visually lift the image */
    margin-top: -1.25rem;
  }

  /* Nudge ms.png up and limit its height so it doesn't push the layout down */
  .header__image img{
    position: relative;
    top: -1.75rem;              /* moves image slightly upward on larger screens */
    transform: translateY(0);   /* ensure no conflicting transforms */
    max-height: 560px;         /* cap height to keep image inside hero */
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
  }

  /* If your previous rules used different column indexing, this keeps a stable layout */
}

/* Update header navigation links to be white and add hover effect */
.header__nav .header__link {
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
}

.header__nav .header__link:hover {
  color: #ffd700;  /* golden color on hover */
  transform: translateY(-2px);
}

/* Ensure links stay white on mobile */
@media (max-width: 768px) {
  .header__nav .header__link {
    color: #fff !important;
    font-size: 0.95rem;
  }
}