@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #243044;
  background: #f8f5ef;

}

header {
  transition: all 0.3s ease;
}

.header_big {
  height: 165px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  backdrop-filter: blur(8px);
  text-align: center;
  padding: 24px 20px 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
  background: linear-gradient(
        90deg,
        #0d3455 0%,
        #17496e 45%,
        #2a9d8f 100%
    );
}

.header_small { 
  height: 65px;
  padding: 16px 20px 18px;
  background: linear-gradient(
        90deg,
        #0d3455 0%,
        #17496e 45%,
        #2a9d8f 100%
    );

}

.brand {
  color: #f7c873;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.header_small .brand {
  display:none;
}
.header_small ul li a {
  display: block;
  padding: 4px 10px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  transition: all 0.3s ease;
}


nav ul {
  list-style-type: none;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

nav ul li a {
  display: block;
  padding: 12px 22px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  transition: all 0.3s ease;
}



nav ul li a:hover,
nav ul li a:focus {
  background: #f7c873;
  color: #142030;
  transform: translateY(-2px);
}

#page {
  width: 100%;
  position: relative;
  top: 165px;
  background-color: #f8f5ef;
}


.all_parallax {
  min-height: 560px;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.all_parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 34, 55, 0.75), rgba(13, 34, 55, 0.25));
}

.hero_overlay {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 35px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 16px;
  color: #142030;
  background: #f7c873;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.all_parallax h1 {
  color: #fff;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.95;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 2px 2px 18px rgba(0, 0, 0, 0.75);
}

.hero_text {
  max-width: 760px;
  margin: 18px auto 0;
  color: #fff;
  font-size: 21px;
  line-height: 1.5;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.7);
}

.parallax-1 { background-image: url(../images/image1.jpg); }
.parallax-2 { background-image: url(../images/image2.jpg); }
.parallax-3 { background-image: url(../images/image3.jpg); }
.parallax-4 { background-image: url(../images/image4.jpg); }

.all_content {
  width: 1050px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
  padding: 64px 24px;
}

.all_content h2 {
  margin-bottom: 22px;
  font-size: clamp(30px, 4vw, 44px);
  color: #0d3455;
}

.all_content p {
  margin-bottom: 18px;
  font-size: 18px;
  font-weight: 300;
  color: #526070;
  line-height: 1.75;
}

.tip_grid,
.destination_row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.tip_card,
.destination_row div,
.checklist_box {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(32, 48, 68, 0.12);
  border: 1px solid rgba(13, 52, 85, 0.08);
}

.tip_card span {
  display: inline-block;
  color: #f7c873;
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 12px;
}

.tip_card h3,
.checklist_box h3 {
  color: #0d3455;
  font-size: 22px;
  margin-bottom: 10px;
}

.tip_card p {
  font-size: 16px;
  margin-bottom: 0;
}

.checklist_box {
  margin-top: 34px;
  background: linear-gradient(135deg, #ffffff, #fff6e2);
}

.checklist_box ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  list-style-position: inside;
  color: #526070;
  font-size: 18px;
  line-height: 1.6;
}

.destination_row {
  grid-template-columns: repeat(4, 1fr);
}

.destination_row strong,
.destination_row span {
  display: block;
}

.destination_row strong {
  color: #0d3455;
  font-size: 22px;
  margin-bottom: 8px;
}

.destination_row span {
  color: #526070;
  line-height: 1.4;
}

#toTop {
  display: none;
  position: fixed;
  z-index: 1000;
  right: 22px;
  bottom: 22px;
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  background: #6eb7da91 url(../images/top_icon.png) center / 70% 70% no-repeat;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease;
}

#toTop:hover {
  transform: translateY(-4px);
}

@media only screen and (max-width: 959px) {
  
  .brand {
    font-size: 24px;
    white-space: nowrap;
  }
  
  .header_big {
    height: 120px;
    padding: 15px 5px;
  }

  .header_big nav ul li a {
  padding: 8px 5px;
  font-size: 18px;
}

  .header_small {
    height: 65px;
    padding: 16px 6px;
  }

  .header_small .brand {
  display:none;
}



.header_small nav ul li a {
  padding: 8px 5px;
  font-size: 15px;
}


  nav ul {
    gap: 6px;
  }

  nav ul li a {
    font-size: 22px;
    padding: 8px 11px;
  }

  #page {
    top: 120px;
  }

  .all_parallax {
  
    background-attachment: scroll;
  }

  .hero_overlay {
    padding: 24px 18px;
  }

  .hero_text {
    font-size: 17px;
  }

  .parallax-1 { background-image: url(../images/image1_mob.jpg); }
  .parallax-2 { background-image: url(../images/image2_mob.jpg); }
  .parallax-3 { background-image: url(../images/image3_mob.jpg); }
  .parallax-4 { background-image: url(../images/image4.jpg); }

  .all_content {
    max-width: 100%;
    padding: 42px 20px;
  }

  .all_content p {
    font-size: 17px;
  }

  .tip_grid,
  .destination_row,
  .checklist_box ul {
    grid-template-columns: 1fr;
  }

  #toTop {
    width: 44px;
    height: 44px;
    right: 14px;
    bottom: 14px;
  }

  
}
