@charset "UTF-8";
/* CSS Document */

:root {
  --navy: #050A2B;
  --blue: #000BFF;
  --yellow: #F9A940;
  --white: #ffffff;
  --muted: rgba(255,255,255,.75);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 1rem;
  position: relative;
  z-index: 999;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .navbar {
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    margin-top: 0.75rem;
    background: rgb(249, 169, 64);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 0.9rem;
  }
	.nav-links a:hover {color:rgba(5, 10, 43, 0.92)}
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Arial Narrow Bold', Arial, sans-serif;
  background: var(--navy);
  color: white;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,10,43,.92), rgba(5,10,43,.65), rgba(5,10,43,.92)),
    url('images/fire-station.jpg') center center/cover no-repeat;
  opacity: .35;
  z-index: -2;
}
html{
  scroll-behavior: smooth;
}
/* =========================
   TOP ALERT BAR
========================= */

.top-alert-bar{
  position: relative;
  z-index: 50;

  background:
    linear-gradient(
      90deg,
      #b32020 0%,
      #d62828 50%,
      #b32020 100%
    );

  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(0,0,0,.35);

  box-shadow:
    0 8px 20px rgba(0,0,0,.25);

  overflow: hidden;
}

.top-alert-bar::before{
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      120deg,
      transparent 20%,
      rgba(255,255,255,.12) 50%,
      transparent 80%
    );

  animation: alertShine 5s linear infinite;
}

.top-alert-bar a{
  position: relative;
  z-index: 2;

  display: block;

  padding: 15px 20px;

  text-align: center;
  text-decoration: none;

  color: #fff;

  font-weight: 800;
  letter-spacing: .5px;

  transition:
    background .25s ease,
    transform .25s ease;
}

.top-alert-bar:hover{
  background:
    linear-gradient(
      90deg,
      #c62828 0%,
      #e63946 50%,
      #c62828 100%
    );
}

.top-alert-bar a:hover{
  transform: scale(1.01);
}

@keyframes alertShine{
  0%{
    transform: translateX(-100%);
  }

  100%{
    transform: translateX(100%);
  }
}

/* MOBILE */

@media (max-width:768px){

  .top-alert-bar a{
    padding: 14px 16px;
    font-size: .92rem;
    line-height: 1.5;
  }

}
.container {
  width: min(1200px, calc(100% - 40px));
  margin: auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(5,10,43,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  filter: drop-shadow(0 10px 25px rgba(0,0,0,.45));
}

.brand-text h1 {
  font-family: 'Times New Roman', serif;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: clamp(22px, 2.5vw, 42px);
  line-height: 1;
  color: var(--yellow);
}

.brand-text p {
  margin-top: 8px;
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}

nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
  transition: .2s ease;
}

nav a:hover {
  color: var(--yellow);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--navy);
  text-decoration: none;
  font-weight: 900;
  transition: .25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: #ffc15f;
}

.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 80px 0;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
  line-height: .9;
}

.hero-title .line1,
.hero-title .line2 {
  font-family: 'Times New Roman', serif;
  font-size: clamp(42px, 4.8vw, 72px);
  color: white;
  letter-spacing: -.03em;
  font-weight: 700;
  text-shadow: 0 4px 16px rgba(0,0,0,.4);
}

.hero-title .line3 {
  margin-top: 10px;
  font-family: 'Times New Roman', serif;
  font-size: clamp(20px, 2vw, 34px);
  color: var(--yellow);
  letter-spacing: .04em;
  font-weight: bold;
  text-shadow: 0 3px 12px rgba(0,0,0,.3);
}

.hero-content p {
  font-size: 20px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 35px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.secondary-btn {
  background: transparent;
  border: 2px solid rgba(255,255,255,.2);
  color: white;
}

.secondary-btn:hover {
  background: rgba(255,255,255,.08);
}

.station-photo {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 2px solid rgba(249,169,64,.5);
  box-shadow: 0 35px 90px rgba(0,0,0,.45);
  padding: 20px;
  background: rgba(5,10,43,.85);
}

.station-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: #050A2B;
}

.station-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5,10,43,.75));
}

.photo-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 3;
  background: rgba(5,10,43,.82);
  padding: 14px 18px;
  border-left: 5px solid var(--yellow);
  backdrop-filter: blur(12px);
  font-family: 'Times New Roman', serif;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 20px;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-bottom: 80px;
}

.feature-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px;
  padding: 30px;
  backdrop-filter: blur(10px);
  transition: .25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249,169,64,.5);
}

.feature-icon {
  font-size: 42px;
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--yellow);
  font-family: 'Times New Roman', serif;
}

.feature-card p {
  line-height: 1.7;
  color: rgba(255,255,255,.72);
}
.about-section {
  padding: 120px 0;
  position: relative;
}

