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

:root {
  --color-cream: #fdfbf8;
  --color-white: #fefdf6;
  --color-orange: #e89c3e;
  --color-green: #4a8c6a;
  --color-dark: #2c2c2c;
  --color-light-gray: #f5f3f0;
  --font-playfair: 'Playfair Display', serif;
  --font-lato: 'Lato', sans-serif;
}

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

html, body {
  width: 100%;
  height: 100%;
  background-color: var(--color-cream);
  color: var(--color-dark);
  font-family: var(--font-lato);
  font-weight: 400;
  line-height: 1.86;
}

body {
  overflow-x: hidden;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--color-cream);
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

header.scrolled {
  background-color: rgba(253, 251, 248, 0.95);
  transform: translateY(0);
}

header.scrolled .navbar {
  padding: 0.5rem 0;
}

.navbar {
  max-width: 1680px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: padding 0.3s ease;
}

.navbar-brand {
  font-family: var(--font-playfair);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-orange);
  text-decoration: none;
  letter-spacing: 0.6px;
}

.navbar-brand:hover {
  color: var(--color-green);
}

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

.nav-links a {
  text-decoration: none;
  color: var(--color-dark);
  font-family: var(--font-lato);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

@media (max-width: 768px) {
  .nav-links {
    gap: 1rem;
    font-size: 0.8rem;
  }
  .navbar {
    padding: 0.8rem 1rem;
  }
}

main {
  margin-top: 80px;
  width: 100%;
}

section {
  padding: 4rem 0;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 4rem;
}

@media (max-width: 768px) {
  .section-container {
    padding: 0 1.5rem;
  }
}

h1 {
  font-family: var(--font-playfair);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: 0.6px;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

h2 {
  font-family: var(--font-playfair);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: 0.6px;
  margin-bottom: 2rem;
}

h3 {
  font-family: var(--font-playfair);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 1rem;
}

p {
  font-size: 1rem;
  line-height: 1.86;
  color: var(--color-dark);
  margin-bottom: 1.5rem;
}

.hero {
  background-color: var(--color-cream);
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
}

.hero-image {
  width: 100%;
  max-width: 1680px;
  height: 500px;
  object-fit: cover;
  margin-bottom: 2rem;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-content h1 {
  color: var(--color-orange);
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--color-dark);
}

section:nth-child(odd) {
  background-color: var(--color-white);
}

section:nth-child(even) {
  background-color: var(--color-cream);
}

section:nth-child(3n+0) {
  background-color: rgba(232, 156, 62, 0.03);
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.two-column img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.two-column.reversed {
  grid-template-columns: 1fr 1fr;
}

.two-column.reversed img {
  order: 2;
}

.two-column.reversed .content {
  order: 1;
}

@media (max-width: 768px) {
  .two-column {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .two-column.reversed {
    grid-template-columns: 1fr;
  }
  .two-column.reversed img {
    order: unset;
  }
  .two-column.reversed .content {
    order: unset;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.8rem;
  }
}

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

.card {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(232, 156, 62, 0.1);
  transition: all 0.3s ease;
}

.card:hover {
  border-color: var(--color-orange);
  box-shadow: 0 8px 24px rgba(232, 156, 62, 0.15);
  transform: scale(1.04);
}

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

.card h3 {
  color: var(--color-orange);
  margin-bottom: 1rem;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

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

table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

table td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid rgba(232, 156, 62, 0.2);
}

table tbody tr:nth-child(odd) {
  background-color: rgba(232, 156, 62, 0.05);
}

table tbody tr:hover {
  background-color: rgba(232, 156, 62, 0.1);
}

.accordion {
  margin-top: 2rem;
}

.accordion-item {
  border: 1px solid rgba(232, 156, 62, 0.2);
  border-left: 3px solid var(--color-orange);
  margin-bottom: 1rem;
  border-radius: 4px;
}

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

.accordion-header:hover {
  background-color: rgba(232, 156, 62, 0.05);
  color: var(--color-orange);
}

.accordion-header.active {
  background-color: rgba(232, 156, 62, 0.1);
  color: var(--color-orange);
}

.accordion-body {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-body.show {
  padding: 1.5rem;
  max-height: 500px;
}

.accordion-body p {
  margin: 0;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--color-orange);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  font-family: var(--font-lato);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover {
  background-color: var(--color-green);
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

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

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

.form-group input {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid rgba(232, 156, 62, 0.3);
  border-radius: 4px;
  font-family: var(--font-lato);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(232, 156, 62, 0.1);
}

.disclaimer-text {
  font-size: 0.85rem;
  color: var(--color-dark);
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: rgba(74, 140, 106, 0.05);
  border-left: 3px solid var(--color-green);
  border-radius: 4px;
}

footer {
  background-color: var(--color-dark);
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
  font-size: 0.9rem;
}

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

.footer-column h3 {
  color: var(--color-orange);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-column a {
  display: block;
  color: white;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--color-orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding-top: 2rem;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.footer-message {
  color: var(--color-orange);
  font-weight: 600;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  animation: fadeIn 0.3s ease;
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: var(--color-cream);
  padding: 2rem;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  animation: slideIn 0.3s ease;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.modal-header h2 {
  margin: 0;
  color: var(--color-orange);
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-dark);
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-dark);
  color: white;
  padding: 1.5rem 2rem;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  animation: slideUp 0.4s ease;
}

.cookie-banner.hidden {
  display: none;
}

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

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

.cookie-btn {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.cookie-btn-accept:hover {
  background-color: var(--color-green);
}

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

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

.cookie-btn-more {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

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

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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

.quote-section {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(232, 156, 62, 0.08) 0%, rgba(74, 140, 106, 0.08) 100%);
  border-radius: 8px;
  margin: 3rem 0;
}

.quote-section p {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--color-dark);
}

.image-full {
  width: 100%;
  height: auto;
  margin: 2rem 0;
  border-radius: 8px;
}

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

.mt-4 {
  margin-top: 2rem;
}

.thank-you-message {
  text-align: center;
  padding: 2rem;
  background-color: rgba(74, 140, 106, 0.1);
  border-left: 4px solid var(--color-green);
  border-radius: 4px;
  display: none;
}

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

.thank-you-message h3 {
  color: var(--color-green);
}
