/* ===================================================
   FONTS
=================================================== */
@font-face {
  font-family: 'Wasted Vindey';
  src: url('../font/Wasted-Vindey.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Brillant';
  src: url('../font/brillant.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* ===================================================
   BASE STYLING & TYPOGRAPHY
=================================================== */
html {
  scroll-behavior: smooth;
}

h1, h2, h4 {
  text-transform: uppercase;
  font-family: 'Wasted Vindey', sans-serif;
}

p, a {
  font-family: 'TT Hoves', sans-serif;
}

/* ===================================================
   NAVIGATION
=================================================== */
.navbar-brand img {
  height: 40px;
}

.navbar {
  transition: background-color 0.3s ease;
}

.navbar.transparent {
  background-color: transparent !important;
}

.navbar-nav .nav-link {
  color: white !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #d4af37 !important;
}

/* ===================================================
   HEADER / HERO
=================================================== */
header {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

header video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.hero-title {
  color: white;
  font-size: clamp(2rem, 6vw, 4rem);
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
  padding: 0 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  display: block;
  font-size: 0.6em;
  font-weight: normal;
  letter-spacing: 1px;
  text-transform: none;
}

.scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  z-index: 10;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.mobile-break {
  display: none;
}

/* ===================================================
   PACKAGE BOXES
=================================================== */
.package-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-grow: 1;
  height: 100%;
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
  transition: transform .3s, box-shadow .3s;
  user-select: none;
}

.package-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,.10);
}

.package-box .btn-primary {
  margin-top: auto;
  align-self: center;
  opacity: 1;
}

.package-box .btn-primary:hover {
  opacity: 0.9;
}

.package-box hr {
  width: 40%;
  margin: 1rem auto;
  border-top: 2px solid #ddd;
}

.package-cta {
  margin-top: auto;
}

/* ===================================================
   PACKAGE COLOR THEMES
=================================================== */
.package-box.bronze        { border: 3px solid #b68d5f; background: #f6f1eb; }
.package-box.bronze h4     { color: #b68d5f; }

.package-box.silver        { border: 3px solid #a6a6a6; background: #f9f9f9; }
.package-box.silver h4     { color: #a6a6a6; }

.package-box.gold          { border: 3px solid #d8a74d; background: #fef7e7; }
.package-box.gold h4       { color: #d8a74d; }

/* ===================================================
   LIST STYLING
=================================================== */
.package-list {
  text-align: left;
  padding-left: 1.25rem;
  margin: 1rem 0 0;
}

.package-list li {
  margin-bottom: 0.5rem;
}

/* ===================================================
   BUTTON STYLING
=================================================== */
.package-box.bronze .btn-primary {
  background-color: #b68d5f;
  border-color: #b68d5f;
}

.package-box.silver .btn-primary {
  background-color: #a6a6a6;
  border-color: #a6a6a6;
}

.package-box.gold .btn-primary {
  background-color: #d8a74d;
  border-color: #d8a74d;
}

.btn-gold {
  background-color: #d8a74d;
  border-color: #d8a74d;
  color: white;
  font-size: 0.9rem;
  padding: 0.4rem 1rem;
  line-height: 1.4;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-gold:hover {
  background-color: #b88c32;
  border-color: #b88c32;
}

#contact .btn-primary {
  background-color: #d8a74d;
  border-color: #d8a74d;
  color: #fff;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

#contact .btn-primary:hover {
  background-color: #929292;
  border-color: #929292;
}

/* ===================================================
   MISC STYLING
=================================================== */
.about-img {
  max-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

#formFeedback {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

#formFeedback.show {
  max-height: 200px;
  opacity: 1;
}

/* Brand gold text colour */
.text-gold {
  color: #d8a74d !important;
}


/* ===================================================
   RESPONSIVE / MEDIA QUERIES
=================================================== */
@media (max-width: 991.98px) {
  .navbar-nav {
    text-align: center;
    margin: 0 auto;
    width: 100%;
  }

  .navbar-nav .nav-item {
    margin-bottom: 0.5rem;
  }

  .navbar-nav .btn {
    width: auto;
    display: inline-block;
  }

  .navbar-brand {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .navbar-toggler {
    position: absolute;
    right: 1rem;
    top: 0.75rem;
  }
}

@media (max-width: 768px) {
  .mobile-break {
    display: inline;
  }

  .package-box {
    margin-bottom: 1.5rem;
  }

  .package-box:last-of-type {
    margin-bottom: 0;
  }

  .hero-subtitle {
    font-size: 0.5em;
  }
}

@media (max-width: 768px) {
  /* Stop stretching all columns to the same height */
  .row.align-items-stretch {
    align-items: flex-start !important;
  }

  /* Let package boxes size to their content again */
  .package-box {
    height: auto !important;
    margin-bottom: 1.5rem;
  }

  /* Remove extra margin under the last package box */
  .package-box:last-of-type {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  /* Add 1.5rem gap below each package column on mobile */
  .row.text-center.align-items-stretch > .col-md-4.d-flex {
    margin-bottom: 1.5rem;
  }
}

.navbar img, .logo img {
    height: 99px;
    max-height: 100px;
    width: auto;
    padding: 10px 0;
    transition: height 0.3s ease, padding 0.3s ease;
}

/* When navbar is scrolled */
.navbar.scrolled img, .logo.scrolled img {
    height: 50px;
    padding: 5px 0;
}