.section-heading {
  margin-bottom: 50px;
  text-align: center;
}

.section-subtitle {
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 14px;
  margin-bottom: 14px;
  font-weight: bold;
}

.section-heading h2 {
  font-family: 'Times New Roman', serif;
  font-size: clamp(38px, 4vw, 60px);
  text-transform: uppercase;
  line-height: 1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 40px;
  margin-bottom: 100px;
}

.about-text {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 30px;
  padding: 40px;
  backdrop-filter: blur(12px);
}

.about-text p {
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255,255,255,.78);
  margin-bottom: 24px;
}

.apparatus-card {
  background: linear-gradient(
    180deg,
    rgba(249,169,64,.15),
    rgba(255,255,255,.04)
  );
  border: 1px solid rgba(249,169,64,.3);
  border-radius: 30px;
  padding: 40px;
}

.apparatus-card h3 {
  font-family: 'Times New Roman', serif;
  font-size: 34px;
  margin-bottom: 24px;
  color: var(--yellow);
}

.apparatus-card ul {
  list-style: none;
}

.apparatus-card li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.82);
  line-height: 1.6;
}

.firefighters-heading {
  margin-top: 40px;
}

.firefighters-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-bottom: 28px;
}

.firefighter-card {
  width: 260px;
}

.firefighter-card {
  background: rgba(255,255,255,.05);
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  transition: .25s ease;
  text-align: center;
  backdrop-filter: blur(10px);
}

.firefighter-card:hover {
  transform: translateY(-8px);
  border-color: rgba(249,169,64,.5);
}

.firefighter-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.firefighter-card h3 {
  margin-top: 24px;
  font-size: 28px;
  font-family: 'Times New Roman', serif;
}

.firefighter-card p {
  padding-bottom: 28px;
  margin-top: 8px;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
}

@media(max-width: 980px) {

  .about-grid {
    grid-template-columns: 1fr;
  }

  .firefighters-grid {
    grid-template-columns: 1fr;
  }

}
.events-section {
  padding: 100px 0;
}

.event-card {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 45px;
  align-items: start;

  background: rgba(255,255,255,.05);
  border: 1px solid rgba(249,169,64,.3);
  border-radius: 32px;

  padding: 40px;

  backdrop-filter: blur(12px);

  box-shadow:
    0 25px 70px rgba(0,0,0,.35);
}
.event-images {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.event-photo,
.clickable-flyer {
  width: 100%;
  display: block;

  border-radius: 24px;

  border: 1px solid rgba(255,255,255,.12);

  cursor: zoom-in;

  transition: .25s ease;
}

.event-photo:hover,
.clickable-flyer:hover {
  transform: scale(1.01);
}

.event-image img {
  width: 100%;
  display: block;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.12);
}

.event-content h3 {
  font-family: 'Times New Roman', serif;
  font-size: clamp(36px, 4vw, 58px);
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 22px;
}

.event-label {
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 12px;
}

.event-content p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,.78);
  margin-bottom: 20px;
}

.event-note {
  padding: 18px;
  border-left: 4px solid var(--yellow);
  background: rgba(249,169,64,.08);
  border-radius: 12px;
  font-size: 16px !important;
}

@media(max-width: 980px) {
 .event-card {
    grid-template-columns: 1fr;
    padding: 28px;
  }
}
.event-highlight {
  position: relative;

  background:
    linear-gradient(
      135deg,
      rgba(249,169,64,.95),
      rgba(255,193,95,.92)
    );

  color: var(--navy) !important;

  border-radius: 28px;

  padding: 34px;

  margin-bottom: 34px;

  overflow: hidden;

  box-shadow:
    0 20px 50px rgba(0,0,0,.28);

}

.event-highlight p {
  font-size: 28px;
  line-height: 1.5;

  font-weight: 900;

  text-transform: uppercase;

  letter-spacing: -.02em;

  margin: 0;

  color: var(--navy);
}
/* =========================
   LIGHTBOX
========================= */
.lightbox {
  display: none;
  position: fixed;
  z-index: 99999;
  inset: 0;
  background: rgba(0,0,0,.92);
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.lightbox-content {
  max-width: 95%;
  max-height: 95vh;
  border-radius: 14px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 52px;
  cursor: pointer;
}

.clickable-flyer {
  cursor: zoom-in;
}
.event-image {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.event-photo,
.clickable-flyer {
  width: 100%;
  display: block;

  border-radius: 24px;

  border: 1px solid rgba(255,255,255,.12);

  cursor: zoom-in;

  transition: .25s ease;
}

.event-photo:hover,
.clickable-flyer:hover {
  transform: scale(1.01);
}

/* =========================
   COMMUNITY SECTION
========================= */

.community-section {
  padding: 110px 0;
}

.community-intro {
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
}

.community-intro p {
  font-size: 20px;
  line-height: 1.8;
  color: rgba(255,255,255,.78);
}

.community-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 60px;
}

.community-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.1);
  cursor: zoom-in;
  transition: .25s ease;
}

