@charset "utf-8";
/* css/* Base resets */


   /* ------------------------------------ */
    /* 1. BASE SYSTEM RESETS & BACKDROP     */
    /* ------------------------------------ */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background-color: #000000;
      color: #ffffff;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      overflow-x: hidden;
    }

    /* ------------------------------------ */
    /* 2. THE COMPACT HERO CONTAINER       */
    /* ------------------------------------ */
    .hero-container {
      display: flex;
      width: 100%;
      max-width: 1917px;
      aspect-ratio: 1917 / 847; 
      max-height: 847px;
      background-color: #000000;
      margin: 0 auto;
      overflow: hidden;
      position: relative;
    }

    /* ------------------------------------ */
    /* 3. SIDE COLUMNS & BUTTON LAYOUT      */
    /* ------------------------------------ */
    .side-column {
      display: flex;
      flex-direction: column;
      width: 198px;
      flex-shrink: 0; 
      height: 100%;
      z-index: 10;
    }

    /* Interactive Cinematic Buttons */
    .btn {
  flex: 1; 
  width: 100%;
  border: none;
  padding: 0;           /* REMOVES default browser spacing inside buttons */
  margin: 0;            /* REMOVES accidental outer gaps */
  background-color: transparent;
  background-size: 100% 100%; /* FORCES borders to stretch flush to all 4 edges */
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

    /* --- THE COOL HOVER EFFECT --- */
    /* This creates a gentle golden light that slides across the button from left to right */
    .btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(
        90deg, 
        transparent, 
        rgba(212, 175, 55, 0.15), /* Subtle gold glow */
        transparent
      );
      transition: left 0.5s ease-in-out;
    }

    .btn:hover::before {
      left: 100%; /* Smoothly slides side-to-side on mouse-over */
    }

    /* Button Text Labels & Icons Layer */
    .btn-content {
      position: relative;
      z-index: 2;
      text-align: center;
      pointer-events: none; /* Prevents text from blocking hover triggers */
      transition: transform 0.3s ease;
    }

    /* Subtle text lift and bright glow on hover without shrinking the button box */
    .btn:hover .btn-content {
      transform: translateY(-2px); 
    }

    .btn-icon {
      font-size: 20px;
      margin-bottom: 4px;
      display: block;
    }

    .btn-label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #dfba73; /* Elegant muted gold matching your screen borders */
      text-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
      font-weight: 600;
      transition: color 0.3s ease;
    }

    .btn:hover .btn-label {
      color: #ffffff; /* Brightens on hover */
    }

    /* Assigning individual assets from your img_hero folder */
    .btn-l1 { background-image: url('img_hero/l1.png'); }
    .btn-l2 { background-image: url('img_hero/l2.png'); }
    .btn-l3 { background-image: url('img_hero/lm.png'); }
    .btn-l4 { background-image: url('img_hero/l2.png'); }
    .btn-l5 { background-image: url('img_hero/l1.png'); }

    .btn-r1 { background-image: url('img_hero/r1.png'); }
    .btn-r2 { background-image: url('img_hero/r2.png'); }
    .btn-r3 { background-image: url('img_hero/rm.png'); }
    .btn-r4 { background-image: url('img_hero/r2.png'); }
    .btn-r5 { background-image: url('img_hero/r1.png'); }

    /* ------------------------------------ */
    /* 4. CENTER VIDEO MOUNT                 */
    /* ------------------------------------ */
    .video-column {
      flex: 1; 
      height: 100%;
      position: relative;
      overflow: hidden;
      background-color: #000000;
    }

    .video-column video,
    .video-fallback-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
      transition: opacity 0.8s ease-in-out; /* Smooth transition fade */
    }

    /* Fallback image sits behind video waiting to emerge */
    .video-fallback-img {
      opacity: 0;
      z-index: 1;
    }

    .video-fallback-img.active {
      opacity: 1;
    }

    /* ------------------------------------ */
    /* 5. MAIN CONTENT AREA BELOW HEADER    */
    /* ------------------------------------ */
    .main-content {
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 20px;
      background-color: #000000;
    }

    .main-content h1 {
      font-size: 32px;
      color: #dfba73;
      margin-bottom: 20px;
      letter-spacing: 1px;
    }

    .main-content p {
      font-size: 16px;
      line-height: 1.8;
      color: #b0b0b0;
      margin-bottom: 20px;
    }
	  /* ------------------------------------ */
/* 6. DUAL MISSION GRID SYSTEM         */
/* ------------------------------------ */
.mission-wrapper {
  max-width: 1917px; /* Perfectly aligns with your gorgeous header width */
  margin: 0 auto;
  padding: 80px 40px;
  background-color: #000000;
  display: grid;
  grid-template-columns: 1fr 1fr; /* Split screen evenly down the middle */
  gap: 50px;
}

