/* =========================
   FONTS
========================= */

@font-face {
  font-family: 'Poppins';
  font-weight: 400;
  src: url('/fonts/poppins/poppins-v23-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-weight: 600;
  src: url('/fonts/poppins/poppins-v23-latin-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-weight: 700;
  src: url('/fonts/poppins/poppins-v23-latin-700.woff2') format('woff2');
}


/* =========================
   GLOBAL
========================= */

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background-color: #000;
}

h1, h2, h3 {
  font-weight: 700;
  margin-bottom: 0.6em;
  margin-top: 0.4em;
  line-height: 1.2;
  color: #f5f5f5;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.2rem; }

p {
  color: #f5f5f5;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}


/* Mobile scaling */
@media (max-width: 768px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.1rem; }
}


/* =========================
   BUTTONS & LINKS
========================= */

.btn_url {
  display: inline-block;
  padding: 8px 35px;
  color: #14d100;
  border: 1px solid #14d100;
  border-radius: 5px;
  margin-top: 15px;
  margin-bottom: 45px;
  transition: all 0.3s;
}

.btn_url:hover {
  color: #DDDDDD;
  background-color: #14d100;
}

a.shiny-link {
  color: #c6c600;
  text-decoration: none;
  transition: color 0.3s;
}

a.shiny-link:hover {
  color: #FFFF00;
}


/* =========================
   HEADER / NAVBAR
========================= */

.top_area {
  height: 50vh;
  background-image: url('/images/DABCE_bg.jpg');
  background-size: cover;
}

.header_section {
  background: rgba(0, 0, 0, 0.5);
}

.navbar {
  padding: 15px 0;
}

.navbar-brand span {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
}

.navbar-brand img {
  width: 20px;
  margin-right: 5px;
}


.navbar-brand {
  display: flex;
  align-items: center;
}


.navbar-brand {
  height: 40px;
}

/* =========================
   HERO / SLIDER
========================= */

.slider_section {
  padding: 50px;
}

@media (max-width: 768px) {
  .slider_section {
    padding: 5px;
  }
}


/* =========================
   SECTIONS (COLOR BLOCKS)
========================= */

.section-olive {
  /* background-color: rgba(107, 142, 35, 1); */
  background-color: rgba(60, 80, 30, 0.65)
}

.section-dark {
  background-color: rgba(15, 15, 15, 1);
}

.section-navy {
  background: linear-gradient(180deg, #0a1f3d 0%, #0f2f5a 100%);
}


/* =========================
   FIELD USE TEXT (HEADER)
========================= */

.field-use-text {
  font-family: 'Black Ops One', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #FFD700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9);
  letter-spacing: 2px;
}


/* =========================
   GALLERY
========================= */

.gallery-img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: zoom-in;
}

.gallery-img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(0,0,0,0.6);
}


/* =========================
   MODAL (IMAGE EXPAND)
========================= */

#imageModal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.92);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#modalImage {
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
  animation: zoomIn 0.2s ease;
}

#modalCaption {
  color: #FFD700;
  margin-top: 15px;
  font-size: 1rem;
  max-width: 80%;
  text-align: center;
}

@keyframes zoomIn {
  from { transform: scale(0.95); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}


/* =========================
   FOOTER
========================= */

.footer_section {
  background-image: url('/images/nato-olive-camo.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #FFD700;
}



