:root {
  --primary: #1a1a1a;
  --accent: #8cc5a2;
  --secondary: #f6f6f6;
  --text: #222;
  --muted: #666;
  --darkbg: #111;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--secondary);
  color: var(--text);
  font-family: "Merriweather", serif;
}

header {
  background-color: white;
  padding: 2rem;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

header img {
  max-width: 200px;
  margin-bottom: 1rem;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 30vh;
  padding: 2rem;
  background-color: var(--primary);
  color: white;
  text-align: center;
}

.hero h1 {
  font-family: "Nunito Sans", sans-serif;
  font-size: 3rem;
  margin: 0;
}

.hero .emphasis {
  font-style: italic;
  font-size: 3rem;
  font-family: "Merriweather", serif;
  color: var(--accent);
}

.main-content {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.main-content h2 {
  font-family: "Nunito Sans", sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.main-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.gallery-section {
  width: 100%;
  padding: 4rem 2rem;
  background-color: var(--primary);
  color: white;
}

.gallery-section h2 {
  text-align: center;
  font-family: "Nunito Sans", sans-serif;
  font-size: 2.8rem;
  margin-bottom: 3rem;
  color: white;
}

.gallery-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 auto 4rem;
  gap: 2rem;
  max-width: 1200px;
}

.gallery-block.reverse {
  flex-direction: row-reverse;
}

.gallery-block img,
video {
  flex: 1 1 55%;
  width: 50%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

.gallery-text {
  flex: 1 1 40%;
}

.gallery-text h3 {
  font-family: "Nunito Sans", sans-serif;
  font-size: 1.7rem;
  margin: 0 0 1rem;
  color: white;
}

.gallery-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: var(--muted);
}
