/* ================= GOOGLE FONTS ================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Roboto:wght@400;500&display=swap');

/* ================= BASE ================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  color: #ffffff;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, #0b2a8f 0%, #010823 60%),
    linear-gradient(180deg, #010823, #000312);
}

/* ================= HEADER ================= */
.header-section {
  text-align: center;
  padding: 70px 20px 60px;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.5),
    rgba(0,0,0,0.15)
  );
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.home-button {
  margin-bottom: 15px;
}

.home-logo {
  width: 120px;
  transition: transform 0.3s ease;
}

.home-logo:hover {
  transform: scale(1.08);
}

.header-title h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 44px;
  font-weight: 700;
  margin: 10px 0;
  letter-spacing: 1px;
  text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

.subheader h2 {
  font-size: 22px;
  font-weight: 400;
  color: #dbe7ff;
  margin-top: 5px;
}

/* ================= SHARED CARD STYLE ================= */
.card {
  background: linear-gradient(135deg, #004996, #1184e1);
  border-radius: 30px;
  border: 10px solid rgb(15, 12, 110);
  padding: 35px 30px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 12px 35px rgba(0,0,0,0.45);
}

/* ================= OPPORTUNITIES ================= */
.opportunities {
  max-width: 800px;
  margin: 50px auto;
  text-align: center;
}

.opportunities p {
  line-height: 1.75;
  font-size: 16px;
}

.email-link {
  color: #ffd700;
  font-weight: 600;
  text-decoration: none;
}

.email-link:hover {
  text-decoration: underline;
}

/* ================= APPLICATION INFO ================= */
.application-info {
  max-width: 800px;
  margin: 60px auto;
  text-align: center;
}

.status-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.application-header {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 600;
}

.application-status {
  background: linear-gradient(90deg, #22c55e, #16a34a);
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.1),
    0 6px 18px rgba(0,0,0,0.4);
}

.application-paragraph {
  font-size: 15px;
  line-height: 1.7;
  color: #e0ebff;
}

/* ================= CURRENT OPENINGS ================= */
.current-openings {
  max-width: 700px;
  margin: 70px auto 40px;
  text-align: center;
}

.opening-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
  text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

.openings-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.openings-list li {
  background: linear-gradient(135deg, #0f2a7a, #163fa3);
  padding: 16px 25px;
  border-radius: 20px;
  margin: 14px 0;
  font-weight: 500;
  letter-spacing: 0.3px;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.08),
    0 8px 22px rgba(0,0,0,0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.openings-list li:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.12),
    0 14px 35px rgba(0,0,0,0.55);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .header-title h1 {
    font-size: 32px;
  }

  .subheader h2 {
    font-size: 18px;
  }

  .card {
    padding: 22px 18px;
    border-width: 6px;
    border-radius: 18px;
  }

  .opening-heading {
    font-size: 24px;
  }
}
