/*HERO */

.hero {
  position: relative;
  width: 100%;
  min-height: 85vh;
  background-image: url('/pap2sn/imgs/download_hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-position-y: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual .overlay {
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.35));
}

.hero-visual h1 {
  position:relative;
  z-index:2;
  font-size:48px;
  color:#fff;
  margin: -23px;;
  padding:20px;
  text-align:center;
  letter-spacing:1px;
}


/* Animate hero image brightness and contrast for subtle glow */
@keyframes heroGlow {
  0% {
    filter: brightness(1) contrast(1) saturate(1);
  }
  50% {
    filter: brightness(1.15) contrast(1.2) saturate(1.2);
  }
  100% {
    filter: brightness(1) contrast(1) saturate(1);
  }
}



/*Imported Code for USE */
/* WRAPPER THAT FLOATS OVER HERO */
.downloads-wrapper {
    position: relative;
    width: 100%;
    margin-top: -390px;      /* 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: #ffffffbe;
    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;
}
