/* Reset & Base */
@font-face {
  font-family: 'HelveticaNeueMedium';
  src: url('HelveticaNeueMedium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'HelveticaNeueBold';
  src: url('HelveticaNeueBold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Lagency';
  src: url('Lagency-Regular.woff2') format('woff2'),
    url('Lagency-Regular.woff') format('woff'),
    url('Lagency-Regular.ttf') format('truetype'),
    url('Lagency-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body,
html {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  height: 100%;
  overflow-x: hidden;
  background-color: #fff;
}

/* Main Wrapper */
#main {
  width: 100%;
  overflow: hidden;
} /* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  z-index: 0;
}
.hero-content h1 {
  font-size: 3em;
  font-weight: bold;
  max-width: 900px;
  margin: auto;
  line-height: 1.3;
  font-family: "Lagency", serif;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}

/* Navigation */
nav {
  padding: 2vw 4vw;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 100;
  background: rgba(255, 250, 250, 0);
}

.logo {
  width: 120px;
  height: auto;
}

#nav-part2 {
  display: flex;
  align-items: center;
  gap: 1vw;
}

#nav-part2 h4 {
  padding: 10px 20px;
  border: 1px solid #323232b2;
  border-radius: 50px;
  font-weight: 500;
  color: #fff;
  transition: all ease 0.4s;
  position: relative;
  font-size: 18px;
  overflow: hidden;
  cursor: pointer;
}

#nav-part2 h4::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #d4a94f;
  left: 0;
  bottom: -100%;
  border-radius: 50%;
  transition: all ease 0.4s;
  z-index: 1;
}

#nav-part2 h4:hover::after {
  bottom: 0;
  border-radius: 0;
}

#nav-part2 h4 a {
  color: #ffffff;
  text-decoration: none;
  position: relative;
  z-index: 9;
}

#nav-part2 h4:hover a {
  color: #fff;
}

.btn-top {
  background-color: #d4a94f;
  padding: 10px 20px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  border-radius: 3px;
}

/* Hero Content */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3em;
  font-weight: 900px;
  max-width: 900px;
  margin: auto;
  line-height: 1.3;
  color: #f4f2f2;
}

.btn-main {
  display: inline-block;
  margin-top: 20px;
  background-color: #d4a94f;
  padding: 15px 30px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
}

h2 {
  font-size: 20px;
  letter-spacing: 3px;
  color: #d4a94f;
  margin-bottom: 10px;
  font-family: 400;
}

h1 {
  font-size: 70px;
  font-weight: 800;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.service-box {
  position: relative;
  padding: 25px 20px;
  border-radius: 10px;
  color: #fff;
  text-align: center;
  height: 250px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
}

.service-box h3 {
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.service-box p {
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  .service-box {
    height: auto;
    padding: 20px;
  }
}

.about {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 20px;
  text-align: center;
}

.about h3 {
  font-size: 26px;
  margin-bottom: 16px;
  color: #d4a94f;
  margin-top: 10%;
  margin-bottom: -7%;
}

.about p {
  color: #444;
  margin-bottom: 24px;
}

#page10 {
  min-height: 1vh;
  width: 100%;
  /* background-color: #111; */
  background-color: #fff;
  padding: 1vh 10vw;
  margin-top: -8%;
}

#page10 > h1 {
  font-size: 5vw;
  color: #000;
  /* background-color: red; */

  line-height: 5.8vw;
  padding-bottom: 5vh;
  border-bottom: 1px solid #000000;
  text-align: center;
  text-align: center;
  align-items: center;
}

#page10-content {
  /* background-color: red; */
  color: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8vh 0;
}

#page10-content #right-10 {
  width: 90%;
  color: #000;
}

#page10-content #right-10 p {
  font-size: 2vw;
  color: #000;
  margin-bottom: 1vh;
  width: 80%;
  text-align: center;
  align-items: center;
  margin-left: 15%;
}

/* Footer */
footer {
  background-color: #000;
  color: white;
  padding: 60px 40px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 200px;
  margin: 20px;
}

.footer-col h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid #555;
  padding-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  padding: 6px 0;
  font-size: 15px;
}

.footer-col p {
  font-size: 15px;
  line-height: 1.6;
}

.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 30px;
}

