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

:root {
  --color-terracotta: #b85042;
  --color-sage: #5e7a4f;
  --color-parchment: #f8f1e9;
  --color-brass: #b8860b;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  line-height: 1.8;
  color: #333;
  background-color: var(--color-parchment);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

h1 {
  font-size: 5rem;
  letter-spacing: 0.8px;
  color: var(--color-terracotta);
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  color: var(--color-terracotta);
  margin-bottom: 1.5rem;
  margin-top: 1rem;
}

h3 {
  font-size: 1.8rem;
  color: var(--color-sage);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

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

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

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: transparent;
  transition: background-color 0.3s ease;
  padding: 2rem 0;
}

header.scrolled {
  background-color: var(--color-terracotta);
  box-shadow: 0 2px 10px rgba(184, 80, 66, 0.1);
}

header.scrolled a {
  color: white;
}

header.scrolled .navbar-brand {
  color: white !important;
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--color-terracotta);
  font-weight: 700;
  transition: color 0.3s ease;
}

nav {
  text-align: right;
}

nav a {
  font-size: 1rem;
  margin-left: 2rem;
  color: var(--color-terracotta);
  transition: color 0.3s ease;
}

header.scrolled nav a {
  color: white;
}

nav a:hover {
  color: var(--color-sage);
}

header.scrolled nav a:hover {
  color: var(--color-brass);
}

.container-wide {
  max-width: 1580px;
  margin: 0 auto;
  padding: 0 110px;
}

@media (max-width: 1200px) {
  .container-wide {
    padding: 0 70px;
  }
}

@media (max-width: 768px) {
  .container-wide {
    padding: 0 20px;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.4rem;
  }
  
  nav {
    text-align: left;
    margin-top: 1rem;
  }
  
  nav a {
    display: block;
    margin-left: 0;
    margin-bottom: 1rem;
  }
}

section {
  padding: 150px 0;
  width: 100%;
  animation: fadeInSection 0.8s ease-out;
}

@keyframes fadeInSection {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  background: linear-gradient(135deg, var(--color-terracotta) 0%, var(--color-parchment) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero-content {
  max-width: 900px;
  z-index: 10;
  position: relative;
}

.hero h1 {
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
  color: rgba(255,255,255,0.9);
  font-size: 1.3rem;
}

.gradient-section-1 {
  background: linear-gradient(135deg, var(--color-parchment) 0%, rgba(94, 122, 79, 0.1) 100%);
}

.gradient-section-2 {
  background: linear-gradient(135deg, rgba(184, 80, 66, 0.05) 0%, var(--color-parchment) 100%);
}

.gradient-section-3 {
  background: linear-gradient(135deg, var(--color-parchment) 0%, rgba(184, 136, 11, 0.05) 100%);
}

.card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  border-color: var(--color-sage);
  box-shadow: 0 8px 24px rgba(94, 122, 79, 0.2);
  transform: scale(1.04);
  background: linear-gradient(135deg, white 0%, rgba(248, 241, 233, 0.5) 100%);
}

.card h3 {
  margin-bottom: 1rem;
}

.card p {
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

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

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

@media (max-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.btn {
  display: inline-block;
  padding: 12px 32px;
  border: 2px solid var(--color-brass);
  color: var(--color-brass);
  background-color: transparent;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn:hover {
  background: linear-gradient(135deg, var(--color-parchment), rgba(248, 241, 233, 0.8));
  box-shadow: 0 0 15px rgba(184, 136, 11, 0.3);
  color: var(--color-brass);
}

.btn:active {
  animation: ripple 0.6s ease-out;
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(184, 136, 11, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(184, 136, 11, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(184, 136, 11, 0);
  }
}

.divider {
  height: 1px;
  background-color: var(--color-brass);
  opacity: 0.3;
  margin: 3rem 0;
}

.two-column {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 4rem;
  align-items: center;
  margin: 3rem 0;
}

@media (max-width: 992px) {
  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.two-column img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.two-column-text {
  padding: 2rem;
}

.two-column-text h2 {
  margin-top: 0;
}

footer {
  background-color: var(--color-terracotta);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 150px;
}

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

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

footer p {
  margin-bottom: 1rem;
}

footer h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.footer-column {
  margin-bottom: 2rem;
}

.footer-divider {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin: 2rem 0;
}

.disclaimer {
  background-color: rgba(248, 241, 233, 0.7);
  border-left: 4px solid var(--color-sage);
  padding: 2rem;
  border-radius: 4px;
  margin: 3rem 0;
}

.disclaimer h3 {
  color: var(--color-sage);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  padding: 1.5rem;
  z-index: 2000;
  display: none;
}

.cookie-banner.show {
  display: block;
  animation: slideUp 0.3s ease-out;
}

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

.cookie-content {
  max-width: 1580px;
  margin: 0 auto;
  padding: 0 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 768px) {
  .cookie-content {
    padding: 0 20px;
    flex-direction: column;
    align-items: flex-start;
  }
}

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
  margin-right: 2rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  white-space: nowrap;
}

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

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

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

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

.btn-cookie-reject:hover {
  background-color: var(--color-parchment);
}

.btn-cookie-learn {
  background-color: transparent;
  border: 2px solid var(--color-brass);
  color: var(--color-brass);
}

.btn-cookie-learn:hover {
  background-color: var(--color-parchment);
}

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

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

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

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

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-sage);
  box-shadow: 0 0 8px rgba(94, 122, 79, 0.2);
}

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

.form-submit {
  margin-top: 1.5rem;
}

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

.mt-3 {
  margin-top: 3rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.stagger-fade-up {
  animation: staggerFadeUp 0.6s ease-out;
}

@keyframes staggerFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.list-styled li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(184, 80, 66, 0.1);
  padding-left: 2rem;
  position: relative;
}

.list-styled li:before {
  content: "▪";
  color: var(--color-terracotta);
  font-size: 1.2rem;
  position: absolute;
  left: 0;
}

.highlight {
  color: var(--color-sage);
  font-weight: 600;
}

.brass-line {
  height: 2px;
  background-color: var(--color-brass);
  opacity: 0.3;
  margin: 2rem 0;
}
