/* ----------------------------------
   BRAND COLORS (LOCKED)
---------------------------------- */
:root {
    --solar-gold: #FFD700;
    --electric-blue: #007BFF;
    --charcoal-black: #121212;
    --crimson: #E63946;
    --white: #FFFFFF;
}

/* ----------------------------------
   GLOBAL
---------------------------------- */
body {
    background-color: var(--charcoal-black);
    color: var(--white);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 72px; /* prevents navbar overlap */
}

/* ----------------------------------
   BUTTONS
---------------------------------- */
.btn-gold {
    background-color: var(--solar-gold);
    color: #000;
    font-weight: 600;
    border: none;
}

.btn-gold:hover {
    background-color: #e6c200;
    color: #000;
}

.hero-image {
    max-height: 420px;
    opacity: 0.95;
}

/* ======================
   NAVBAR
====================== */
.navbar {
  background-color: #121212 !important;
}

.navbar-brand {
  letter-spacing: 0.08em;
}

.nav-link {
  color: #ffffffcc;
}

.nav-link:hover {
  color: #FFD700;
}

.navbar .btn-warning {
  color: #121212;
}

/* ======================
   HERO SECTION (FINAL)
====================== */

.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

/* Background slider */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.slider-track {
  display: flex;
  width: max-content;
  height: 100%;
  animation: slideLoop 140s linear infinite;
}

.slide {
  flex: 0 0 100vw;
  height: 100vh;
}

.slide img,
.slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay for readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.82),
    rgba(250, 163, 1, 0.151)
  );
  opacity: 0.7;
}

/* Foreground content */
.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-title {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 800;
  color: #FFD700;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1.1rem;
  max-width: 540px;
  color: rgba(255, 255, 255, 0.75);
}

/* Buttons */
.btn-gold {
  background-color: #FFD700;
  color: #121212;
  border: none;
}

.btn-gold:hover {
  background-color: #e6c200;
}

/* Infinite animation math
   3 unique slides = -300vw */
@keyframes slideLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Optional: pause motion on hover (desktop only) */
@media (hover: hover) {
  .hero-section:hover .slider-track {
    animation-play-state: paused;
  }
}

/* ======================
   GALLERY SECTION
====================== */

.gallery-section {
  background: #121212;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #FFD700;
}

.section-subtitle {
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.04);
}

.gallery-item video {
  pointer-events: none;
}

/* Hover effect */
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ======================
   GALLERY MODAL
====================== */


.modal-content {
  max-width: 90%;
  max-height: 90%;
}

.modal-content img,
.modal-content video {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 40px;
  color: #FFD700;
  cursor: pointer;
  user-select: none;
}

/* ===== Gallery Modal ===== */
.gallery-modal {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      rgba(255, 215, 0, 0.08),
      rgba(0, 123, 255, 0.08),
      rgba(18, 18, 18, 0.95)
    );
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
   background-size: 300% 300%;
  animation: gradientDrift 20s ease infinite;
}

@keyframes gradientDrift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.gallery-modal.active {
  display: flex;
}

.gallery-modal-content {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-modal-content img,
.gallery-modal-content video {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* 🔑 THIS FIXES THE HALF IMAGE */
  animation: mediaZoom 0.6s ease-out;
}

@keyframes mediaZoom {
  from {
    transform: scale(0.96);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Play icon */
.play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  color: rgba(255,255,255,0.85);
  pointer-events: none;
}


/* ===== Booking Page ===== */
.booking-hero {
  padding: 120px 0 60px;
  background: radial-gradient(circle at top,
    rgba(255, 215, 0, 0.15),
    #000 70%);
}

.booking-form-section {
  padding: 80px 0;
  background: #0a0a0a;
}

.booking-form {
  background: #111;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.05);
}

.booking-form .form-control,
.booking-form .form-select {
  background: #000;
  border: 1px solid #222;
  color: #fff;
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
  border-color: #FFD700;
  box-shadow: none;
}

.booking-note {
  padding: 40px 0;
  background: #000;
}

.page-hero {
  padding: 120px 0 80px;
  background: radial-gradient(
    circle at top,
    rgba(255, 215, 0, 0.08),
    #121212 60%
  );
}

.service-card {
  background: #181818;
  padding: 30px;
  border-radius: 16px;
  transition: transform .3s ease, box-shadow .3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.4);
}

.contact-section .form-control {
  background: #181818;
  border: 1px solid #2a2a2a;
  color: #fff;
}

.contact-section .form-control::placeholder {
  color: rgba(255,255,255,.5);
}

.map-section iframe {
  filter: grayscale(100%) contrast(1.1);
}

/* ======================
   ANIMATIONS
====================== */
.fade-in {
  animation: pageFade 1s ease forwards;
}

@keyframes pageFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all .8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-1 { transition-delay: .2s; }
.reveal.delay-2 { transition-delay: .4s; }

/* ======================
   SERVICES HERO SECTION
====================== */
.services-hero {
  padding: 120px 0;
  background: #121212;
}

.services-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.service-icon {
  position: absolute;
  font-size: 5rem;
  opacity: 0.06;
  animation: float 12s linear infinite;
}

.service-icon:nth-child(1) { top: 20%; left: 10%; }
.service-icon:nth-child(2) { top: 50%; left: 70%; animation-duration: 16s; }
.service-icon:nth-child(3) { top: 80%; left: 40%; animation-duration: 20s; }

@keyframes float {
  from { transform: translateY(0); }
  to { transform: translateY(-120vh); }
}

.service-card {
  background: rgba(18,18,18,0.8);
  border: 1px solid #222;
  padding: 30px;
  border-radius: 12px;
  height: 100%;
}

.service-card:hover {
  background: rgba(255, 215, 0, 0.05);
  border-color: #FFD700;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
  transform: translateY(-6px);
}

.services-section {
  position: relative;
  background: linear-gradient(
    120deg,
    #121212,
    #1a1a1a,
    #FFD70020,
    #007BFF20
  );
  background-size: 300% 300%;
  animation: gradientMove 18s ease infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.service-icon {
  font-size: 3rem;
  opacity: 0.15;
  animation: floatIcon 6s ease-in-out infinite;
}

@keyframes floatIcon {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

/* ======================
   ABOUT PAGE HERO
====================== */
.about-hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
}

.about-bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(
      rgba(0,0,0,0.55),
      rgba(0,0,0,0.55)
    ),
    url("/static/core/media/hero(9).jpg") center/cover no-repeat;
  z-index: 0;

}

.about-hero .container {
  z-index: 1;
}

@keyframes kenburns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}

.about-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation:
    kenburns 18s ease-in-out forwards,
    bgSwap 24s infinite;
}

