@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=Montserrat:wght@400;500&display=swap');

:root {
  --color-primary: #3C4F41;
  --color-accent-light: #F5F0E1;
  --color-accent-pine: #8BA07E;
  --color-accent-umber: #9C6B4E;
  --color-text: #2C2C2C;
  --color-border: #E8E3D5;
  --color-gray-light: #F9F7F3;
}

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

html, body {
  height: 100%;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text);
  background-color: #FFFFFF;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

h1 {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

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

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 20px;
  font-weight: 600;
  color: var(--color-primary);
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}

nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-primary);
  transition: all 0.3s ease;
  position: relative;
}

nav a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent-umber);
  transition: width 0.3s ease;
}

nav a:hover:after {
  width: 100%;
}

footer {
  background-color: var(--color-primary);
  color: var(--color-accent-light);
  padding: 3rem 2rem;
  margin-top: 130px;
  font-size: 14px;
  line-height: 1.8;
}

footer a {
  color: var(--color-accent-light);
  transition: color 0.3s ease;
}

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

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

.footer-section h4 {
  font-size: 16px;
  color: var(--color-accent-light);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(245, 240, 225, 0.2);
  padding-top: 2rem;
  text-align: center;
  font-size: 13px;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
}

main {
  padding-top: 80px;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 130px 2rem;
}

.section-full {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.hero {
  background: linear-gradient(135deg, rgba(60, 79, 65, 0.7) 0%, rgba(139, 160, 126, 0.5) 100%), url('images/hero-meadow.jpg') center/cover;
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 80px;
  position: relative;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  color: white;
  font-size: 80px;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
}

.row {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 130px;
}

.row.reverse {
  flex-direction: row-reverse;
}

.col-text {
  flex: 1;
}

.col-image {
  flex: 1;
}

.col-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.col-image img:hover {
  transform: scale(1.03);
}

.numbered-list {
  list-style: none;
}

.numbered-list li {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.numbered-list li:last-child {
  border-bottom: none;
}

.list-number {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--color-accent-umber);
  min-width: 50px;
}

.list-content h4 {
  margin-bottom: 0.5rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background-color: var(--color-gray-light);
}

table thead {
  background-color: var(--color-primary);
  color: white;
}

table th,
table td {
  padding: 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

table th {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

table tr:hover {
  background-color: rgba(60, 79, 65, 0.05);
}

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

.card {
  background-color: white;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.card-content {
  padding: 1.5rem;
}

.card-content h3 {
  font-size: 20px;
  margin-bottom: 0.75rem;
}

.card-content p {
  font-size: 15px;
  margin-bottom: 0;
}

.season-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.season-item {
  text-align: center;
}

.season-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.season-item h4 {
  margin-bottom: 0.75rem;
}

.bullet-list {
  list-style: none;
  margin: 1.5rem 0;
}

.bullet-list li {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
}

.bullet-list li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-accent-umber);
  font-weight: bold;
  font-size: 20px;
}

.reading-list {
  list-style: none;
  margin: 2rem 0;
}

.reading-list li {
  padding: 1rem;
  margin-bottom: 1rem;
  background-color: var(--color-gray-light);
  border-left: 4px solid var(--color-accent-umber);
  border-radius: 4px;
}

.reading-list li a {
  font-weight: 500;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--color-primary);
  color: white;
  border: 2px solid var(--color-primary);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn:hover {
  background-color: transparent;
  color: var(--color-primary);
}

.btn-secondary {
  background-color: var(--color-accent-umber);
  border-color: var(--color-accent-umber);
}

.btn-secondary:hover {
  background-color: transparent;
  color: var(--color-accent-umber);
}

form {
  max-width: 600px;
  margin: 2rem 0;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--color-primary);
}

input[type="email"],
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(60, 79, 65, 0.1);
}

textarea {
  resize: vertical;
  min-height: 150px;
}

.disclaimer {
  background-color: var(--color-gray-light);
  padding: 1.5rem;
  border-left: 4px solid var(--color-accent-umber);
  border-radius: 4px;
  margin: 1.5rem 0;
  font-size: 14px;
  line-height: 1.7;
}

.section-subtitle {
  font-size: 18px;
  color: var(--color-accent-pine);
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--color-accent-umber);
}

.faq-answer {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text);
}

.thank-you-content {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.thank-you-content h1 {
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.thank-you-content p {
  font-size: 18px;
  margin-bottom: 2rem;
}

.highlight {
  background-color: rgba(245, 240, 225, 0.5);
  padding: 0 4px;
}

@media (max-width: 768px) {
  header {
    padding: 1rem;
  }

  .header-content {
    padding: 0.75rem 1rem;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 24px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero p {
    font-size: 16px;
  }

  nav {
    gap: 1rem;
  }

  nav a {
    font-size: 12px;
  }

  .row {
    flex-direction: column;
    margin-bottom: 80px;
  }

  .row.reverse {
    flex-direction: column;
  }

  section {
    padding: 80px 1.5rem;
  }

  .container {
    padding: 0 1.5rem;
  }

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

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

  table {
    font-size: 13px;
  }

  table th,
  table td {
    padding: 0.75rem;
  }

  footer {
    padding: 2rem 1.5rem;
    margin-top: 80px;
  }

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

  form {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .hero {
    min-height: 70vh;
  }

  .hero h1 {
    font-size: 36px;
  }

  nav {
    gap: 0.5rem;
  }

  nav a {
    font-size: 11px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  .numbered-list li {
    gap: 1rem;
  }

  .list-number {
    font-size: 24px;
  }
}
