/* ========== GLOBAL RESET ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ========== BRAND COLORS ========== */
:root {
  --cameo-teal: #76D0C8;        /* Aruba teal */
  --cameo-teal-deep: #63BBB3;   /* slightly darker shade */
  --cameo-orange: #F77F24;      /* accent orange */
}

/* ========== BODY & BASE ========== */
body {
  font-family: system-ui, sans-serif;
  color: white;
  height: 100vh;
  overflow-x: hidden;
}

/* Background video */
.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Dark overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 15, 25, 0.55);
  backdrop-filter: blur(2px);
  z-index: -1;
}

/* ========== HEADER & LOGO ========== */
.top-header {
  text-align: center;
  padding: 1.3rem 0 0.5rem;
}

.top-header h1 {
  font-size: 2.2rem;
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
}

/* Logo – full image, no cropping */
.logo {
  width: 180px;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.35);
  padding: 6px;
  box-shadow: 0 0 22px rgba(0, 255, 255, 0.4);
}

/* ========== HOME PAGE BUTTON GRID ========== */
.button-container {
  width: 95%;
  max-width: 900px;
  margin: 1.5rem auto 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.button-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

/* Embossed rectangular buttons (used everywhere) */
.nav-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;

  padding: 0.9rem 0.5rem;
  text-decoration: none;
  color: #eaffff;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;

  background: linear-gradient(
    145deg,
    rgba(118, 208, 200, 0.9),
    rgba(247, 127, 36, 0.8)
  );

  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.3);

  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 2px rgba(0, 0, 0, 0.5);

  transition: 0.15s ease-out;
}

.nav-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.nav-btn:active {
  transform: translateY(1px);
  box-shadow:
    0 6px 15px rgba(0, 0, 0, 0.65),
    inset 0 1px 0 rgba(0, 0, 0, 0.7);
}

/* Social icons (home row 2) */
.icon {
  width: 18px;
  height: 18px;
}

/* ========== INNER PAGES (ABOUT, JOURNEY, ETC.) ========== */
.page-content {
  width: 95%;
  max-width: 900px;
  margin: 2rem auto 3rem;
  padding: 1.5rem 1.25rem 2rem;
  border-radius: 1rem;
  background: rgba(0, 15, 30, 0.9);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
}
.page-content {
  width: 95%;
  max-width: 900px;
  margin: 2rem auto 3rem;
  padding: 1.5rem 1.25rem 2rem;
  border-radius: 1rem;
  background: rgba(0, 15, 30, 0.9);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
}

/* ===== OUR JOURNEY MAP ===== */
.journey-map{
  margin-top: 2rem;
  text-align: center;
}

