/* HERO SECTION */
.banner {
  height: 80vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    var(--banner-img) no-repeat center center;
  background-size: cover;
  position: relative;
  background-position: center;
}


@media (min-width: 768px) {
  .banner {
    min-height: 800px;
  }
}

.banner h1 {
  font-family: "Kanit";
  color: RGBA(255, 255, 255, 0);
  font-size: 600%;
  text-shadow: 0px 1px 3px RGBA(0, 0, 0, 0);
  line-height: 0.8;
  font-weight: normal;
  font-style: normal;
  text-decoration: none;
  text-align: inherit;
  letter-spacing: 10px;
  word-spacing: normal;
  text-transform: uppercase;
  font-weight: 500;
  -webkit-text-stroke-width: 2px;
  stroke-width: 2px;
  -webkit-text-stroke-color: #ffffff;
  stroke: #ffffff;
  margin-bottom: 30px;
}

.banner p {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
  .banner h1 {
    font-size: 500%;
  }
}

@media (max-width: 991px) {
  .banner h1 {
    font-size: 400%;
    letter-spacing: 8px;
  }

  .banner p {
    font-size: 1.3rem;
  }
}
@media (max-width: 768px) {
  .banner {
    height: 70vh;
  }
  .banner h1 {
    font-size: 300%;
    letter-spacing: 5px;
    line-height: 30px;
  }

  .banner p {
    font-size: 1.2rem;
  }
}
@media (max-width: 576px) {
  .banner h1 {
    font-size: 250%;
    letter-spacing: 3px;
  }

  .banner p {
    font-size: 1.1rem;
  }
}

@media (max-width: 400px) {
  .banner h1 {
    font-size: 200%;
  }

  .banner p {
    font-size: 1rem;
  }
}

/* card container */
.sh-card {
  position: relative;
  height: 360px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(15, 20, 25, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: #000;
}

/* background image (cover) */
.sh-card-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  filter: brightness(0.68);
  transition: transform 0.7s cubic-bezier(0.2, 0.9, 0.2, 1), filter 0.35s ease;
}

/* permanent dark gradient at bottom so text always readable 
.sh-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 55%; 
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 10%,
    rgba(0, 0, 0, 0.68) 60%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 1;
  pointer-events: none;
}*/

/* badge top-right */
.sh-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  background: #c8232c;
  color: #fff;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
  letter-spacing: 0.2px;
  white-space: nowrap;
}

/* content sits above image */
.sh-card-body {
  position: relative;
  z-index: 4;
  padding: 26px;
}

/* Title, subtitle and CTA — always visible */
.sh-card-title {
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
  letter-spacing: 0.6px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
  text-transform: uppercase;
}

.sh-card-sub {
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 0.9rem;
  font-size: 0.95rem;
  line-height: 1.25;
  max-width: 95%;
}

/* CTA */
.sh-cta {
  color: #2d8fe6;
  font-weight: 800;
  text-decoration: none;
  font-size: 0.95rem;
  z-index: 5;
  text-transform: uppercase;
}

/* hover & focus: only image zoom + elevated shadow (no text animation) */
.sh-card:hover,
.sh-card:focus {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(8, 15, 20, 0.22);
  outline: none;
}

.sh-card:hover .sh-card-media,
.sh-card:focus .sh-card-media {
  transform: scale(1.06) translateY(-3px);
  filter: brightness(0.62);
}

/* keyboard focus visible */
.sh-card:focus {
  box-shadow: 0 0 0 4px rgba(45, 143, 230, 0.1),
    0 20px 44px rgba(8, 15, 20, 0.22);
}

/* responsive adjustments */
@media (max-width: 992px) {
  .sh-card {
    height: 320px;
  }
}
@media (max-width: 768px) {
  .sh-card {
    height: 320px;
  }
}
@media (max-width: 576px) {
  .sh-card {
    height: 300px;
    transform: none;
    box-shadow: 0 12px 28px rgba(8, 15, 20, 0.18);
  }

  .sh-card-body {
    padding: 18px;
  }
  .sh-card-title {
    font-size: 1rem;
  }
  .sh-card-sub {
    font-size: 0.92rem;
  }
  .sh-badge {
    padding: 0.28rem 0.7rem;
    font-size: 0.78rem;
  }
}
/* profile section */

/* overall section */
.profile-section {
  background: #ffffff;
  color: #444;
  font-family: "Helvetica Neue", Arial, sans-serif;
  margin-top: 50px;
}

/* image */
.profile-img {
  display: block;
  height: 450px;
  object-fit: cover;
  width: 90%;
}

/* name and title */
.profile-name {
  font-size: 44px;
  letter-spacing: 1px;
  font-weight: 700;
  color: #464646;
  margin-bottom: 0;
}

.profile-title {
  font-size: 14px;
  font-weight: 600;
  color: #7a7a7a;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* intro (first highlighted paragraph) */
.profile-intro {
  color: #444;
  font-size: 19px;
  line-height: 1.5;
  margin-top: 8px;
}

/* longer paragraphs */
.profile-paragraph {
  color: #707070;
  font-size: 16px;
  line-height: 1.5;
  margin-top: 18px;
}

/* Responsive tweaks */
@media (max-width: 767.98px) {
  .profile-img {
    height: 270px;
    margin-left: auto;
    margin-right: auto;
    max-width: 320px;
  }
  .profile-section {
    margin-top: 0px;
  }
  .profile-name {
    font-size: 32px;
    text-align: center;
  }
  .profile-title {
    text-align: center;
    margin-bottom: 18px;
  }
  .profile-intro,
  .profile-paragraph {
    text-align: left;
    font-size: 14px;
  }
}