@keyframes bgSwap {
  0% {
    background-image:
      linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
      url("/static/core/media/hero(1).jpg");
  }
  50% {
    background-image:
      linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
      url("/static/core/media/hero(10).jpg");
  }
  100% {
    background-image:
      linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
      url("/static/core/media/hero(11).jpg");
  }
}

@media (max-width: 768px) {
  .about-hero {
    height: 60vh;
  }

  .about-hero h1 {
    font-size: 2rem;
  }

  .about-hero p {
    font-size: 1rem;
  }
}

/* ======================
   FOOTER
====================== */
.site-footer {
  background: linear-gradient(rgba(0, 0, 0, 0.349),  hsla(51, 60%, 64%, 0.212));
  color: #ddd;
  padding: 60px 0 30px;
  position: relative;
}

.footer-brand {
  color: #FFD700;
  font-weight: 600;
  letter-spacing: .5px;
}

.footer-title {
  color: #fff;
  margin-bottom: 12px;
  font-size: .95rem;
}

.footer-text {
  font-size: .9rem;
  color: #aaa;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: color .2s ease;
}

.footer-links a:hover {
  color: #FFD700;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 20px;
  color: #777;
  font-size: .8rem;
}
.footer-bottom a {
  color: #FFD700;
  text-decoration: none;
}   

/* footer socials */
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-right: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  color: #FFD700;
  font-size: 1rem;
  transition: transform .25s ease, background .25s ease;
}

.footer-socials a:hover {
  transform: translateY(-4px);
  background: rgba(255,215,0,.15);
}

.footer-insta {
  margin: 40px 0;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.insta-grid div {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, #222, #111);
  position: relative;
  overflow: hidden;
}

/* footer insta */
.insta-grid div::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,215,0,.08);
  opacity: 0;
  transition: opacity .3s ease;
}

.insta-grid div:hover::after {
  opacity: 1;
}

@media (max-width: 768px) {
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.insta-grid div {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a, #0e0e0e);
  color: rgba(255,215,0,.35);
  font-size: 1.6rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* soft shimmer */
.insta-grid div::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,215,0,.15),
    transparent
  );
  transform: translateX(-100%);
  transition: transform .6s ease;
}

.insta-grid div:hover::before {
  transform: translateX(100%);
}

.insta-grid div:hover {
  color: #FFD700;
}

.insta-box {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, #FFD70030, #007BFF30);
  border-radius: 6px;
}


/* ======================
   BACK TO TOP BUTTON
  ======================= */
  #backToTop {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: #FFD700;
  color: #121212;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
  z-index: 999;
}

#backToTop.show {
  opacity: 1;
  pointer-events: auto;
}

#backToTop:hover {
  transform: translateY(-4px);
}

.site-footer .col-md-4 {
  transition-delay: calc(var(--i) * 0.1s);
}
.site-footer .col-md-4.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all .8s ease;
}

/* ADD TO BOTTOM of main.css */
/* About Hero Section */
.about-hero {
  position: relative;
  min-height: 80vh;
  background: url("../media/hero(9).jpg") center/cover no-repeat;
  overflow: hidden;
   animation: kenburns 30s ease-in-out infinite alternate;
}

@keyframes kenburns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

/*  */

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.about-hero-content {
  position: relative;
  z-index: 2;
}





