/*HERO */


.hero {
  position: relative;
  width: 100%;
  height: 85vh;

  background-image: url("/pap2sn/imgs/cosmic_cv.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero h1 {
  position: relative;
  color: #fff;
  font-size: 48px;
  z-index: 2;
}


/*Imported Code for USE */
/* WRAPPER THAT FLOATS OVER HERO */
.downloads-wrapper {
    position: relative;
    width: 100%;
    margin-top: -190px;      /* pull up onto hero image */
    z-index: 20;             /* appear ABOVE hero image */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

/* PANELS */
.downloads-panel {
    width: 85%;
    max-width: 1150px;
    background: #fff;
    padding: 40px 45px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* Title styling */
.downloads-title {
    text-align: center;
    color: #e63946;
    font-size: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.downloads-desc {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 25px auto;
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

/* Accordion structure */
.download-accordion {
    margin-top: 20px;
}

.download-item {
    margin-bottom: 12px;
}

.download-btn {
    width: 100%;
    padding: 15px 18px;
    text-align: left;
    background: #f5f5f5;
    border: none;
    outline: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.download-btn:hover {
    background: #ebebeb;
}

.download-content {
    display: none;
    padding: 12px 15px;
    background: #ffffff;
    border-left: 3px solid #e63946;
    margin-top: 5px;
    border-radius: 0 0 6px 6px;
}

/* DOWNLOAD APP CARD */
.app-box {
    text-align: center;
    margin-top: 25px;
}

.app-box img {
    width: 180px;
}

.download-app-btn {
    display: block;
    margin: 25px auto 0 auto;
    padding: 12px 28px;
    border: none;
    background: #e63946;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
}

/* PANEL 2 SPACING */
.second-panel {
    margin-top: -20px;
}

/*DEPARTMENT PERSONNEL */

.personnel-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-top: 20px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  text-align: center;
  width: 260px; /* Ensures equal width for all personnel cards */
}
.circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 15px auto;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #ddd; /* fallback */
  border: 3px solid #e74c3c; /* optional highlight */
}
body {
    background-color: #f9f9f9;
}