/* ---------------------------------------------------------
   Fonts
--------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Nunito+Sans:wght@300;400;600&display=swap');

/* ---------------------------------------------------------
   Base Styles
--------------------------------------------------------- */
:root {
  --cream: #f7efe2;
  --paper: #f2e7d8;
  --ink-dark: #2b2b2b;
  --burgundy: #7a2e2e;
  --forest: #2d4e3a;

  --radius: 12px;
  --shadow-soft: 0 3px 8px rgba(0,0,0,0.12);
  --shadow-paper: 0 1px 3px rgba(0,0,0,0.15), 0 3px 10px rgba(0,0,0,0.08);
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  font-family: 'Nunito Sans', sans-serif;
  color: var(--ink-dark);
  line-height: 1.6;
}

/* ---------------------------------------------------------
   Header / Nav
--------------------------------------------------------- */
.header {
  padding: 1rem;
  background: var(--paper);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--burgundy);
  letter-spacing: 0.5px;
}

.nav {
  margin-top: 0.5rem;
  display: flex;
  gap: 1rem;
}

.nav a {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--forest);
  font-weight: 600;
}

.nav a:hover {
  text-decoration: underline;
}

/* ---------------------------------------------------------
   Hero Section
--------------------------------------------------------- */
.hero {
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--paper);
  border-bottom: 1px solid rgba(0,0,0,0.12);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.3rem;
  margin: 0 0 0.5rem;
  font-weight: 600;
  color: var(--burgundy);
}

.hero .subtitle {
  font-size: 1.1rem;
  color: var(--forest);
}

/* ---------------------------------------------------------
   General Section Styles
--------------------------------------------------------- */
.section {
  padding: 2rem 1.4rem;
  max-width: 800px;
  margin: 0 auto;
}

.section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--burgundy);
  margin-bottom: 1rem;
  font-weight: 600;
}

/* ---------------------------------------------------------
   Features
--------------------------------------------------------- */
.feature-grid {
  display: grid;
  gap: 1rem;
}

.feature {
  background: var(--paper);
  padding: 1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0,0,0,0.08);
}

.feature h3 {
  font-family: 'Cormorant Garamond', serif;
  margin-top: 0;
  font-size: 1.3rem;
  color: var(--forest);
}

/* ---------------------------------------------------------
   Event List
--------------------------------------------------------- */
.event-list {
  padding-left: 1rem;
}

.event-list li {
  margin-bottom: 0.6rem;
}

/* ---------------------------------------------------------
   Buttons
--------------------------------------------------------- */
.button {
  display: inline-block;
  padding: 0.7rem 1.2rem;
  background: var(--burgundy);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
}

.button:hover {
  background: #5f2222;
}

.button.secondary {
  background: var(--forest);
}

.button.secondary:hover {
  background: #1f3829;
}

/* ---------------------------------------------------------
   Contact Form Styles
--------------------------------------------------------- */
.contact-form {
  background: var(--paper);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-paper);
  border: 1px solid rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 1rem;
}

.contact-form label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--forest);
  margin-bottom: -0.3rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.7rem;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.2);
  background: #fff8f0;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1rem;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.08);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--burgundy);
  background: #fff;
  box-shadow: 0 0 0 2px rgba(122,46,46,0.2);
}

/* ---------------------------------------------------------
   Footer
--------------------------------------------------------- */
.footer {
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 2rem;
  color: #555;
  font-size: 0.9rem;
}
