/* ================================
   ENFORCEMENT DIVISION STYLING
   Matches Corrections Aesthetic
   ================================ */

/* --- Banner --- */
.enforcement-banner {
  position: relative;
  width: 100%;
  height: 55vh;
  background: url("../../images/SWAT 002.JPG") no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.enforcement-banner .banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.enforcement-banner .banner-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 1rem 2rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.enforcement-banner h2 {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 3rem;
  margin-bottom: 0.75rem;
  letter-spacing: 1px;
}

.enforcement-banner .subtitle strong {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #fff !important;
}

/* =========================
   Banner Buttons
========================= */
.banner-btns-section {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0 !important;
  padding-bottom: 0;
}

.banner-btns {
  flex: 0 0 15%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);  /* 6 per row */
  gap: 5rem;
  justify-items: center;
  text-align: center;
  justify-content: center;
  align-items: center;
  background-color: #1F2A44;
  color: #000;
  z-index: 1;
  padding: 2rem;
  margin: 0 auto;
}

.banner-btns .banner-button {
  border: none;
  background: transparent;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1rem;
  font-weight: 900;
  gap: .5rem;
  text-decoration: none;
  margin: 0 auto;
  padding: 0;
  transition: all 0.01s ease-out;
}

.banner-btns .banner-button i {
  font-size: 3rem;
  line-height: 1;
  transition: transform 2s ease-in-out;
}

.banner-btns .banner-button:hover {
  transform: translateY(-5px);
  color: #78B1DC;
}

/* Mobile */
@media (max-width: 768px) {
  .banner-content { padding: 1rem 1.5rem; }
  .banner-content h2 { font-size: 2rem; line-height: 1.3; }
  .banner-content .subtitle { font-size: 1rem; line-height: 1.4; margin-bottom: 1.5rem; }

  .banner-btns {
    gap: 1.5rem;
    padding-top: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
  }

  .banner-btns .banner-button {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    border: 2px solid #2E5A88;
    padding: 1rem;
    width: 12rem;
    height: 12rem;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    border-radius: .5rem;
  }

  .banner-btns .banner-button:hover {
    background-color: #78B1DC;
    color: #1F2A44;
  }

  .banner-btns .banner-button i { font-size: 5rem; }
}

/* Extra small mobile */
@media (max-width: 560px) {
  #banner {
    height: 60vh;
  }

  .banner-btns .banner-button {
    font-size: .9rem;
    width: 30%;
    height: auto;
  }
  .banner-btns .banner-button i { font-size: 2rem; }
}

/*==================================
  LAYOUT + CONTENT
===================================*/
#main {
    background-color: white !important;
    margin-top: 0;
    padding-top: 0;
}

/* --- Layout --- */
.enforcement-layout {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f4f7fb;
}

.enforcement-container {
  max-width: 75vw;
  margin: 0 auto;
}

/* --- Content Cards --- */
.content-card {
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  padding: 2rem 2.5rem;
  margin-bottom: 2.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.content-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}

/* --- Section Titles --- */
.section-title {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  border-bottom: 3px solid #2E5A88;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: #1F2A44 !important;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.section-title i {
  color: #2E5A88;
  font-size: 1.5rem;
}

/* --- Text Styling --- */
.enforcement-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 1.25rem;
}

/* --- Image Styling --- */
.image.fit {
  display: block;
  width: 80%;
  border-radius: 0.5rem;
  overflow: hidden;
  margin: 1rem auto;
}

.image.fit img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  transition: transform 0.3s ease;
}

.image.fit img:hover {
  transform: scale(1.02);
}

.sidebar-profile {
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
    border-radius: .5rem;
    padding: .25rem;
}

.sidebar-profile img {
  width: 10rem;
  height: auto;
}

.sidebar-profile .img-description {
    width: 100%;
    color: #1F2A44;
    font-size: 1rem;
    text-align: center !important;
    left: 0;
    padding: 0.5rem 0 0 0;
    margin: 0;
}

/* ============================
   ABOUT SECTION LAYOUT
============================= */

.about-flex {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 1rem;
}

.about-left {
  flex: 0 0 220px;        /* fixed width image column */
  text-align: center;
}

.about-left img {
  width: 100%;
  max-width: 220px;
  border-radius: 0.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.about-left .img-description {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #1F2A44;
}

.about-right {
  flex: 1;                /* take remaining width */
}

.about-right p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
}

/* Mobile stack */
@media (max-width: 768px) {
  .about-flex {
    flex-direction: column;
    text-align: center;
  }

  .about-left {
    margin-bottom: 1rem;
    width: 100%;
  }

  .about-right {
    width: 100%;
    text-align: left;
  }
}



