:root {
  --primary: #3396d3;
}
.top-right-blob {
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  max-width: none;
  z-index: -1;
  pointer-events: none;
}
body {
  font-family: "Poppins";
  background: linear-gradient(334deg, #ffdab6, transparent);
}
h5 {
  color: #3396d3;
}
.navbar {
  background: transparent;
  transition: background-color 0.3s ease;
}
.navbar-nav li {
  margin-right: 30px;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.btn-custom {
  background-color: #3396d3;
  color: white;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
}
.btn-custom:hover {
  background-color: #3396d3;
}
.plane-image-wrapper {
  position: relative;
  height: 80px;
  margin-top: -50px;
  margin-bottom: -40px;
  z-index: 0;
}
.plane-between {
  position: absolute;
  top: -87px;
  left: -210px;
  width: 300px;
  pointer-events: none;
  z-index: 1;
  height: 245px;
  rotate: 164deg;
}
.footer {
  background-color: #fff;
  position: relative;
  background-image: url("../images/footer-image.jpg");
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.08);
}

.btn-orange {
  background-color: #3396d3;
  color: white;
  border: none;
  padding: 0.5rem 1.25rem;
}

.btn-orange:hover {
  background-color: #3396d3;
}

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

.footer a:hover {
  text-decoration: underline;
}

.social-icons {
  font-size: 1.5rem;
  margin-right: 12px;
  color: #3396d3;
}

.footer .newsletter-form input {
  background-color: #f0f1ff;
  border: none;
}

.footer .newsletter-form input:focus {
  outline: none;
  box-shadow: none;
}

.gallery-grid {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  height: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 5px;
}

.gallery-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 0 0 auto;
  height: 100%;
  width: 200px;
  scroll-snap-align: start;
}

.gallery-column img,
.gallery-column video {
  flex: 1;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* HIDE SCROLLBAR */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-column {
    width: 160px;
  }
  .gallery-grid {
    justify-content: normal !important;
  }
}
@media (max-width: 991.98px) {
  .navbar-collapse.show {
    background-color: white;
    padding: 1rem;
    border-radius: 0.5rem;
  }

  .navbar .nav-link {
    color: #000;
  }

  .btn-custom {
    width: 100%;
    text-align: center;
  }
  .top-right-blob {
    width: 350px;
    top: -80px;
    right: 0px;
  }
}
@media (max-width: 768px) {
  .footer .hide-mobile {
    display: none;
  }
}

.gallery-item {
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}
.gallery-item:hover {
  transform: scale(1.03);
}
#imageModal .modal-content {
  background-color: transparent;
  border: none;
}
#imageModal .modal-body {
  padding: 0;
}
#modalImage {
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
}
#imageModal .btn-close {
  position: absolute;
  top: -25px;
  right: 0;
  background-color: white;
  border-radius: 50%;
  opacity: 1;
  z-index: 1060;
}
