/* ===== GENERAL LAYOUT ===== */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #121212;
    color: #EEEEEE;
    position: relative;
    overflow-x: hidden;
  }
  
  a {
    color: #00C2A8;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  a:hover {
    color: #1EE4D3;
  }
  
  section {
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
  }
  
  h2 {
    color: #FF6700; /* Blaze orange */
    font-size: 28px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  p {
    line-height: 1.6;
    margin-bottom: 10px;
  }
  
  /* ===== GALLERY BANNER (Flexible Height + Full Image) ===== */
  .banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #000;
  }
  
  .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
  }
  
  .banner img {
    width: 100%;
    height: auto;
    max-height: 500px; /* Prevents super tall banners */
    object-fit: contain;
    object-position: center;
    display: block;
    background-color: #000;
  }
  
  /* ===== SWIPER NAVIGATION BUTTONS ===== */
  .swiper-button-next,
  .swiper-button-prev {
    color: #FFFFFF;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    position: absolute;
    z-index: 10;
  }
  
  .swiper-button-next {
    right: 15px;
  }
  
  .swiper-button-prev {
    left: 15px;
  }
  
  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
  
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 20px;
    color: #fff;
  }
  
  /* ===== CONTENT AREA ===== */
  .content-container {
    position: relative;
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    z-index: 1;
  }
  
  /* ===== WATERMARK ===== */
  .watermark {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.08;
    max-width: 60%;
    pointer-events: none;
    z-index: 0;
    filter: brightness(2.5);
  }
  