/* ============================================
   The Society Inc. – Memphis Chapter
   Easy-to-edit stylesheet
   Colors based on official Peach & Cream + Branding Bible
   ============================================ */

:root {
  /* Official-inspired palette */
  --peach: #F29366;
  --peach-dark: #E07A4A;
  --peach-light: #F8C4A8;
  --cream: #FDF8F3;
  --cream-dark: #F5EDE4;
  --text: #3D3229;
  --text-light: #6B5E52;
  --white: #FFFFFF;
  --shadow: 0 4px 20px rgba(61, 50, 41, 0.08);
  --radius: 12px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.25;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--peach-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--peach);
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 248, 243, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--cream-dark);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  min-height: 70px;
}

.logo-img {
  height: 48px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 1.75rem;
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
}

.main-nav a:hover {
  color: var(--peach-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: 0.3s;
}

/* ========== HERO ========== */
.hero {
  background: linear-gradient(160deg, var(--cream) 0%, var(--cream-dark) 100%);
  padding: 5rem 0 6rem;
  text-align: center;
}

.eyebrow {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--peach-dark);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  color: var(--text);
  margin-bottom: 0.25rem;
}

.tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--peach-dark);
  margin-bottom: 1.75rem;
}

.hero-mission {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: all 0.25s ease;
}

.btn-primary {
  background: var(--peach);
  color: var(--white);
  border: 2px solid var(--peach);
}

.btn-primary:hover {
  background: var(--peach-dark);
  border-color: var(--peach-dark);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--peach-dark);
  border: 2px solid var(--peach);
}

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

/* ========== SECTIONS ========== */
.section {
  padding: 4.5rem 0;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text);
}

.subsection-title {
  font-size: 1.4rem;
  margin: 2.5rem 0 1.25rem;
  color: var(--peach-dark);
}

.section-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  color: var(--text-light);
}

.placeholder-note {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
  text-align: center;
  margin-top: 1.5rem;
}

/* About */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2.5rem;
}

.about-text p {
  margin-bottom: 1.25rem;
  color: var(--text-light);
}

.highlight-card {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.highlight-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--peach-dark);
}

.highlight-card ul {
  list-style: none;
}

.highlight-card li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.highlight-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--peach);
  font-weight: bold;
}

/* Events */
.events {
  background: var(--cream);
}

.events-list {
  max-width: 700px;
  margin: 0 auto;
}

.event-card {
  display: flex;
  gap: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow);
}

.event-date {
  flex-shrink: 0;
  width: 70px;
  text-align: center;
  background: var(--peach);
  color: var(--white);
  border-radius: 8px;
  padding: 0.75rem 0.5rem;
}

.event-date .month {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.event-date .day {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  font-family: 'Cormorant Garamond', serif;
}

.event-details h4 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.event-meta {
  font-size: 0.85rem;
  color: var(--peach-dark);
  margin-bottom: 0.5rem;
}

.event-details p {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* Gallery */
.gallery {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-dark);
}

.gallery-item.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--peach-light);
  color: var(--text-light);
  font-size: 0.9rem;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Donate */
.donate {
  background: linear-gradient(160deg, var(--cream-dark) 0%, var(--cream) 100%);
}

.donate-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.donate-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.donate-card.featured {
  border: 2px solid var(--peach);
}

.donate-card h3 {
  font-size: 1.4rem;
  color: var(--peach-dark);
  margin-bottom: 0.75rem;
}

.donate-card p {
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.donate-email {
  font-size: 1.15rem !important;
  font-weight: 500;
  margin: 1rem 0 !important;
}

.donate-email a {
  color: var(--peach-dark);
  word-break: break-all;
}

.donate-card .note {
  font-size: 0.85rem;
  color: var(--peach);
  font-weight: 500;
}

.donate-footer-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Contact */
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info h3,
.contact-social h3 {
  font-size: 1.25rem;
  color: var(--peach-dark);
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}

.contact-info h3:first-child {
  margin-top: 0;
}

.contact-info p {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.contact-email {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1.5rem !important;
}

.placeholder-email {
  color: var(--text-light);
  font-style: italic;
}

.social-placeholders {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-placeholder {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--cream);
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Footer */
.site-footer {
  background: var(--text);
  color: var(--cream);
  text-align: center;
  padding: 3rem 0 2rem;
}

.footer-logo {
  height: 36px;
  margin: 0 auto 1.25rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-text {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.footer-copy {
  font-size: 0.8rem;
  opacity: 0.6;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.75rem;
    border-bottom: 1px solid var(--cream-dark);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero {
    padding: 3.5rem 0 4rem;
  }

  .event-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .event-date {
    width: auto;
    padding: 0.5rem 1rem;
    display: flex;
    gap: 0.5rem;
    align-items: baseline;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

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