.caps {
  text-transform: uppercase;
}

@font-face {
  font-family: 'FutoSans-Bold';
  src: url('./fonts/FutoSans-Bold.ttf') format('truetype');
}

.intro{
    max-width: auto;
    margin: 0 auto;
    padding: 20px;
}

.intro h1 {
  font-family: "FutoSans-Bold";
  font-size: 36pt;
  color: #ccc;
  margin: 5px;
}

h1 {
    font-family: "FutoSans-Bold";
    font-size: 72pt;
    margin: 5px;
}

h2{
  margin: 00px;
}

p{
  margin: 30px;
}

/* ================================
   GLOBAL STYLES
   ================================ */

/* Navigation Panel */
.nav-panel {
    width: 100%;
    background: rgba(255,255,255,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(0px);
    padding: 0px 0px 0px 0px;
    box-sizing: 100%;
    position: fixed;
    z-index: 9999; /* keeps it above slider */
}

/* Page background image */
body {
  font-family: Arial, sans-serif;
  color: #ccc;
  margin: 0px;
  padding: 0px;
  background-image: url("images/concrete.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.page-content {
  padding-top: 200px; 
}

/* Navigation bar with background image */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*background-image: url("images/background_s.png");
  background-size: cover;
  background-position: center;
  padding: 0px 20px;
  font-family: "FutoSans-Bold";*/
}

nav .logo {
  height: 180px;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;   /* allows items to move to the next line if needed */
  gap: 0px;         /* spacing between tabs */
  padding: 0;
  margin: 0;
}

nav ul li a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-weight: lighter;
  font-size: 1.8rem;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(0px);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: inset 0 0 10px rgba(255,255,255,0.1);
  padding: 8px 24px;
  border-radius: 0px; /* match engineer-box */

 /* rounded top corners only */
  position: relative;
  top: 0px;                         /* sits slightly lower, like a tab */
}

