/* Global body: dark background, orange default text */
body {
  background-color: #000;
  color: #ff8c00; /* orange by default */
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
}

/* Headings accent color */
h1, h2, h3, h4 {
  color: #ff8c00;
  margin-top: 0;
}

/* Paragraphs default to orange */
p {
  color: #ff8c00 !important;
}

/* Navbar styling */
#navbar .w3-bar {
  white-space: nowrap;
}

/* --- Banner Fixes --- */
.banner-wrapper {
  width: 100%;          /* match viewport width */
  max-width: 100vw;     /* never exceed viewport */
  overflow: hidden;     /* crop anything wider */
  margin: 0 auto;
  display: block;
}

.header-banner {
  width: 100%;          /* scale image to wrapper */
  height: auto;         /* keep aspect ratio */
  display: block;
  max-width: 100%;      /* prevent overflow */
}

/* Mobile dropdown toggle */
.w3-dropdown-content {
  display: none;
}
.w3-dropdown-content.w3-show {
  display: block;
}

/* Lightbox arrows */
.lb-prev, .lb-next {
  opacity: 1 !important;
  background-color: rgba(255,165,0,0.7) !important;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}
.lb-prev:hover, .lb-next:hover {
  background-color: rgba(255,165,0,1) !important;
}


/* Responsive video wrapper */
.responsive-video {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Standard 16:9 ratio (YouTube) */
.responsive-video.youtube {
  aspect-ratio: 16 / 9;
}

.responsive-video.instagram {
  position: relative;
  width: 100%;
  min-height: 600px; /* adjust until the full reel shows */
}

.responsive-video.instagram iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Make iframe fill the wrapper */
.responsive-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


/* PayPal button styling */
.pp-CKVVWQ68B9TC8 {
  -webkit-appearance: none;
  appearance: none;
  text-align: center;
  border: 1px solid #FFFFFF;   /* white outline */
  border-radius: 1.5rem;       /* rounded corners */
  min-width: 11.625rem;
  padding: 0 2rem;
  height: 2.625rem;
  font-weight: bold;
  background-color: #000000;   /* black background */
  color: #FFFFFF;              /* white text */
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1.10rem;
  line-height: 1.25rem;
  cursor: pointer;
  transition: background-color 0.25s ease,
              color 0.25s ease,
              border-color 0.25s ease;
}

/* Hover effect: orange background, black text */
.pp-CKVVWQ68B9TC8:hover {
  background-color: orange;
  color: black;
  border-color: white;
}

/* Active (pressed) state: darker orange */
.pp-CKVVWQ68B9TC8:active {
  background-color: #cc6600;
  color: white;
  border-color: #cc6600;
}

/* Focus state for keyboard users */
.pp-CKVVWQ68B9TC8:focus {
  outline: 2px solid orange;
  outline-offset: 2px;
}

/* Responsive PayPal container */
.paypal-container {
  display: inline-grid;        /* keeps button centered */
  justify-items: center;
  align-content: start;
  gap: 0.5rem;
  width: 100%;
  text-align: center;
  margin-top: 1rem;
}

