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

:root {
  --color-white: #F8F9FA;
  --color-evergreen: #1A3C34;
  --color-sandstone: #D9C2A6;
  --color-slate-blue: #6B8291;
  --color-text: #2C3E50;
  --color-border: #E0E0E0;
  --color-hover: rgba(26, 60, 52, 0.08);
  --spacing-unit: 1rem;
  --radius: 4px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
  background-color: var(--color-white);
  color: var(--color-text);
  line-height: 1.72;
  font-size: 16px;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--color-evergreen);
  margin-top: 1.2em;
  margin-bottom: 1.2em;
  line-height: 1.3;
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

h2 {
  font-size: 2.5rem;
  margin-top: 1.4em;
  margin-bottom: 1.4em;
}

h3 {
  font-size: 1.8rem;
  margin-top: 1.3em;
  margin-bottom: 1.3em;
}

p {
  margin-bottom: 1rem;
}

strong, .highlight {
  font-weight: 600;
  color: var(--color-evergreen);
}

em, .emphasis {
  font-style: italic;
  color: var(--color-slate-blue);
}

a {
  color: var(--color-evergreen);
  text-decoration: none;
  border-bottom: 1px solid var(--color-sandstone);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--color-sandstone);
  border-bottom-color: var(--color-evergreen);
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(248, 249, 250, 0.98);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  padding: 1rem 6vw;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-evergreen);
  text-decoration: none;
  border: none;
}

.logo:hover {
  color: var(--color-sandstone);
  border: none;
}

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

nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  border: none;
  padding-bottom: 4px;
  position: relative;
}

nav a:hover,
nav a.active {
  color: var(--color-evergreen);
  border-bottom: 2px solid var(--color-sandstone);
}

main {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
}

section {
  padding: 4rem 6vw;
  max-width: 100%;
}

.section-content {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 6vw;
}

.hero {
  background: linear-gradient(rgba(26, 60, 52, 0.3), rgba(26, 60, 52, 0.4)), 
              url('images/hero-alpine-valley.jpg') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-top: 80px;
  position: relative;
}

.hero h1 {
  font-size: 4rem;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.disclaimer-banner {
  background-color: var(--color-evergreen);
  color: white;
  text-align: center;
  padding: 1rem 6vw;
  font-size: 0.95rem;
  font-weight: 500;
}

.disclaimer-banner a {
  color: var(--color-sandstone);
  border-bottom-color: var(--color-sandstone);
}

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

.two-column-reverse {
  direction: rtl;
}

.two-column-reverse > * {
  direction: ltr;
}

.two-column img,
.two-column-reverse img {
  width: 100%;
  height: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

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

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

.card {
  background-color: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s ease;
  text-align: center;
}

.card:hover {
  box-shadow: 0 8px 20px rgba(26, 60, 52, 0.12);
  transform: translateY(-4px);
}

.card h3 {
  margin-top: 0;
}

.card p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.full-width {
  width: 100%;
  background: linear-gradient(135deg, rgba(248, 249, 250, 0.5), rgba(217, 194, 166, 0.1));
  padding: 4rem 6vw;
  margin: 2rem 0;
}

.full-width-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
}

.section-subtitle {
  color: var(--color-slate-blue);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.button,
button,
input[type="submit"] {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--color-evergreen);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.button:hover,
button:hover,
input[type="submit"]:hover {
  background: linear-gradient(135deg, var(--color-evergreen), var(--color-slate-blue));
  box-shadow: 0 4px 12px rgba(26, 60, 52, 0.25);
  transform: translateY(-2px);
}

.button-secondary {
  background-color: var(--color-sandstone);
  color: var(--color-evergreen);
}

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

.cta-block {
  text-align: center;
  padding: 3rem 0;
  background-color: rgba(248, 249, 250, 0.8);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.cta-block h3 {
  margin-top: 0;
}

.cta-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

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

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

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

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

tbody tr:hover {
  background-color: var(--color-hover);
}

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

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

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

input[type="email"],
input[type="text"],
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

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

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

.form-disclaimer {
  background-color: rgba(217, 194, 166, 0.1);
  padding: 1rem;
  border-left: 3px solid var(--color-sandstone);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--color-text);
}

footer {
  background-color: var(--color-evergreen);
  color: white;
  padding: 3rem 6vw 1.5rem;
  margin-top: 4rem;
}

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

.footer-section h4 {
  color: var(--color-sandstone);
  margin-bottom: 1rem;
}

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

.footer-section a {
  color: rgba(248, 249, 250, 0.9);
  border-bottom: 1px solid rgba(217, 194, 166, 0.3);
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: var(--color-sandstone);
  border-bottom-color: var(--color-sandstone);
}

.footer-bottom {
  border-top: 1px solid rgba(248, 249, 250, 0.2);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(248, 249, 250, 0.8);
}

.footer-contact {
  font-size: 0.9rem;
  line-height: 1.8;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-evergreen);
  color: white;
  padding: 1.5rem 6vw;
  border-top: 1px solid rgba(248, 249, 250, 0.2);
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

.cookie-message {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-message a {
  color: var(--color-sandstone);
  border-bottom-color: var(--color-sandstone);
}

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

.cookie-button {
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background-color: var(--color-sandstone);
  color: var(--color-evergreen);
}

.cookie-accept:hover {
  background-color: rgba(217, 194, 166, 0.8);
}

.cookie-reject {
  background-color: transparent;
  color: white;
  border: 1px solid rgba(248, 249, 250, 0.5);
}

.cookie-reject:hover {
  background-color: rgba(248, 249, 250, 0.1);
  border-color: white;
}

.fade-in {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

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

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

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

.faq-question {
  cursor: pointer;
  font-weight: 600;
  color: var(--color-evergreen);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: var(--color-hover);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(26, 60, 52, 0.15);
}

.faq-answer {
  display: none;
  padding: 1.5rem 1rem 0;
  color: var(--color-text);
  line-height: 1.8;
}

.faq-answer.active {
  display: block;
}

.faq-toggle {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-toggle.open {
  transform: rotate(180deg);
}

.thank-you-container {
  text-align: center;
  padding: 4rem 0;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.thank-you-container h1 {
  color: var(--color-evergreen);
}

.thank-you-container p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.thank-you-container a {
  display: inline-block;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.4rem;
  }

  nav ul {
    gap: 1.5rem;
  }

  nav a {
    font-size: 0.85rem;
  }

  .two-column,
  .two-column-reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .two-column-reverse {
    direction: ltr;
  }

  .three-column,
  .four-column {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .cookie-consent {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-button {
    flex: 1;
  }

  section {
    padding: 2.5rem 6vw;
  }
}

@media (max-width: 480px) {
  header {
    padding: 0.75rem 4vw;
  }

  .header-container {
    flex-direction: column;
    gap: 1rem;
  }

  nav ul {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav a {
    font-size: 0.8rem;
  }

  main {
    margin-top: 120px;
  }

  .hero {
    margin-top: 120px;
    min-height: 70vh;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  section {
    padding: 1.5rem 4vw;
  }

  .cta-links {
    gap: 1rem;
  }

  .button {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

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

  .cookie-consent {
    padding: 1rem 4vw;
  }

  .cookie-message {
    font-size: 0.8rem;
  }
}