.journey-map h3{
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.map-embed{
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 18px 45px rgba(0,0,0,0.55);
  background: rgba(0,0,0,0.25);
}

.map-embed iframe{
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.map-link{
  margin: 1rem auto 0;
  max-width: 300px;
.page-content h2 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.page-content p {
  font-size: 0.98rem;
  line-height: 1.7;
}
/* ===== ABOUT US SLIDESHOW ===== */
.about-slideshow {
  width: 95%;
  max-width: 900px;
  margin: 2rem auto 1.5rem;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  height: 220px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.about-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.about-slideshow img.active {
  opacity: 1;
}

/* ===== ABOUT US CONTENT ===== */
.about-content h3 {
  margin-top: 1.4rem;
  margin-bottom: 0.4rem;
  color: #9ff;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.about-content p {
  margin-bottom: 0.9rem;
}
/* Text back-link on inner pages */
.back-link {
  display: inline-block;
  margin-bottom: 1rem;
  color: #e5f9ff;
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.8;
}

.back-link:hover {
  opacity: 1;
}

/* ========== MERCH PAGE ========== */
/* Back to Home button wrapper */
.back-btn-wrapper {
  width: 95%;
  max-width: 900px;
  margin: 0.5rem auto;
  text-align: left;
}

.back-btn {
  font-size: 0.85rem;
  padding: 0.6rem 1rem;
  width: auto;
}

/* Vendor cards layout */
.vendor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.vendor-card {
  background: rgba(0, 15, 25, 0.88);
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.vendor-card h3 {
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}

.vendor-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.7rem;
}

/* Make vendor buttons full width */
.vendor-btn {
  width: 100%;
}

/* ========== MOBILE OPTIMIZATIONS ========== */
@media (max-width: 700px) {
  .button-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-btn {
    padding: 1rem 0.3rem;
    font-size: 0.95rem;
  }

  .logo {
    width: 130px;
  }

  .top-header h1 {
    font-size: 1.6rem;
  }

  .vendor-grid {
    grid-template-columns: 1fr;
  }
}
/* --- Layout spacing fix after adding PayPal & Wishlist --- */

.button-row {
  margin-bottom: 32px; /* pushes content below socials down */
}

.hero,
.hero-container,
.logo-container {
  margin-top: 32px;
  margin-bottom: 32px;
}
/* ===== FIX HOME PAGE BUTTON SPACING ===== */

/* Space AFTER socials */
.button-row {
  margin-bottom: 40px;
}

/* Space BELOW logo block */
.logo-container,
.hero-logo,
.hero img {
  margin-bottom: 40px;
}

/* Space BEFORE main navigation buttons */
.nav-buttons,
.main-buttons,
.button-grid {
  margin-top: 40px;
}
/* ===== Mobile layout: keep buttons from crowding the logo ===== */
@media (max-width: 768px) {
  .hero-split,
  .top-section,
  .logo-and-buttons {
    flex-direction: column !important;
    align-items: center !important;
  }

  .hero-split > *,
  .top-section > *,
  .logo-and-buttons > * {
    width: 100% !important;
    max-width: 520px;
  }

  .hero-split .button-grid,
  .top-section .button-grid,
  .logo-and-buttons .button-grid {
    margin-top: 18px !
/* ===== FIX: Logo overlapping button grid ===== */

.top-header {
  margin-bottom: 32px;
}

.top-header .logo {
  display: block;
  margin-bottom: 24px;
}
/* ===== FORCE spacing between logo/title and first button row ===== */
header.top-header {
  display: block;
  margin-bottom: 28px !important;
}

header.top-header img.logo {
  display: block;
  margin: 0 auto 22px auto !important;
}
/* ===== FIX: Stop buttons wrapping beside the logo (float issue) ===== */

.top-header .logo,
img.logo {
  float: none !important;
  display: block !important;
  margin: 0 auto 22px auto !important;
}

/* Force the button area to start BELOW the header/logo */
.button-container,
main.button-container,
.button-row {
  clear: both !important;
}
img.logo {
  float: none !important;
}
/* ===== RESPONSIVE BUTTON GRID FIX ===== */

/* Default (desktop & tablet) */
.button-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

/* Mobile phones */
@media (max-width: 768px) {
  .button-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  .button-row {
    grid-template-columns: 1fr;
  }
@media (max-width: 768px) {
  .button-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ===== About Slideshow ===== */
.about-slideshow {
  width: 95%;
  max-width: 900px;
  margin: 1.25rem auto 2rem;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 18px 45px rgba(0,0,0,0.6);
}

.about-slideshow .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.about-slideshow .slide.active {
  opacity: 1;
}
/* ===== ABOUT PAGE SLIDESHOW FIX ===== */

.about-slideshow {
  width: 95%;
  max-width: 900px;
  height: clamp(180px, 35vw, 320px);
  margin: 1rem auto 1.5rem;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 18px 45px rgba(0,0,0,0.6);
}

.about-slideshow .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.about-slideshow .slide.active {
  opacity: 1;
}
/* ===== FORCE ABOUT SLIDESHOW TO A NORMAL SIZE (HARD OVERRIDE) ===== */

/* If the slideshow container exists, clamp its height */
.about-slideshow {
  width: 95% !important;
  max-width: 900px !important;
  height: 240px !important;       /* <- guaranteed fixed height */
  max-height: 240px !important;
  margin: 1rem auto 1.5rem !important;
  position: relative !important;
  overflow: hidden !important;
  border-radius: 1rem !important;
}

/* No matter what the images are called, force them to fit inside the box */
.about-slideshow img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* Safety global rule so images NEVER blow up the layout */
img {
  max-width: 100% !important;
  height: auto;
}
/* ===== ABOUT PAGE SLIDESHOW ===== */
.about-slideshow{
  width: 95%;
  max-width: 900px;
  height: 220px;
  margin: 1rem auto 0.75rem;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 14px 35px rgba(0,0,0,0.55);
  background: rgba(0,0,0,0.25);
}

.about-slideshow .slide{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: block;
}

.about-slideshow .slide.active{
  opacity: 1;
}

@media (min-width: 700px){
  .about-slideshow{ height: 320px; }
}