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

:root {
  --color-saffron: #e67e22;
  --color-teal: #0a6c74;
  --color-beige: #f5e6cc;
  --color-charcoal: #333f48;
  --color-white: #ffffff;
  --color-light-gray: #f9f7f4;
}

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

html, body {
  font-family: 'Source Sans Pro', sans-serif;
  background-color: var(--color-white);
  color: var(--color-charcoal);
  line-height: 1.82;
}

h1, h2, h3 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: var(--color-charcoal);
}

h1 {
  font-size: 4.5rem;
  letter-spacing: 0.8px;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

p {
  font-size: 17px;
  margin-bottom: 1rem;
  line-height: 1.82;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-charcoal);
  padding: 1rem 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

header .logo {
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-saffron);
  text-decoration: none;
}

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

header nav a {
  color: var(--color-charcoal);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

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

/* Footer */
footer {
  background: linear-gradient(135deg, var(--color-saffron) 0%, var(--color-beige) 100%);
  color: var(--color-charcoal);
  padding: 4rem 2rem;
  border-top: 1px solid var(--color-charcoal);
  margin-top: 4rem;
}

footer .container {
  max-width: 1560px;
  margin: 0 auto;
}

footer .footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

footer .footer-section h3 {
  color: var(--color-charcoal);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

footer .footer-section a {
  display: block;
  color: var(--color-charcoal);
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

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

footer .footer-bottom {
  border-top: 1px solid var(--color-charcoal);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
}

/* Container */
.container {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 5rem;
}

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

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-content {
  max-width: 700px;
  z-index: 10;
}

.hero h1 {
  color: var(--color-white);
  text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
  animation: fadeInUp 1s ease;
}

.hero p {
  color: var(--color-white);
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
  font-size: 1.25rem;
  animation: fadeInUp 1.2s ease;
}

/* Sections */
section {
  padding: 6rem 0;
}

section.light-bg {
  background-color: var(--color-light-gray);
}

section.saffron-bg {
  background: linear-gradient(135deg, var(--color-saffron) 0%, var(--color-beige) 100%);
  color: var(--color-charcoal);
}

section.teal-bg {
  background-color: var(--color-teal);
  color: var(--color-white);
}

section.teal-bg h2,
section.teal-bg h3 {
  color: var(--color-white);
}

section.teal-bg p {
  color: var(--color-white);
}

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

/* Content Section */
.content-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.content-section.reverse {
  direction: rtl;
}

.content-section.reverse > * {
  direction: ltr;
}

.content-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.content-image {
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.content-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
  object-fit: cover;
}

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

@media (max-width: 768px) {
  .content-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .content-section.reverse {
    direction: ltr;
  }
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

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

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

.card {
  background-color: var(--color-white);
  border: 2px solid var(--color-beige);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  border-color: var(--color-teal);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-beige) 100%);
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-family: 'Merriweather', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: 1rem;
}

.card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-charcoal);
  margin-bottom: 1.5rem;
  flex: 1;
}

.card-list {
  list-style: none;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

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

.card-list li:before {
  content: "•";
  color: var(--color-saffron);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Button */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid var(--color-teal);
  background-color: transparent;
  color: var(--color-teal);
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn:hover {
  background: linear-gradient(135deg, var(--color-teal) 0%, #095560 100%);
  color: var(--color-white);
  transform: scale(1.04);
}

.btn-group {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* List Section */
.list-section {
  max-width: 700px;
}

.list-section h3 {
  margin-bottom: 1.5rem;
}

.list-section ul {
  list-style: none;
  margin-left: 0;
}

.list-section li {
  padding: 1rem 0;
  padding-left: 2rem;
  position: relative;
  border-bottom: 1px solid var(--color-beige);
}

.list-section li:before {
  content: "→";
  color: var(--color-saffron);
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Form */
.form-section {
  max-width: 600px;
  margin: 2rem auto;
}

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

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

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-saffron);
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

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

.form-disclaimer {
  background-color: var(--color-light-gray);
  padding: 1.5rem;
  border-left: 4px solid var(--color-saffron);
  border-radius: 2px;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* Parallax */
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Disclaimer */
.disclaimer {
  background-color: var(--color-light-gray);
  border: 1px solid var(--color-beige);
  border-radius: 4px;
  padding: 2rem;
  margin: 3rem 0;
  font-size: 0.95rem;
  line-height: 1.8;
}

.disclaimer h3 {
  color: var(--color-teal);
  margin-bottom: 1rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-charcoal);
  color: var(--color-white);
  padding: 1.5rem 2rem;
  z-index: 999;
  display: none;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
}

.cookie-banner.show {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

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

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

.cookie-button {
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-white);
  background-color: transparent;
  color: var(--color-white);
  cursor: pointer;
  border-radius: 2px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.cookie-button.accept {
  background-color: var(--color-saffron);
  border-color: var(--color-saffron);
  color: var(--color-charcoal);
}

.cookie-button:hover {
  background-color: var(--color-saffron);
  border-color: var(--color-saffron);
  color: var(--color-charcoal);
}

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

/* Responsive Typography */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  p {
    font-size: 1rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2rem; }
.mt-4 { margin-top: 3rem; }
.mb-2 { margin-bottom: 1.5rem; }
.mb-3 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 3rem; }
.py-4 { padding: 3rem 0; }
.py-6 { padding: 4rem 0; }
