@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;500;600;700&family=Source+Sans+Pro:wght@400;600&display=swap');

:root {
  --primary-bg: #f8f9f5;
  --accent-light: #5a8c4e;
  --accent-dark: #2f5d32;
  --cream: #fefdf8;
  --white: #ffffff;
  --gray-dark: #333333;
  --gray-light: #cccccc;
  --gold: #d4af37;
}

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

html, body {
  font-family: 'Source Sans Pro', sans-serif;
  background-color: var(--primary-bg);
  color: var(--gray-dark);
  line-height: 1.80;
  word-spacing: 0.1em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', serif;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

h1 {
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.2;
}

h2 {
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--accent-dark);
}

h3 {
  font-weight: 500;
  font-size: 1.8rem;
  color: var(--accent-dark);
}

h4 {
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--accent-light);
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

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

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

body {
  overflow-x: hidden;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--cream);
  z-index: 1000;
  padding: 1.5rem 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 0.75rem 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

header.scrolled h1 {
  font-size: 1.5rem;
  margin: 0;
}

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

.logo {
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent-dark);
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--gray-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent-light);
}

main {
  padding-top: 80px;
}

.full-bleed {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  position: relative;
}

.section {
  max-width: 1580px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}

.section-content {
  max-width: 1180px;
  margin: 0 auto;
  padding: 4rem 110px;
}

@media (max-width: 1200px) {
  .section-content {
    padding: 3rem 60px;
  }
}

@media (max-width: 768px) {
  .section-content {
    padding: 2rem 20px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.4rem;
  }
  
  .nav-links {
    gap: 1rem;
    font-size: 0.9rem;
  }
}

.hero-section {
  background: linear-gradient(135deg, var(--primary-bg) 0%, #f0f2ec 100%);
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 4rem 110px;
  width: 100%;
}

.hero-content h1 {
  color: var(--accent-dark);
  margin-bottom: 2rem;
}

.two-column {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 3rem;
  align-items: center;
}

.two-column.reverse {
  grid-template-columns: 40% 60%;
}

.two-column img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .two-column,
  .two-column.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-image {
    width: 100%;
    opacity: 0.6;
  }
  
  .hero-content {
    padding: 2rem 20px;
  }
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.grid-cards.four-col {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 4px;
  padding: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.card:hover {
  box-shadow: 0 8px 16px rgba(90, 140, 78, 0.15);
  border-color: var(--gold);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.card h4 {
  margin-bottom: 1rem;
  color: var(--accent-dark);
}

.card p {
  font-size: 0.95rem;
  color: #666;
}

@media (max-width: 768px) {
  .grid-cards,
  .grid-cards.four-col {
    grid-template-columns: 1fr;
  }
}

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

table th {
  background-color: var(--accent-light);
  color: var(--white);
  padding: 1rem;
  text-align: left;
  font-family: 'Roboto Slab', serif;
  font-weight: 600;
}

table td {
  padding: 1rem;
  border-bottom: 1px solid var(--gray-light);
}

table tr:nth-child(even) {
  background-color: rgba(248, 249, 245, 0.8);
}

table tr:hover {
  background-color: rgba(90, 140, 78, 0.05);
}

.accordion-item {
  background: var(--white);
  border: 1px solid var(--gray-light);
  margin-bottom: 1rem;
  border-radius: 4px;
  overflow: hidden;
}

.accordion-header {
  padding: 1.5rem;
  background: var(--cream);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--accent-dark);
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background-color: var(--primary-bg);
  border-bottom-color: var(--gold);
}

.accordion-header.active {
  border-bottom-color: var(--gold);
  color: var(--accent-dark);
}

.accordion-content {
  display: none;
  padding: 1.5rem;
  background: var(--white);
  color: #555;
  line-height: 1.8;
}

.accordion-content.active {
  display: block;
}

.accordion-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
  transform: rotate(180deg);
}

.quote-block {
  background: linear-gradient(135deg, var(--primary-bg) 0%, #f0f2ec 100%);
  padding: 4rem 2rem;
  text-align: center;
  margin: 3rem 0;
  border-radius: 4px;
}

.quote-block p {
  font-size: 1.3rem;
  color: var(--accent-dark);
  margin: 0;
  font-style: italic;
}

.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--accent-light);
  color: var(--white);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Roboto Slab', serif;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.button::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--accent-dark);
  transition: height 0.3s ease;
  z-index: -1;
}

.button:hover::before {
  height: 100%;
}

.button:hover {
  color: var(--white);
}

footer {
  background: var(--accent-dark);
  color: var(--cream);
  padding: 3rem 2rem;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section a {
  color: var(--cream);
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  font-size: 0.9rem;
  max-width: 1180px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--cream);
  cursor: pointer;
}

.footer-links a:hover {
  color: var(--gold);
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gray-dark);
  color: var(--white);
  padding: 1.5rem 2rem;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  border-top: 3px solid var(--gold);
}

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.5rem 1.2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: 'Source Sans Pro', sans-serif;
}

.cookie-btn.accept {
  background: var(--accent-light);
  color: var(--white);
}

.cookie-btn.accept:hover {
  background: var(--accent-dark);
}

.cookie-btn.reject {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.cookie-btn.reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cookie-btn.more {
  background: transparent;
  color: var(--gold);
  text-decoration: underline;
}

.cookie-btn.more:hover {
  color: var(--white);
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--white);
  padding: 2rem;
  border-radius: 4px;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray-dark);
}

.modal-close:hover {
  color: var(--accent-light);
}

.modal h2 {
  margin-top: 0;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--accent-dark);
}

.form-group input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--gray-light);
  border-radius: 4px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent-light);
  box-shadow: 0 0 0 3px rgba(90, 140, 78, 0.1);
}

.form-disclaimer {
  background: var(--primary-bg);
  padding: 1rem;
  border-left: 4px solid var(--accent-light);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: #555;
  border-radius: 4px;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title p {
  color: var(--accent-light);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.content-disclaimer {
  background: var(--primary-bg);
  padding: 1.5rem;
  border-radius: 4px;
  margin: 3rem 0;
  border-left: 4px solid var(--accent-light);
  font-size: 0.95rem;
  color: #666;
  line-height: 1.8;
}

.scroll-animation {
  opacity: 0;
  transform: scale(0.95) translateY(20px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animation.visible {
  opacity: 1;
  transform: scale(1.05) translateY(0);
}

.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
}

.thank-you-message {
  text-align: center;
  padding: 2rem;
  background: var(--primary-bg);
  border-radius: 4px;
  margin-top: 2rem;
  color: var(--accent-dark);
  display: none;
}

.thank-you-message.active {
  display: block;
}

.disclaimer-section {
  background: var(--cream);
  padding: 2rem;
  border-radius: 4px;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #555;
  border: 1px solid var(--gray-light);
}
