@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

/* =========================
   GERAL
   ========================= */

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: white;
  background: #000;

  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2 {
  font-weight: 700;
}

main {
  flex: 1;
}

/* =========================
   NAVBAR
   ========================= */

.custom-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;

  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);

  --bs-navbar-color: #ffffff;
  --bs-navbar-brand-color: #ffffff;
}

nav.custom-navbar .navbar-brand {
  color: #ffffff;
  padding-left: 15px;
}

nav.custom-navbar .navbar-nav .nav-link {
  color: white;
  opacity: 1;
}

.navbar-toggler {
  border: none;
  background: transparent;
  box-shadow: none;
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* =========================
   HERO
   ========================= */

.hero {
  position: relative;
  height: 100vh;
  background: url("../images/hero-ch-sunset.png") center/cover no-repeat;

  display: flex;
  justify-content: center;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  color: white;
  text-align: center;
}

/* =========================
   EXPERIENCE VIDEO
   ========================= */

.experience-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.video-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,1));
}

.experience-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 20px;
}

.experience-content h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.experience-content p {
  font-size: 1rem;
  margin-bottom: 25px;
  font-style: italic;
}

/* =========================
   EXPERIENCE INFO
   ========================= */

.experience-info {
  padding: 80px 20px 0;
  text-align: center;
  background: #111;
}

.experience-info p {
  max-width: 600px;
  margin: 20px auto 0;
  color: #aaa;
}

/* =========================
   HIGHLIGHTS
   ========================= */

.experience-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 60px 20px;
  background: #111;
  text-align: center;
}

/* =========================
   TESTIMONIALS
   ========================= */

.testimonials {
  padding: 80px 20px;
  background: #000;
  text-align: center;
}

.testimonials h2 {
  margin-bottom: 50px;
}

.testimonials-grid {
  display: grid;
  gap: 20px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card p {
  font-size: 0.95rem;
  color: #ccc;
}

.stars {
  margin: 15px 0;
  color: #efd331;
}

.testimonial-card span {
  font-size: 0.85rem;
}

/* =========================
   CTA
   ========================= */

.experience-cta {
  padding: 140px 20px;
  text-align: center;
  background: #111;
}

/* =========================
   BUTTON
   ========================= */

.cta-button {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  margin-top: 10px;

  background: #054385;
  color: white;
  text-decoration: none;

  font-weight: 500;
  transition: all 0.3s ease;

  border: none;
  outline: none;
  box-shadow: none;
}

.cta-button:hover {
  background: #093468;
  transform: translateY(2px);
}

/* =========================
   GALLERY
   ========================= */

.gallery-section {
  padding: 100px 20px;
  background: #111;
  text-align: center;
}

.gallery-section p {
  margin-bottom: 40px;
  color: #aaa;
}

.gallery-grid {
  display: grid;
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* =========================
   CONTACT
   ========================= */

.contact-section {
  position: relative;
  min-height: 100vh;
  padding: 100px 20px;
  background: url("../images/contact.png") center/cover no-repeat;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.contact-container {
  position: relative;
  z-index: 1;
  max-width: 500px;
  margin: 0 auto;

  background: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 10px;
}

/* =========================
   FORM
   ========================= */

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;

  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);

  color: white;
  border-radius: 6px;

  outline: none;
}

/* =========================
   CALENDAR ICON
   ========================= */

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
}

/* =========================
   THANK YOU PAGE
   ========================= */

   .confirmation {
    min-height: 100vh;
    padding: 40px 20px;
  
    display: flex;
    justify-content: center;
    align-items: center;

  background: url("../images/contact.png") center/cover no-repeat;
  text-align: center;
}

.confirmation-box {
  max-width: 400px;
  padding: 40px;

  background: rgba(0, 0, 0, 0.6);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.confirmation p {
  margin-bottom: 25px;
}

/* ========================= 
404 PAGE ONLY 
========================= */

.page-404 {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-404 .text-center {
  max-width: 600px;
  padding: 20px;
}

.page-404 .text-center img {
  max-width: 100%;
  height: auto;
}

.page-404 .text-center h2 {
  margin-bottom: 20px;
}
/* ========================= 
404 RESPONSIVE BEHAVIOR 
========================= */

.page-404 {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Visually hides element while keeping it accessible to screen readers */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
/* =========================
   FOOTER
   ========================= */

.footer {
  background: #000;
  padding: 30px 20px;
  color: #888;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.footer a {
  color: white;
  text-decoration: none;
  }

.footer a:hover {
  color: #ff6b00;
}

.footer i {
  font-size: 28px;
  color: #888;
  transition: 0.3s;
}

.footer i:hover {
  color: #fff;
  transform: scale(1.2);
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* =========================
  MEDIA QUERIES
  ========================= */

/* Grid Control */

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  /* 404 Page */
  .page-404 img {
    max-width: 250px;
  }
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Highlights */
  .experience-highlights {
    flex-direction: row;
    justify-content: center;
  }

  /* Footer */
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1440px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* Burger menu center */

@media (max-width: 991px) {
  .navbar-collapse {
    text-align: center;
  }

  .navbar-nav {
    width: 100%;
    gap: 10px;
  }

  .navbar-nav .nav-link {
    display: block;
    text-align: center;
    padding: 10px 0;
  }
}