/* Base Card Styling for both sections */
.product-bundle-card, .donation-card {
  background: linear-gradient(145deg, #0a0a0a, #121212);
  border: 1px solid rgba(223, 186, 115, 0.15); /* Muted gold border matching buttons */
  border-radius: 4px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.product-bundle-card:hover, .donation-card:hover {
  border-color: rgba(223, 186, 115, 0.4);
  box-shadow: 0 10px 30px rgba(223, 186, 115, 0.03);
}

/* Premium Badges */
.badge {
  position: absolute;
  top: -15px;
  left: 40px;
  background-color: #dfba73;
  color: #000000;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 2px;
}

.donation-badge {
  background-color: #ffffff; /* Contrast accent for the charity portion */
}

/* Text layouts */
.mission-wrapper h2 {
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 5px;
}

.mission-wrapper h3 {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #dfba73;
  margin-bottom: 25px;
}

.product-desc, .mission-text {
  font-size: 16px;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 30px;
}

.mission-text {
  font-style: italic;
  font-size: 18px;
  color: #ffffff;
  border-left: 3px solid #dfba73;
  padding-left: 15px;
}

.mission-subtext {
  font-size: 14px;
  color: #888888;
  margin-bottom: 30px;
}

/* Bundle Specific Sub-items */
.bundle-includes {
  background-color: rgba(223, 186, 115, 0.03);
  border: 1px dashed rgba(223, 186, 115, 0.2);
  padding: 20px;
  border-radius: 4px;
  margin-bottom: 3px;
}

.bundle-includes h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #dfba73;
  margin-bottom: 12px;
}

.bundle-includes ul {
  list-style: none;
}

.bundle-includes li {
  font-size: 14px;
  color: #b5b5b5;
  margin-bottom: 8px;
  display: flex;
  gap: 10px;
}

.bundle-includes li span {
  color: #dfba73;
}

/* Pricing and Buttons */
.pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.price {
  font-size: 32px;
  font-weight: bold;
  color: #ffffff;
}

.price del {
  font-size: 18px;
  color: #555555;
  margin-left: 10px;
}

.action-btn {
  display: block;
  text-align: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 18px 30px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.buy-btn {
  background-color: #dfba73;
  color: #000000;
}

.buy-btn:hover {
  background-color: #ffffff;
  transform: translateY(-2px);
}

/* Donation Module Elements */
.donation-tiers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.tier-btn {
  background-color: #161616;
  border: 1px solid #262626;
  color: #aaaaaa;
  padding: 14px;
  text-align: left;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tier-btn:hover {
  border-color: #dfba73;
  color: #ffffff;
}

.tier-btn.active {
  background-color: rgba(223, 186, 115, 0.1);
  border-color: #dfba73;
  color: #dfba73;
  font-weight: bold;
}

.custom-amount-box {
  display: flex;
  align-items: center;
  background-color: #6c6a64;
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 0 15px;
  margin-bottom: 30px;
	
}

.custom-amount-box span {
  color: #000;
  font-weight: bold;
}

  .customAmount-placeholder span {
    color: black;
    opacity: 1; /* the color is solid black, not grayed out */
  }

.custom-amount-box input {
  background: transparent;
  border: none;
  color: #000;
  padding: 14px;
  width: 100%;
  font-size: 14px;
	 font-weight: bold;
  outline: none;
}

.donate-btn {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  width: 100%;
}

.donate-btn:hover {
  background-color: #ffffff;
  color: #000000;
  transform: translateY(-2px);
}

/* ------------------------------------ */
/* RESPONSIVE BREAKPOINT FOR TABLETS/MOBILES */
/* ------------------------------------ */
@media (max-width: 1024px) {
  .mission-wrapper {
    grid-template-columns: 1fr; /* Stacks columns vertically on smaller viewports */
    padding: 60px 20px;
    gap: 40px;
  }
}
/* ------------------------------------ */
/* 7. THE INTERACTIVE CINEMATIC FOOTER */
/* ------------------------------------ */
.footer-container {
  display: flex;
  width: 100%;
  max-width: 1917px;
  /* Shorter golden aspect ratio for footer (approx 400px tall on max screen) */
  aspect-ratio: 1917 / 400; 
  max-height: 400px;
  background-color: #22201b; /* Your elegant custom dark bronze tone */
  margin: 0px auto 0 auto;  /* Adds nice breathing room above footer */
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(223, 186, 115, 0.1);
}

/* Symmetrical Side Columns for Links */
/* Symmetrical Side Columns for Links */
.footer-side-column {
  display: flex;
  flex-direction: column;
  width: 198px; /* Locked exactly to match your header width */
  flex-shrink: 0;
  height: 100%;
  background-color: #000; /* CHANGED: Dark bronze backdrop in normal state */
}

/* Symmetrical Text Link Buttons */
.footer-link {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  border: none;
  padding: 0;
  margin: 0;
  color: #d8cdba; /* Your beautiful custom text color choice */
  background-color: #22201b; /* Normal state matches column theme */
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(223, 186, 115, 0.03);
}

.footer-link:hover {
  color: #fcd798; /* Your exact hover highlight hex code */
  background-color: #000000; /* CHANGED: Snaps to absolute pure black on mouse over */
}
.footer-link:hover {
  color: #fcd798; /* Your exact hover highlight hex code */
  background-color: rgba(223, 186, 115, 0.05); /* Ultra subtle warmth glow */
}

/* Center Slider Column Window */
.slider-column {
  flex: 1;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Continuous sliding track layer */
.slider-track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Individual slide dimensions */
.slide {
  flex: 0 0 33.333%; /* Displays 3 products on screen simultaneously */
  height: 100%;
  position: relative;
  overflow: hidden;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Keeps all product mockups scaling perfectly */
  transition: transform 0.6s ease;
}

.slide:hover img {
  transform: scale(1.05); /* Elegant gentle zoom on product image */
}

/* THE MAGIC MOUSE-OVER POP-UP WINDOW */
.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 40%, rgba(34,32,27,0.7) 100%);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  opacity: 0; /* Hidden by default */
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.slide:hover .slide-overlay {
  opacity: 1; /* Smoothly fades inside bounds on mouse-over */
  transform: translateY(0);
}

.slide-overlay h3 {
  font-size: 20px;
  color: #fcd798;
  margin-bottom: 8px;
  font-weight: 400;
  letter-spacing: 1px;
}

.slide-overlay p {
  font-size: 13px;
  color: #d8cdba;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Go To Learn More Action link */
.learn-more-btn {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid #fcd798;
  padding-bottom: 4px;
  font-weight: 600;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.learn-more-btn:hover {
  color: #fcd798;
  border-color: #ffffff;
}

/* Slider Navigation Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(253, 215, 152, 0.2);
  color: #fcd798;
  width: 40px;
  height: 40px;
  border-radius: 0%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  transition: all 0.3s ease;
}

.slider-arrow:hover {
  background-color: #fcd798;
  color: #000000;
}

.prev-arrow { left: 20px; }
.next-arrow { right: 20px; }

/* Responsive Grid adjustment for standard tablet/mobile viewports */
@media (max-width: 1024px) {
  .footer-container {
    max-height: none;
    aspect-ratio: auto;
    flex-direction: column;
    height: auto;
  }
  .footer-side-column {
    width: 100%;
    height: auto;
  }
  .slide {
    flex: 0 0 100%; /* Shows 1 product slide at a time on small monitors */
  }
}
/* ------------------------------------ */
/* HORIZONTAL CINEMATIC DIVIDER STRIPES */
/* ------------------------------------ */
.cinematic-divider-top {
  width: 100%;
  height: 193px; /* Adjust to match the exact height of stripe_top.png */
  background-image: url('img_hero/stripe_top.png');
  background-repeat: repeat-x;
  background-position: center;
  background-color: #000000;
  margin-bottom: 90px; /* NEW: Generates 60px space below the top stripe */
}

.cinematic-divider-bottom {
  width: 100%;
  height: 163px; /* Adjust to match the exact height of stripe_bottom.png */
  background-image: url('img_hero/stripe_bottom.png'); 
  background-repeat: repeat-x;
  background-position: center;
  background-color: #000000;
  margin-top: 90px; /* NEW: Generates 60px space above the bottom stripe */
}

/* --- THE REAL PNG ORNAMENTAL CARD CORNERS --- */
.ornamental-card {
  position: relative;
  background: linear-gradient(145deg, #060606, #111111);
  border: 1px solid rgba(223, 186, 115, 0.2);
  border-radius: 1px;
  padding: 50px;
}

/* Set up the layer for your real PNG corner graphics */
.ornamental-card::before, .ornamental-card::after {
  content: "";
  position: absolute;
  width: 209px;  /* Adjust based on your PNG dimensions */
  height: 205px; /* Adjust based on your PNG dimensions */
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

/* Top-Left Corner Graphic Mount */
.ornamental-card::before {
  top: 1px;
  right: 1px;
  background-image: url('img_hero/corner_top.png');
  background-position: top left;
}

/* Bottom-Right Corner Graphic Mount */
.ornamental-card::after {
  bottom: 1px;
  left: 1px;
  background-image: url('img_hero/corner_bottom.png');
  background-position: bottom right;
}
/* ------------------------------------ */
/* NEW: BRANDING TYPOGRAPHY ENGINE      */
/* ------------------------------------ */
.brand-hero-typography {
  text-align: center;
  padding: 20px 20px 40px 20px; /* Gives nice breathing room around headings */
  background-color: #000000;
}

.brand-hero-typography h2 {
  font-size: 42px;
  font-weight: 300;
  letter-spacing: 6px; /* High-end luxury spacing expansion */
  color: #ffffff;
  margin-bottom: 8px;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

/* Custom mini diamond divider highlight within the title string alignment */
.brand-hero-typography h2 span {
  color: #dfba73; /* Muted corporate gold theme anchor */
  font-size: 28px;
  vertical-align: middle;
  margin: 0 10px;
}

.brand-hero-typography h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 12px; /* Super ultra-wide luxury branding letter alignment */
  color: #dfba73; /* Golden accents match button borders */
  text-transform: uppercase;
}
/* ------------------------------------ */
/* NEW: MINIMALIST BOTTOM STRIP         */
/* ------------------------------------ */
.copyright-strip {
  width: 100%;
  max-width: 1917px;
  margin: 0 auto;
  background-color: #000000; /* Pure black to clamp the footer base */
  padding: 25px 20px;
  text-align: center;
  border-top: 1px solid rgba(223, 186, 115, 0.05); /* Hidden micro-fine seam */
}

.copyright-strip p {
  font-size: 11px;
  color: #94928e; /* Soft, non-distracting charcoal gray tone */
  letter-spacing: 1px;
  text-transform: uppercase;
}
/* --- INTERNAL CARD CUSHION ADJUSTMENT --- */
.product-bundle-card, .donation-card {
  background: linear-gradient(145deg, #0a0a0a, #121212);
  border: 1px solid rgba(223, 186, 115, 0.15);
  border-radius: 4px;
  
  /* 1. INCREASE INTERNAL BOTTOM SPACE */
  /* This changes top/sides to 50px, and pumps up the bottom inside margin to 80px */
  padding: 70px 50px 80px 80px; 
  
  /* 2. DYNAMIC HEIGHT EXPANSION */
  /* Forces the card to stretch naturally if you add more text/components later */
  height: auto; 
  
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
/* ==========================================================================
   8. TACTICAL HERO DASHBOARD SYSTEM (UPDATED: SLIM & CONDENSED)
   ========================================================================== */
.hero-dashboard {
  position: absolute;
  top: 35%; /* Tweaked slightly up to center it perfectly */
  left: 9%;
  width: 44%;
  height: 60%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4% 6%;
  box-sizing: border-box;
  
  /* --- THE FONT FIX --- */
  /* Using 'Arial Narrow' or 'Impact' gives a beautifully condensed tactical look */
  font-family: 'Arial Narrow', Arial, sans-serif; 
  text-transform: uppercase; /* Makes all tactical data sharp and capitalized */
  
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s;
}

.hero-dashboard.active {
  opacity: 1;
  visibility: visible;
}

/* Dashboard Live Clock Row */
.dashboard-timer {
  font-size: clamp(14px, 2vw, 24px); 
  color: #fff;
  font-weight: bold;
  letter-spacing: 2px;
  text-align: center;
  line-height: 1.1;
}

/* Slimmed down dashed separation line */
.dashboard-line {
  border: 0;
  border-top: 1px dashed rgba(223, 186, 115, 0.4);
  margin: 3% 0; /* Tightened line space */
}

/* --- ONE SOLID TEXT BLOCK STYLING --- */
/* This controls the parent box containing your numbers */
.dashboard-stats {
  line-height: 1.1; /* Drops the line-height close together to eliminate gaps */
  margin-bottom: 3%;
	text-align: center;
}

.stat-title {
  font-size: clamp(14px, 1.1vw, 16px);
  letter-spacing: 1px;
  color: #000;
	font-weight: bold;

  display: inline; /* Forces title to sit right on the same block layout */
}

.stat-value {
  font-size: clamp(16px, 2.2vw, 26px);
  font-weight: 800; /* Extra bold impact for numbers */
  letter-spacing: 1px;
	
  margin-bottom: 4px; /* Tiny tight space before next item */
}

.text-gold { color: #dfba73; }
.text-white { color: #ffffff; text-shadow: 0 0 10px rgba(255,255,255,0.2); }

/* Bottom Message Block */
.dashboard-msg {
  font-size: clamp(18px, 1.1vw, 20px);
  color: #000;
  line-height: 1.2;
  text-align: center;
  font-weight: bold;
  font-family: 'Segoe UI', sans-serif; /* Kept clean for readability */
  text-transform: none; /* Allows natural lower case reading for thank you text */
}

  #customAmount::placeholder {
    color: black;
    opacity: 1; /* Ensures the color is solid black, not grayed out */
  }
