/* ───────────── ROOT & TYPOGRAPHY ───────────── */
:root {
  --cream: #f5f1eb;
  --dark: #2d2d2d;
  --accent-red: #a85a4f;
  --accent-green: #4a7c6b;
  --text-light: #666;
  --border: #e0dcd5;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background-color: var(--cream);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Georgia', 'Garamond', serif;
  color: var(--dark);
  line-height: 1.2;
}

a {
  color: var(--accent-red);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-green);
}

/* ───────────── HEADER & NAV ───────────── */
header {
  position: sticky;
  top: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  padding: 20px 0;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0;
}

.logo img {
  height: 40px;
  width: auto;
}

.logo-text {
  font-family: 'Georgia', serif;
  font-size: 18px;
  color: var(--dark);
  font-weight: 400;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

nav a {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dark);
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

nav a:hover {
  color: var(--accent-red);
  border-bottom-color: var(--accent-red);
}

nav a.active {
  color: var(--accent-red);
  border-bottom-color: var(--accent-red);
}

.search-icon {
  width: 18px;
  height: 18px;
  cursor: pointer;
  color: var(--dark);
}

/* ───────────── HERO SECTION ───────────── */
.hero {
  position: relative;
  height: 500px;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
  display: none;
}

.hero-slide.active {
  opacity: 1;
  display: block;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  padding: 40px;
  border-radius: 0 0 8px 8px;
}

.hero-title {
  font-family: 'Georgia', serif;
  font-size: 48px;
  color: var(--cream);
  margin-bottom: 8px;
  font-weight: 400;
}

.hero-date {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 20px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.btn {
  padding: 12px 32px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary {
  background-color: var(--accent-red);
  color: white;
}

.btn-primary:hover {
  background-color: #922e28;
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background-color: white;
  color: var(--dark);
}

.carousel-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
}

.carousel-btn {
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  transition: background 0.3s ease;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.6);
}

/* ───────────── CONTENT SECTIONS ───────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  margin-bottom: 80px;
}

.section-title {
  font-family: 'Georgia', serif;
  font-size: 42px;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 20px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--accent-red);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.card {
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card-image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 24px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-title {
  font-family: 'Georgia', serif;
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--dark);
}

.card-date {
  font-size: 12px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.card-description {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.card-link {
  color: var(--accent-red);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-link:hover {
  color: var(--accent-green);
}

/* ───────────── FOOTER ───────────── */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 40px;
  margin-top: 80px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: white;
  font-family: 'Georgia', serif;
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: 12px;
}

.footer-section a:hover {
  color: var(--accent-red);
}

.footer-info {
  font-size: 14px;
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  font-size: 12px;
}

/* ───────────── ABOUT SECTION (HOME) ───────────── */
.org-info {
  background: white;
  padding: 50px;
  border-radius: 8px;
  border: 1px solid var(--border);
  margin-bottom: 40px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.info-item h4 {
  font-family: 'Georgia', serif;
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--accent-red);
}

.info-item p {
  color: var(--text-light);
  line-height: 1.8;
}

/* ───────────── RESPONSIVE ───────────── */
@media (max-width: 768px) {
  nav ul {
    gap: 20px;
  }

  nav a {
    font-size: 11px;
  }

  .hero-title {
    font-size: 32px;
  }

  .section-title {
    font-size: 32px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .header-content {
    padding: 0 20px;
  }

  .container {
    padding: 0 20px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  nav ul {
    gap: 12px;
  }

  nav a {
    font-size: 10px;
  }

  .hero {
    height: 350px;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-content {
    padding: 20px;
  }

  .section-title {
    font-size: 24px;
  }

  .card-title {
    font-size: 18px;
  }
}