.community-gallery img:hover {
  transform: scale(1.02);
  border-color: rgba(249,169,64,.5);
}

.community-events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.community-event-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  padding: 30px;
  backdrop-filter: blur(10px);
  transition: .25s ease;
}

.community-event-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249,169,64,.45);
}

.community-event-card h3 {
  font-family: 'Times New Roman', serif;
  font-size: 28px;
  color: var(--yellow);
  margin-bottom: 14px;
}

.community-event-card p {
  line-height: 1.75;
  color: rgba(255,255,255,.74);
}

@media(max-width: 980px) {
  .community-gallery,
  .community-events-grid {
    grid-template-columns: 1fr;
  }
}/* =========================
   JOIN OUR TEAM SECTION
========================= */

.join-team-section{
  padding: 100px 20px;

  /* slightly different tone from the rest of the site */
  background:
    linear-gradient(
      180deg,
      #1f242b 0%,
      #171b20 100%
    );

  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.join-team-overlay{
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.join-team-section h2{
  color: var(--light);
  margin-bottom: 20px;
}

.join-lead{
  max-width: 850px;
  margin: 0 auto 50px;
  color: rgba(255,255,255,.82);
  line-height: 1.8;
}

.join-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
  gap: 28px;
  margin-bottom: 45px;
}

.join-card{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 22px;
  padding: 35px;
  text-align: left;

  backdrop-filter: blur(6px);

  box-shadow:
    0 10px 30px rgba(0,0,0,.25);

  transition:
    transform .25s ease,
    border-color .25s ease,
    background .25s ease;
}

.join-card:hover{
  transform: translateY(-4px);

  border-color: rgba(255,255,255,.22);

  background: rgba(255,255,255,.08);
}

.join-card h3{
  color: var(--red);
  margin-bottom: 18px;
}

.join-card p,
.join-card li{
  color: rgba(255,255,255,.86);
  line-height: 1.8;
}

.join-card ul{
  padding-left: 20px;
}

.join-cta{
  max-width: 850px;
  margin: 0 auto;
}

.join-cta p{
  color: rgba(255,255,255,.88);
  line-height: 1.8;
  margin-bottom: 28px;
}

/* CTA BUTTON */

.join-button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  background: linear-gradient(
    135deg,
    var(--red),
    #d62828
  );

  color: #fff;
  padding: 18px 38px;
  border-radius: 999px;

  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;

  font-weight: 800;
  font-size: .95rem;

  border: 2px solid rgba(255,255,255,.08);

  box-shadow:
    0 10px 25px rgba(0,0,0,.35),
    0 0 18px rgba(214,40,40,.18);

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease;
}

.join-button:hover{
  transform: translateY(-4px);

  background: linear-gradient(
    135deg,
    #e63946,
    var(--red)
  );

  box-shadow:
    0 16px 35px rgba(0,0,0,.4),
    0 0 24px rgba(214,40,40,.35);
}

.join-button:active{
  transform: translateY(-1px);
}

/* MOBILE */

@media (max-width:768px){

  .join-team-section{
    padding: 75px 18px;
  }

  .join-card{
    padding: 28px;
  }

  .join-button{
    width: 100%;
    text-align: center;
  }

}
/* =========================
   EMERGENCY STRIP
========================= */

.emergency-strip{
  background:
    linear-gradient(
      90deg,
      #8f1717 0%,
      #b32020 50%,
      #8f1717 100%
    );

  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(0,0,0,.35);

  padding: 16px 20px;
}

.emergency-content{
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  color: #fff;
  font-weight: 700;
  letter-spacing: .4px;
}

.emergency-text strong{
  text-transform: uppercase;
}

.non-emergency-text{
  opacity: .92;
}


/* =========================
   FOOTER
========================= */

footer{
  background: #111418;

  padding:
    45px 20px
    35px;

  text-align: center;

  border-top: 1px solid rgba(255,255,255,.05);
}

.footer-logo{
  width: 90px;
  height: auto;

  margin-bottom: 18px;

  opacity: .95;

  filter:
    drop-shadow(0 6px 16px rgba(0,0,0,.35));
}

footer p{
  margin: 0;

  color: rgba(255,255,255,.72);

  letter-spacing: .5px;
}


/* MOBILE */

@media (max-width:768px){

  .emergency-content{
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .footer-logo{
    width: 75px;
  }

}
@media(max-width: 980px) {
  .hero,
  .features {
    grid-template-columns: 1fr;
  }

  nav {
    display: none;
  }

  .hero-content h2 {
    font-size: 64px;
  }
}