/* =========================================================
   GLOBAL RESET
========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f7f7f7;
  color: #333;
  line-height: 1.6;
}

/* =========================================================
   NAVBAR
========================================================= */
header {
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
}

.logo {
  font-size: 1.4rem;
  font-weight: bold;
  color: #0077aa;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.contact-btn {
  padding: 8px 14px;
  background: #0077aa;
  color: white !important;
  border-radius: 6px;
}

/* =========================================================
   HERO SECTION
========================================================= */
.hero {
  height: 90vh;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.parallax {
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  color: white;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.cta-btn {
  padding: 12px 24px;
  background: #00aacc;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1rem;
}

/* =========================================================
   SECTIONS
========================================================= */
.section {
  padding: 80px 20px;
  background: white;
}

.alt-section {
  background: #eef7fb;
}

.section-inner {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

/* =========================================================
   CARDS
========================================================= */
.cards {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  width: 300px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* =========================================================
   GALLERY GRID
========================================================= */
.gallery-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.gallery-grid a {
  display: block;
  text-decoration: none;
}

/* =========================================================
   GALLERY ITEM (IMG-BASED)
========================================================= */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 32px rgba(0,0,0,0.28),
              0 0 22px rgba(0,170,204,0.35);
}

.gallery-item img {
  width: 100%;
  height: auto; /* natural height, no cropping */
  object-fit: contain; /* show full image */
  display: block;
  transition: transform 4.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.18) translate(8px, 8px);
}

/* =========================================================
   VIGNETTE OVERLAY
========================================================= */
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 40%, rgba(0,0,0,0.35));
  border-radius: inherit;
  z-index: 2;
  pointer-events: none;
}

.gallery-item:hover::after {
  background: rgba(0, 170, 204, 0.18);
}

/* =========================================================
   VIDEO PLAY ICON
========================================================= */
.video-thumb .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  color: white;
  opacity: 0.85;
  z-index: 4;
  pointer-events: none;
}

/* =========================================================
   FADE-IN ANIMATIONS
========================================================= */
.fade-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery-grid .fade-section:nth-child(1) { transition-delay: 0.1s; }
.gallery-grid .fade-section:nth-child(2) { transition-delay: 0.2s; }
.gallery-grid .fade-section:nth-child(3) { transition-delay: 0.3s; }
.gallery-grid .fade-section:nth-child(4) { transition-delay: 0.4s; }
.gallery-grid .fade-section:nth-child(5) { transition-delay: 0.5s; }

/* =========================================================
   BOOKING FORM
========================================================= */
form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input, textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

button {
  padding: 12px;
  background: #0077aa;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

/* =========================================================
   FOOTER
========================================================= */
footer {
  background: #003344;
  color: white;
  padding: 20px 0;
  text-align: center;
}

.social-icons {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icons a {
  color: white;
  text-decoration: none;
}

/* =========================================================
   FLOATING BOOK BUTTON
========================================================= */
.floating-book {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #00aacc;
  color: white;
  padding: 14px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 999;
}

/* =========================================================
   MINI STICKY HEADER
========================================================= */
.mini-header {
  position: fixed;
  top: -70px;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: top 0.4s ease;
  z-index: 9999;
}

.mini-logo {
  font-weight: bold;
  color: #0077aa;
}

.mini-book {
  background: #00aacc;
  color: white;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

/* =========================================================
   VISUALIZER (Gallery Only)
========================================================= */
.visualizer {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 99999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.visualizer .bar {
  width: 4px;
  height: 14px;
  background: #00aacc;
  border-radius: 4px;
  animation: bounce 0.6s ease-in-out infinite alternate;
  opacity: 0.9;
}

.visualizer .bar:nth-child(1) { animation-delay: 0s; }
.visualizer .bar:nth-child(2) { animation-delay: 0.15s; }
.visualizer .bar:nth-child(3) { animation-delay: 0.3s; }
.visualizer .bar:nth-child(4) { animation-delay: 0.45s; }
.visualizer .bar:nth-child(5) { animation-delay: 0.6s; }

@keyframes bounce {
  0% { height: 6px; }
  100% { height: 22px; }
}

/* =========================================================
   MOBILE RESPONSIVE
========================================================= */
@media (max-width: 768px) {

  .navbar {
    padding: 10px 16px;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  .contact-btn {
    padding: 6px 12px;
    font-size: 0.9rem;
  }

  .logo {
    font-size: 1.1rem;
  }

  header {
    box-shadow: 0 6px 22px rgba(0,0,0,0.18);
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }