/* ----- RESET & BASE ----- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #faf9f7;
  color: #1e1e2a;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ----- HEADER / NAVIGATION ----- */
.top-bar {
  background: #1e2b3c;
  color: #f0ede8;
  padding: 12px 0;
  border-bottom: 4px solid #b68b5c;
  position: sticky;
  top: 0;
  z-index: 100;
}

.top-bar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.logo span {
  color: #dbbd91;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-weight: 500;
}
.nav-links a {
  color: #f0ede8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
}
.nav-links a:hover,
.nav-links a.active {
  color: #dbbd91;
  border-bottom-color: #dbbd91;
}

/* ----- HERO / BANNER ----- */
.hero {
  background: linear-gradient(135deg, #1e2b3c 0%, #2a3a4e 100%);
  color: white;
  padding: 48px 0 36px;
  margin-bottom: 32px;
  border-bottom: 6px solid #b68b5c;
}
.hero .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}
.hero-text {
  flex: 2;
  min-width: 280px;
}
.hero-text h1 {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}
.hero-text h1 span {
  color: #dbbd91;
}
.hero-text .subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  color: #d4cfc7;
  margin-bottom: 12px;
}
.hero-text .affiliation {
  font-size: 1rem;
  color: #b8b2a8;
  margin-bottom: 8px;
}
.hero-text .affiliation i {
  color: #dbbd91;
  margin-right: 8px;
}
.hero-avatar {
  flex: 0 0 130px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #dbbd91;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  background: #b68b5c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 700;
  color: white;
}
.hero-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* placeholder fallback */
.hero-avatar .no-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #b68b5c;
  color: white;
  font-size: 3rem;
  font-weight: 700;
}

/* ----- PAGE TITLE ----- */
.page-title {
  margin: 32px 0 20px;
  font-weight: 600;
  font-size: 2.2rem;
  letter-spacing: -0.5px;
  color: #1e2b3c;
  border-left: 6px solid #b68b5c;
  padding-left: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.page-title i {
  color: #b68b5c;
}

/* ----- CARDS ----- */
.card {
  background: white;
  border-radius: 24px;
  padding: 28px 32px;
  border: 1px solid #edebe6;
  box-shadow: 0 6px 18px rgba(0,0,0,0.02);
  margin-bottom: 32px;
}
.card h2 {
  font-weight: 600;
  font-size: 1.5rem;
  color: #1e2b3c;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.card h2 i {
  color: #b68b5c;
}
.card p {
  color: #2d2d3b;
  margin-bottom: 16px;
  font-size: 1.02rem;
}
.card p:last-child {
  margin-bottom: 0;
}
.highlight {
  color: #b68b5c;
  font-weight: 500;
}

/* ----- TWO COLUMN LAYOUT ----- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 32px;
}
@media (max-width: 800px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

/* ----- PROFILE CARD (left) ----- */
.profile-card {
  background: white;
  border-radius: 24px;
  padding: 28px 22px;
  border: 1px solid #edebe6;
  height: fit-content;
}
.profile-card .avatar-small {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 12px;
  border: 4px solid #dbbd91;
  background: #b68b5c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
}
.profile-card .avatar-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.profile-card h3 {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e2b3c;
}
.profile-card .role {
  text-align: center;
  color: #5c5c6b;
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.profile-card .info-list {
  list-style: none;
}
.profile-card .info-list li {
  display: flex;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #f1eee9;
  font-size: 0.92rem;
}
.profile-card .info-list li i {
  width: 22px;
  color: #b68b5c;
}
.profile-card .info-list li strong {
  font-weight: 600;
  min-width: 90px;
}

/* ----- BOOK GRID ----- */
.book-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
  margin: 20px 0;
}
.book-item {
  background: white;
  border-radius: 18px;
  border: 1px solid #edebe6;
  overflow: hidden;
  transition: 0.15s;
}
.book-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
}
.book-cover {
  aspect-ratio: 3/4;
  background: #eae7e0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #5f5f6b;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 12px;
  background-image: repeating-linear-gradient(45deg, #ddd8cf 0px, #ddd8cf 2px, #e8e4db 2px, #e8e4db 8px);
}
.book-cover i {
  font-size: 2.8rem;
  color: #b68b5c;
  opacity: 0.5;
  margin-bottom: 6px;
}
.book-cover .placeholder-text {
  background: rgba(255,255,255,0.8);
  padding: 4px 14px;
  border-radius: 40px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #1e2b3c;
}
.book-info {
  padding: 14px 16px 16px;
}
.book-info h4 {
  font-weight: 600;
  font-size: 0.95rem;
  color: #1e2b3c;
  margin-bottom: 2px;
}
.book-info .book-meta {
  font-size: 0.8rem;
  color: #5f5f6e;
}
.book-info .btn-sm {
  display: inline-block;
  margin-top: 8px;
  background: #1e2b3c;
  color: white;
  padding: 4px 16px;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #1e2b3c;
  transition: 0.15s;
}
.book-info .btn-sm:hover {
  background: #b68b5c;
  border-color: #b68b5c;
}

/* ----- PLAYS GRID ----- */
.plays-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin: 20px 0;
}
.play-card {
  background: white;
  border-radius: 18px;
  border: 1px solid #edebe6;
  padding: 20px 22px;
  transition: 0.15s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.play-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
  border-color: #b68b5c;
}
.play-card h4 {
  font-weight: 600;
  font-size: 1.05rem;
  color: #1e2b3c;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.play-card h4 i {
  color: #b68b5c;
}
.play-card p {
  font-size: 0.9rem;
  color: #4f4f5e;
  margin: 0;
}

/* ----- AIMS GRID ----- */
.aims-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin: 16px 0;
}
.aim-card {
  background: #faf8f5;
  border-radius: 16px;
  padding: 16px 20px;
  border: 1px solid #edebe6;
}
.aim-card h4 {
  font-weight: 600;
  font-size: 1rem;
  color: #1e2b3c;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.aim-card h4 i {
  color: #b68b5c;
  width: 24px;
}
.aim-card p {
  font-size: 0.92rem;
  color: #2d2d3b;
  margin: 0;
}

/* ----- MISC ----- */
.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin: 8px 0;
}
.badge-list span {
  background: #edeae4;
  padding: 4px 16px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #1e2b3c;
}

.quote-block {
  background: #f5f2ed;
  border-radius: 16px;
  padding: 16px 22px;
  margin: 16px 0;
  border-left: 5px solid #b68b5c;
  font-style: italic;
  color: #1e2b3c;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1e2b3c;
  color: white;
  padding: 12px 30px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid #1e2b3c;
  transition: 0.15s;
  margin-top: 10px;
}
.btn-primary:hover {
  background: #b68b5c;
  border-color: #b68b5c;
}

/* ----- CONTACT PAGE ----- */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  margin: 20px 0;
}
.contact-item {
  background: #faf8f5;
  border-radius: 18px;
  padding: 20px 24px;
  border: 1px solid #edebe6;
  text-align: center;
}
.contact-item i {
  font-size: 2rem;
  color: #b68b5c;
  margin-bottom: 8px;
}
.contact-item h4 {
  font-weight: 600;
  color: #1e2b3c;
  margin-bottom: 4px;
}
.contact-item p {
  font-size: 0.95rem;
  color: #4f4f5e;
  margin: 0;
}
.contact-item a {
  color: #1e2b3c;
  text-decoration: none;
}
.contact-item a:hover {
  color: #b68b5c;
}

.footer-note {
  text-align: center;
  color: #6c6c7a;
  font-size: 0.9rem;
  padding: 28px 0 20px;
  border-top: 1px solid #e1ddd5;
  margin-top: 20px;
}
.footer-note i {
  color: #b68b5c;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 700px) {
  .top-bar .container {
    flex-direction: column;
    gap: 6px;
  }
  .nav-links {
    justify-content: center;
    gap: 0.8rem;
  }
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
  .page-title {
    font-size: 1.6rem;
  }
  .card {
    padding: 20px 16px;
  }
  .two-col {
    grid-template-columns: 1fr;
  }
  .book-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  .plays-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-info-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .book-grid {
    grid-template-columns: 1fr 1fr;
  }
  .plays-grid {
    grid-template-columns: 1fr;
  }
  .aims-grid {
    grid-template-columns: 1fr;
  }
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}