/* Hover effect to match Submit Case button glow */
nav ul li a:hover {
  color: #066affe0;
  text-shadow:
    0 0 6px rgba(3, 83, 255, 0.795),
    0 0 12px rgba(3, 83, 255, 0.95),
    0 0 24px rgba(3, 83, 255, 0.85),
    0 0 48px rgba(3, 83, 255, 0.75),
    0 0 72px rgba(3, 83, 255, 0.65);
  background: rgba(0, 0, 0, 0.75);
  filter: drop-shadow(0 0 10px #066affe0);
  /*top: 0; /* rises up on hover */
}


/* Neon blue glow on hover */
nav ul li a:hover {
  color: #0062f5;
  text-shadow:
    0 0 4px rgba(3, 83, 255, 0.9),
    0 0 8px rgba(3, 83, 255, 0.8),
    0 0 16px rgba(3, 83, 255, 0.7),
    0 0 32px rgba(3, 83, 255, 0.6),
    0 0 48px rgba(3, 83, 255, 0.5);
  animation: neonPulse 1.5s infinite alternate;
}

@keyframes neonPulse {
  from {
    text-shadow:
      0 0 4px rgba(3, 83, 255, 0.9),
      0 0 8px rgba(3, 83, 255, 0.8),
      0 0 16px rgba(3, 83, 255, 0.7),
      0 0 32px rgba(3, 83, 255, 0.6),
      0 0 48px rgba(3, 83, 255, 0.5);
  }
  to {
    text-shadow:
      0 0 6px rgba(3, 83, 255, 1),
      0 0 12px rgba(3, 83, 255, 0.9),
      0 0 20px rgba(3, 83, 255, 0.8),
      0 0 40px rgba(3, 83, 255, 0.7),
      0 0 60px rgba(3, 83, 255, 0.6);
  }
}

/* Floating "Submit Case" button in nav */
nav button {
    background: rgba(255, 255, 255, 0.06);
    color: white;
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    margin: 0px 150px 0 0;
    padding: 12px 22px;
    border-radius: 0px;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

/* Neon green glow on hover */
nav button:hover {
  color: #00ff66;
  text-shadow:
    0 0 6px rgba(0, 255, 102, 1),
    0 0 12px rgba(0, 255, 102, 0.95),
    0 0 24px rgba(0, 255, 102, 0.85),
    0 0 48px rgba(0, 255, 102, 0.75),
    0 0 72px rgba(0, 255, 102, 0.65);
  background: rgba(0, 0, 0, 0.75);
  filter: drop-shadow(0 0 10px #00ff66);
}

.nav-inquiries {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    padding: 12px 22px;
    border-radius: 6px;
    color: white;
    font-size: 1.15rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .nav-inquiries:hover {
        background: rgba(0,0,0,0.75);
        color: #00ff66;
        filter: drop-shadow(0 0 10px #00ff66);
    }

/* 🔲 Shared Form Wrapper */
.form-wrapper {
    background: rgba(0, 0, 0, 0.50);
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    margin: 20px auto;
    position: relative;
    z-index: 99999;
}

    /* 🏷️ Labels */
    .form-wrapper label {
        display: block;
        margin-bottom: 10px;
        color: #fff;
        font-weight: bold;
    }

    /* ✏️ Inputs, Textareas, Selects */
    .form-wrapper input,
    .form-wrapper textarea,
    .form-wrapper select {
        width: 100%;
        padding: 8px;
        margin-top: 4px;
        margin-bottom: 10px;
        border: none;
        border-radius: 4px;
        box-sizing: border-box;
    }

    /* ✅ Submit Buttons */
    .form-wrapper button[type="submit"] {
        background: rgba(0, 0, 0, 0.6);
        color: #00ff66;
        font-weight: bold;
        border: none;
        padding: 10px 14px;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top: 15px;
    }

        .form-wrapper button[type="submit"]:hover {
            color: #00ff66;
            text-shadow: 0 0 6px rgba(0, 255, 102, 1), 0 0 12px rgba(0, 255, 102, 0.95), 0 0 24px rgba(0, 255, 102, 0.85), 0 0 48px rgba(0, 255, 102, 0.75), 0 0 72px rgba(0, 255, 102, 0.65);
            background: rgba(0, 0, 0, 0.75);
            filter: drop-shadow(0 0 10px #00ff66);
        }



/* 🟩 Section Toggle Buttons */
.section-toggle {
    width: 100%;
    text-align: left;
    padding: 10px 14px;
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: #00ff66;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .section-toggle:hover {
        background: rgba(0, 0, 0, 0.75);
        text-shadow: 0 0 6px rgba(0, 255, 102, 1), 0 0 12px rgba(0, 255, 102, 0.95), 0 0 24px rgba(0, 255, 102, 0.85), 0 0 48px rgba(0, 255, 102, 0.75), 0 0 72px rgba(0, 255, 102, 0.65);
        filter: drop-shadow(0 0 10px #00ff66);
    }

/* 📎 Dropzones */
.dropzone {
    border: 2px dashed #aaa;
    padding: 20px;
    text-align: center;
    margin-bottom: 10px;
    cursor: pointer;
    transition: 0.2s;
}

    .dropzone.dragover {
        border-color: #0077ff;
        background: #eef6ff;
    }

/* ❌ Invalid Fields */
.invalid {
    border: 2px solid red;
}

/* ✅ Success + Error Messages */
.success-message {
    margin-top: 15px;
    font-weight: bold;
    text-align: center;
    color: #00ff66;
}

    .success-message.error {
        color: #ff3333;
    }

/* ✅ Form Submission Message */
#successMessage {
    display: block;
    margin-top: 10px;
    color: #13906a;
    text-shadow: 0 2px 8px rgba(255,255,255,0.7);
    font-weight: 600;
    text-align: center;
}

/* 🧊 Floating Inquiries Button */
.floating-inquiries {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 9999;
    background: rgba(0,0,0,0.75);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    border-radius: 6px;
    padding: 14px 26px;
    font-size: 1.2rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 0 8px rgba(0,255,102,0.6), 0 0 16px rgba(0,255,102,0.5), 0 0 32px rgba(0,255,102,0.4);
    transition: box-shadow 0.25s ease;
}

    .floating-inquiries * {
        pointer-events: auto;
    }

/* The important part */
.floating-inquiries-container {
    pointer-events: none;
}


.floating-inquiries:hover {
    background: rgba(0,255,102,0.75);
    border-color: rgba(255,255,0,0.25);
}

/* 🕶️ Utility */
.hidden {
    display: none !important;
}

/* Text panel style, uniform transparent background */
.text-panel {
    background: rgba(0, 0, 0, 0.6); /* same as nav bar */
    padding: 20px;
    border-radius: 8px;
    color: #ccc;
}

/* Hero Text Overlay */

.hero-overlay {
    position: absolute;
    bottom: 8%;
    left: 5%;
    transform: translateY(0);
    z-index: 10; /* ensures it stays above slides */
    color: white;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
    max-width: 600px;
    pointer-events: none; /* prevents blocking nav arrows */
}

.hero-overlay h1 {
    font-size: 2.5rem;
    margin: 0 0 0px 30px;
}

.hero-overlay p {
    font-size: 1.2rem;
    margin-top: 0px;
    margin-bottom: 10px;
}


/* Slideshow */
.slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: auto;
  overflow: hidden;
  height: 800px;
}

.slides {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  width: 90%;
  height: 90%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  object-fit: cover;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slider-box {
    max-width: 100%;
    margin: 0px auto;
    padding: 0;
    position: relative;
}
/* Full-width engineered box specifically for the slider */
.slider-full {
    width: 100%;
    max-width: 100%;
    padding: 0;
    border-radius: 0;
    box-sizing: border-box;
}
.slider-full p {
    color: white;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}
.slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 10px;
  font-size: 24px;
  cursor: pointer;
  z-index: 2;
}

.slider-arrow.prev { left: 10px; }
.slider-arrow.next { right: 10px; }

.intro {
  padding: 20px;
}

.modal {
  position: fixed;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 20px;
  border: 2px solid #ccc;
  z-index: 1000;
}

.hidden {
  display: none;
}

/* Dots */
.dots {
  text-align: center;
  position: absolute;
  bottom: 15px;
  width: 100%;
  z-index: 2;
}

.dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.dots span.active {
  background: #333;
}

.slider:hover {
  animation-play-state: paused;
}
/* ================================
   HOMEPAGE ENGINEERED LAYOUT SYSTEM
   ================================ */

/* Full-width section wrapper */
.home-section {
    width: 100%;
    padding: 40px 0;
    position: relative;
    overflow: hidden; /* ensures floating icons don't cause scrollbars */
}

/* Wide engineered content box */
.engineer-box {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 50px 60px;  
    border-radius: 6px;
    backdrop-filter: blur(4px);
    max-width: 1400px;
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

/* Full-width engineered box specifically for the slider */
.slider-box.engineer-box {
    width: 90%;
    max-width: 90%;
    padding: 50px 60px; /* no padding so slider fills the box */
    border-radius: 0; /* optional: makes it feel like a hero panel */
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    margin: 20px auto 80px auto;
    box-sizing: border-box;
}

/* Alignment variations */
/* Full-width engineered slider box */
.slider-full {
    width: 100%;
    max-width: 100%;
    padding: 0;
    border-radius: 0;
    box-sizing: border-box;
}

/* Small Engineer Box for h3*/
.engineer-box.small-box {
    padding: 0px 14px;
    max-width: 60%;
    margin-bottom: 0px;
}

/* Small Engineer Box for h3*/
.engineer-box.contact {
    padding: 30px 14px;
    max-width: 60%;
    margin-bottom: 0px;
}

/* Make text follow alignment */
.home-section.left .engineer-box p {
    text-align: left;
    margin-left: 10%;
    margin-right: auto;
}

.home-section.right .engineer-box p {
    text-align: right;
    margin-left: auto;
    margin-right: 10%;
}

.home-section.full .engineer-box p {
    text-align: center;
    margin: 0 auto;
}
.home-section.left .engineer-box h2 {
    text-align: left;
    margin-left: 10%;
}

.home-section.right .engineer-box h2 {
    text-align: right;
    margin-right: 10%;  
}

.home-section.full .engineer-box h2 {
    text-align: center;
}

.home-section.left .engineer-box h3 {
    text-align: left;
    margin-left: 10%;
}

.home-section.right .engineer-box h3 {
    text-align: right;
    margin-right: 10%;
}

.home-section.full .engineer-box h3 {
    text-align: center;
}

/* Accent bar */
.accent-bar {
    width: 120px;
    height: 6px;
    background: #003366;
    margin-bottom: 25px;
}

/* Typography inside engineered boxes */
.engineer-box h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #003366;
}

.engineer-box h3 {
    font-size: 2.6rem;
    
    color: #FFFFFF;
    font-family: "FutoSans-Bold";
}

.engineer-box p {
    font-size: 1.25rem;
    line-height: 1.75;
    color: white;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
    max-width: 1100px;
}

.section-divider {
    width: 120px;
    height: 3px;
    background: #003366;
    margin: 10px 0 25px 0;
}

/* LEFT */
.home-section.left .accent-bar {
    margin-left: 10%;
    margin-right: auto;
}

/* RIGHT */
.home-section.right .accent-bar {
    margin-left: auto;
    margin-right: 10%;
}

/* FULL */
.home-section.full .accent-bar {
    margin-left: auto;
    margin-right: auto;
}

/* Floating engineering icons 
.floating-icon {
    position: absolute;
    opacity: 0.08;
    width: 200px;
    height: auto;
    z-index: 1;
    pointer-events: none;
}*/

.icon-left {
    left: -120px;
    top: 25%;
}

.icon-right {
    right: -120px;
    top: 40%;
}

.icon-top {
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
}

/* Intro header */
.intro-header {
    text-align: center;
    padding: 20px 20px 20px;
}

    .intro-header h1 {
        font-size: 3.8rem;
        color: #003366;
        text-shadow: 0 2px 8px rgba(255,255,255,0.7);
    }

/* MOBILE RESPONSIVENESS */
@media (max-width: 900px) {
    .engineer-box {
        padding: 40px;
    }

    .home-section.left .engineer-box,
    .home-section.right .engineer-box {
        margin: 0 auto;
        text-align: left;
    }

    .floating-icon {
        display: none; /* hide icons on small screens for clarity */
    }
}

@media (max-width: 600px) {
    .engineer-box h2 {
        font-size: 2rem;
    }

    .engineer-box p {
        font-size: 1.1rem;
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }

    .hero-overlay p {
        font-size: 1rem;
    }
}

/* Flip Card Grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px,1fr));
  gap: 25px;
  max-width: 1800px;
  margin: 0px auto 120px auto;
}

section > .card-grid {
    margin-top: 0;
}

/* Tablet */
@media (max-width: 900px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

.flip-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    border-radius: 6px;
    background-color: transparent;
    perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 380px; /* uniform height for all cards */
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 8px;
  overflow: hidden;
}

/* Front of card */
.flip-card-front {
    background: rgba(255,255,255,0.04);
    color: #003366; /* matches your engineering blue */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.flip-card-front img {
  width: 100%;
  height: 85%; /* consistent image height */
  object-fit: fill;
}

.flip-card-front h3 {
  margin: 10px 0;
  font-family: "FutoSans-Bold";
  color: #ffffff; /* neon green */
  font-size: 1.5rem;
}

/* Back of card */
.flip-card-back {
    background: rgba(255,255,255,0.08);
    color: #003366; /* clean readable dark text */
    text-shadow: 0 2px 8px rgba(white);
    border-top: 1px solid rgba(255,255,255,0.15);
    transform: rotateY(180deg);
    padding: 0px;
    font-size: 2rem;
    font-family: FutoSans-Bold;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
}

.flip-card-back ul 
.flip-card-back p {
  margin: 0;
  padding-left: 15px 20px;
  list-style-type: square;
  line-height: 1.8;
}

/******************************
**      STAFF PAGE STUFF     **
******************************/
.staff-card {
  display: flex;
  align-items: flex-start;
  background: rgba(0,0,0,0.6);
  border-radius: 8px;
  padding: 20px;
  gap: 20px;
  margin-bottom: 30px;
  margin-left: 90px;
  margin-right: 90px;
}

.staff-photo {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #ffffff; /* white border */
}

.staff-info {
  flex: 1;
  color: #fff; /* white font */
}

.staff-info h3 {
  margin: 0;
  font-family: "FutoSans-Bold";
  font-size: 1.5em;
  color: #ffffff; /* white name */
}

.staff-title {
  font-style: italic;
  margin: 5px 0 15px;
  color: #ccc; /* softer white for title */
}

.staff-bio {
  font-size: 0.95em;
  line-height: 1.5;
  color: #fff; /* white bio text */
}

.staff-photo {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #ffffff; /* white border */
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.staff-photo:hover {
  box-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff, 0 0 40px #ffffff;
  transform: scale(1.05);
}

/* Existing staff card styles assumed... */

/* Bottom-centered arrow toggle */
.bio-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 16px;
  background: transparent;
  border: none;
  color: #fff; /* white font */
  cursor: pointer;
  padding: 10px 0;
  position: relative;
}

.bio-toggle .toggle-label {
  font-size: 0.95em;
  color: #ccc; /* softer white */
}

/* Arrow */
.bio-toggle .arrow {
  width: 12px;
  height: 12px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
  transition: transform 0.25s ease, filter 0.25s ease;
  filter: drop-shadow(0 0 4px #fafffc);
}

/* Expanded state — rotate arrow down */
.bio-toggle[aria-expanded="true"] .arrow {
  transform: rotate(225deg);
}

/* Collapsible container (smooth reveal) */
.bio-collapse {
  overflow: hidden;
  transition: grid-template-rows 0.35s ease;
  display: grid;
  grid-template-rows: 0fr; /* collapsed */
}

.bio-collapse .bio-content {
  min-height: 0;
  color: #fff; /* white full bio text */
  padding-top: 10px;
}

/* Expanded state via helper class */
.bio-collapse.expanded {
  grid-template-rows: 1fr; /* expanded */
}

/* Optional subtle divider above collapsed content */
.bio-collapse .bio-content {
  border-top: 1px solid rgba(255,255,255,0.12);
}

/* Hover feedback for toggle */
.bio-toggle:hover .arrow {
  filter: drop-shadow(0 0 6px #ffffff);
}
.bio-toggle:hover .toggle-label {
  color: #fff;
}

/* ================================
   STAFF PAGE ENGINEERING AESTHETIC
   ================================ */

/* Wrap the entire staff card in an engineering box */
.staff-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    border-radius: 6px;
    padding: 40px;
    max-width: 1600px;
    margin: 40px auto;
    color: #222; /* readable text */
}

/* Staff photo */
.staff-photo {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.85);
    margin-bottom: 20px;
}

/* Staff name */
.staff-card h3 {
    font-size: 1.8rem;
    color: #003366;
    margin-bottom: 10px;
}

/* Staff title */
.staff-title {
    font-size: 1.2rem;
    color: #003366;
    margin-bottom: 20px;
}

/* Staff short bio */
.staff-bio {
    color: #222;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Bio toggle button (updated to match engineering aesthetic) */
.bio-toggle {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    border-radius: 6px;
    padding: 10px 18px;
    width: auto;
    margin: 20px auto 0 auto;
    color: #003366;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .bio-toggle:hover {
        background: rgba(255,255,255,0.12);
    }

    /* Arrow color update */
    .bio-toggle .arrow {
        border-right: 2px solid #003366;
        border-bottom: 2px solid #003366;
        filter: none;
    }

/* Collapsible bio container */
.bio-collapse {
    overflow: hidden;
    transition: grid-template-rows 0.35s ease;
    display: grid;
    grid-template-rows: 0fr;
    margin-top: 20px;
}

    /* Expanded state */
    .bio-collapse.expanded {
        grid-template-rows: 1fr;
    }

    /* Full bio content */
    .bio-collapse .bio-content {
        min-height: 0;
        padding-top: 20px;
        color: #222;
        border-top: 1px solid rgba(255,255,255,0.15);
        line-height: 1.6;
    }

/*Content Container*/
.content-container {
    max-width: auto;
    margin: 0 auto;
    padding: 20px;
}

/*Map Container*/
.map-container {
    display: flex;
    justify-content: center;
    margin: 20px 20px;
}


/* Footer */
.site-footer {
    background: rgba(0, 0, 0, 0.6);
    color: #ccc;
    padding: 40px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-family: "FutoSans-Bold", Arial, sans-serif;
}

.footer-content {
    display: flex;
    justify-content: center; /* centers both columns */
    gap: 80px; /* equal spacing between them */
    flex-wrap: wrap;
    text-align: left;
}

.footer-section {
    min-width: 220px; /* keeps columns consistent */
}

    .footer-section h3 {
        margin-bottom: 10px;
        color: #fff;
        font-size: 1.3rem; /* matches both sides */
    }

    .footer-section ul,
    .footer-section p {
        margin: 0;
        padding: 0;
        font-size: 1rem; /* consistent text size */
        line-height: 1.6; /* matching spacing */
    }

    .footer-section ul {
        list-style: none;
    }

        .footer-section ul li {
            margin-bottom: 6px;
        }

    .footer-section a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer-section a:hover {
            color: #fff;
        }

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* 🟩 Expandable Sections */
.section {
    display: none;
    padding: 15px 0;
    
    background: rgba(0, 0, 0, 0.3);
    margin-top: 10px;
    border-radius: 6px;
}

    .section.open {
        display: block;
    }