@charset "utf-8";
/* ===== Global Styles ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #20263a 0%, #050814 55%, #02030a 100%);
  color: #f5f5f5;
  display: flex;
  flex-direction: column;
}

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem;
}

/* ===== Header & Navigation ===== */
header {
  background: rgba(3, 6, 20, 0.98);
  border-bottom: 1px solid #2f3b52;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #fddc8c;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav a {
  text-decoration: none;
  color: #d7d9e3;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

nav a:hover {
  color: #fddc8c;
  border-color: #fddc8c;
}

nav a.current {
  color: #ffffff;
  border-color: #fddc8c;
}

/* ===== Main Layout ===== */
main {
  flex: 1;
}

.page-header {
  text-align: center;
  margin: 3rem auto 2rem;
}

.page-header h1 {
  font-size: 2.3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.page-header p {
  font-size: 1rem;
  color: #c1c4d6;
}

/* ===== Hero (Home) ===== */
.hero {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 2.6rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.75rem;
}

.hero-tagline {
  font-size: 1.2rem;
  color: #fddc8c;
  margin-bottom: 1.5rem;
}

.hero-text p {
  color: #c1c4d6;
  max-width: 32rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn-primary {
  background: linear-gradient(135deg, #fddc8c, #f7b13f);
  color: #1a1205;
  font-weight: 600;
}

.btn-outline {
  border-color: #4d5670;
  color: #e6e7f0;
}

.btn-outline:hover {
  border-color: #fddc8c;
  color: #fddc8c;
}

.hero-image {
  border-radius: 1.5rem;
  border: 1px solid #373f57;
  background: radial-gradient(circle at top, #37415d 0%, #050814 60%);
  padding: 1.5rem;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 1rem;
  border-radius: 1rem;
}

.hero-image p {
  font-size: 0.9rem;
  color: #c6c9da;
}

/* ===== Content Sections ===== */
.section {
  margin-bottom: 3rem;
}

.section h2 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section p {
  line-height: 1.7;
  color: #d0d3e1;
}

/* About layout */
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr);
  gap: 2rem;
}

.banner-wrapper {
  border-radius: 1.25rem;
  border: 1px solid #343b50;
  background: linear-gradient(135deg, rgba(253, 220, 140, 0.08), rgba(86, 104, 157, 0.25));
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
}

.banner-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
}

/* Split sections for Mission, etc. */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
}

.split h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Cards (Books & Podcasts) */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
  margin-top: 1.5rem;
}

.card {
  border-radius: 1.25rem;
  border: 1px solid #343b50;
  background: radial-gradient(circle at top, rgba(91, 106, 162, 0.25), rgba(6, 8, 20, 0.95));
  padding: 1.4rem;
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.95rem;
}

/* Image placeholder boxes */
.image-placeholder {
  width: 100%;
  height: 180px;
  border-radius: 0.75rem;
  border: 1px dashed #4b5672;
  margin-bottom: 0.8rem;

  /* important bits */
  overflow: hidden;              /* hides any overflow */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Force images inside to scale to the box */
.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;             /* fills the box without stretching */
  display: block;
}

/* Links list */
.link-list {
  list-style: none;
  margin-top: 0.75rem;
}

.link-list li {
  margin-bottom: 0.35rem;
}

.link-list a {
  color: #fddc8c;
  text-decoration: none;
  font-size: 0.92rem;
}

.link-list a:hover {
  text-decoration: underline;
}

/* ===== Contact Page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}

form label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  color: #e2e4f0;
}

form input,
form textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid #3d4560;
  background: rgba(5, 8, 20, 0.9);
  color: #f5f5f5;
  font: inherit;
  margin-bottom: 1rem;
}

form textarea {
  min-height: 140px;
  resize: vertical;
}

form input:focus,
form textarea:focus {
  outline: 1px solid #fddc8c;
  border-color: #fddc8c;
}

/* ===== Footer ===== */
footer {
  border-top: 1px solid #2f3b52;
  background: rgba(3, 6, 20, 0.98);
  padding: 1.2rem 0;
  margin-top: 3rem;
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #a9aec4;
}

footer a {
  color: #fddc8c;
  text-decoration: none;
  font-size: 0.85rem;
}

footer a:hover {
  text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 800px) {
  .hero-inner,
  .split,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 1.5rem;
  }

  .hero-text h1 {
    font-size: 2.1rem;
  }

  nav ul {
    gap: 0.9rem;
  }

  .container {
    padding: 1.25rem;
  }
}

@media (max-width: 600px) {
  .nav-inner {
    flex-direction: column;
    gap: 0.5rem;
  }

  .brand {
    text-align: center;
  }

  nav ul {
    justify-content: center;
  }
}