h1 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 50px;
  color: #222;
  font-weight: 700;
}
.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.ext {
  grid-column: span 2;
  color: rgb(11, 11, 11);
  padding: 30px;
  border-radius: 20px;
  background-position: center;
  background-size: cover;
}

.ext h2 {
  font-size: 24px;
  margin-bottom: 10px;
  align-items: center;
  text-align: center;
  margin-left: 50%;
  margin-top: -22%;
  color: #d4a94f;
}

.ext p {
  font-size: 16px;
  line-height: 1.5;
  align-items: center;
  text-align: center;
  margin-left: 50%;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.grid h1 {
  font-size: 24px;
  margin: 0;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
  text-align: center;
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #000;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.card:hover img {
  transform: scale(1.05);
}

.card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
  font-size: 20px;
  font-weight: 600;
  transition: background 0.4s ease;
}

.card:hover .overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }

  .card .overlay {
    font-size: 18px;
    padding: 16px;
  }
}
footer {
  background-color: #000;
  color: white;
  padding: 60px 40px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 200px;
  margin: 20px;
}

.footer-col h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid #555;
  padding-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: white;
}

.footer-col ul li {
  padding: 6px 0;
  font-size: 15px;
  color: white;
}

.footer-col p {
  font-size: 15px;
  line-height: 1.6;
  color: white;
}

.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}
footer a {
  color: #ffffff; /* or your brand color like #F4A261 or #E9C46A */
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #f4a261; /* Example hover color */
  text-decoration: underline;
}
/* ==================== RESPONSIVE MEDIA QUERIES ==================== */

/* Large Desktops / Laptops */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 3.2rem;
  }
  h1 {
    font-size: 38px;
  }
  .service-box {
    height: 220px;
  }
  #page10 > h1 {
    font-size: clamp(2rem, 4.5vw, 4rem);
    line-height: 1.3;
  }
  #page10-content #right-10 p {
    font-size: clamp(1rem, 2.2vw, 1.8rem);
    width: 100%;
    margin-left: 0;
    text-align: center;
  }
  .grid {
    gap: 25px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }
  h1 {
    font-size: 34px;
  }
  .service-box {
    height: auto;
    padding: 20px;
  }
  #page10 > h1 {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
  }
  #page10-content {
    flex-direction: column;
    padding: 5vh 0;
    gap: 20px;
  }
  #page10-content #right-10 p {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
  }
  .destination-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  .ext {
    padding: 20px;
  }
}

/* Small Tablets / Large Phones */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.4rem;
  }
  h1 {
    font-size: 30px;
  }
  #page10 > h1 {
    font-size: clamp(1.6rem, 6vw, 3rem);
  }
  #page10-content #right-10 p {
    font-size: clamp(0.95rem, 3vw, 1.3rem);
    width: 100%;
    margin-left: 0;
    text-align: center;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .destination-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .ext {
    font-size: 15px;
    padding: 15px;
    margin-left: 0;
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }
  .footer-col {
    margin: 10px 0;
  }
  .card {
    height: auto;
  }
  .card .overlay {
    font-size: 16px;
    padding: 14px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  h1 {
    font-size: 26px;
  }
  #page10 > h1 {
    font-size: clamp(1.4rem, 6vw, 2.5rem);
    line-height: 1.2;
  }
  #page10-content #right-10 p {
    font-size: clamp(0.9rem, 3.5vw, 1.2rem);
  }
  .services-grid {
    gap: 15px;
  }
  .destination-grid {
    gap: 15px;
  }
  .ext {
    font-size: 14px;
    padding: 12px;
  }
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-col {
    width: 100%;
    margin: 10px 0;
  }
  .card .overlay {
    font-size: 14px;
    padding: 12px;
  }
}

/* Extra Small / 360px */
@media (max-width: 360px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  h1 {
    font-size: 22px;
  }
  #page10 > h1 {
    font-size: 5.5vw;
  }
  #page10-content #right-10 p {
    font-size: 4vw;
  }
  .services-grid,
  .destination-grid {
    gap: 12px;
  }
  .ext {
    font-size: 13px;
    padding: 10px;
  }
  .card .overlay {
    font-size: 12px;
    padding: 10px;
  }
  .footer-col {
    width: 100%;
    margin: 8px 0;
  }
}
