@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Poppins:wght@400;500;600;700&display=swap');

:root {
  --blue: #2789c4;
  --blue-dark: #1f6fa3;
  --blue-deeper: #165a85;
  --yellow: #e7ec84;
  --yellow-dark: #dde566;
  --navy-text: #173a52;
  --card-text: #1c1c1c;
  --pink: #c0264e;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--card-text);
  line-height: 1.6;
  background-color: var(--white);
}

.display {
  font-family: 'Archivo Black', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style-position: inside;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  background-color: var(--white);
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 24px;
  color: var(--blue);
  font-weight: bold;
}

.back-link {
  font-weight: 500;
  color: var(--navy-text);
}

.back-link:hover {
  color: var(--blue);
}

/* Hero */
.hero {
  position: relative;
  height: 350px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(22, 90, 133, 0.85); /* Dark blue semi-transparent overlay */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: var(--yellow);
  font-size: 48px;
  margin-bottom: 10px;
}

.hero .category {
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Content */
.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 120px;
}

.section {
  margin-bottom: 40px;
  padding-left: 20px;
  border-left: 4px solid var(--yellow);
}

.section h2 {
  color: var(--navy-text);
  font-size: 24px;
  margin-bottom: 15px;
}

.section p {
  margin-bottom: 15px;
}

.section ul li {
  margin-bottom: 10px;
}

/* Button */
.btn-container {
  text-align: center;
  margin-top: 60px;
}

.btn {
  display: inline-block;
  background-color: var(--blue);
  color: var(--white);
  padding: 15px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn:hover {
  background-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Bottom Nav */
.bottom-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid #eee;
}

.bottom-nav a {
  font-weight: 600;
  color: var(--blue);
  font-size: 18px;
}

.bottom-nav a:hover {
  color: var(--blue-dark);
}

.bottom-nav .disabled {
  color: #ccc;
  pointer-events: none;
}

/* Footer */
.footer {
  text-align: center;
  padding: 40px 20px;
  background-color: var(--navy-text);
  color: var(--white);
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    height: 300px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .content-wrapper {
    padding: 60px 24px;
  }
  
  .bottom-nav {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
