
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
body {
  font-family: 'Source Sans Pro', sans-serif;
  background: #f5f2ec;
  color: #2b2b2b;
  margin: 0; padding: 0;
}
header, footer {
  background: #4d443d; color: #f5f5f5;
  text-align: center; padding: 1em 0;
}
header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; margin: 0;
}
nav a {
  margin: 0 1em; color: #ddd;
  text-decoration: none; font-weight: 500;
  transition: color 0.3s;
}
nav a:hover { color: #f5f5f5; }
main {
  max-width: 900px; margin: 2em auto; padding: 0 1em;
}
h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; margin-top: 2em;
  animation: fadeIn 0.8s ease-out;
}
h3 {
  font-size: 1.25rem; color: #333;
  margin-top: 1.5em; animation: fadeIn 0.8s ease-out;
}
section {
  margin-bottom: 3em;
  opacity: 0; animation: fadeIn 0.6s ease-out forwards;
}
section:nth-of-type(1) { animation-delay: 0.2s; }
section:nth-of-type(2) { animation-delay: 0.4s; }
section:nth-of-type(3) { animation-delay: 0.6s; }
section:nth-of-type(4) { animation-delay: 0.8s; }
.buttons {
  margin-top: 1em; display: flex; flex-wrap: wrap; gap: 0.6em;
}
.buttons a {
  background: #e0e0e0; color: #1a1a1a;
  padding: 0.6em 1em; text-decoration: none;
  border-radius: 20px; font-weight: 500;
  transition: background 0.3s, transform 0.3s;
}
.buttons a:hover {
  background: #4d443d; color: #f5f5f5;
  transform: translateY(-3px);
}
.cta {
  background: #005f99; color: #f5f5f5;
  padding: 0.8em 1.5em; text-decoration: none;
  border-radius: 4px; font-weight: bold;
  display: inline-block; margin-top: 1em;
  transition: background 0.3s;
}
.cta:hover { background: #004a7c; }
footer p { font-size: 0.8rem; color: #aaa; margin: 1em 0; }


@media (max-width: 768px) {
  nav a { display: block; margin: 0.5em 0; }
  .buttons { flex-direction: column; }
  iframe { height: 600px; }
}

.buttons a {
  transition: transform 0.3s ease, background 0.3s ease;
}
.buttons a:hover {
  transform: translateY(-3px) scale(1.03);
}


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

section {
  animation: fadeSlideUp 0.9s ease-out forwards;
  opacity: 0;
  animation-delay: 0.2s;
}

/* Campaign Cards Styles */
.campaign-cards {
  display: flex;
  gap: 2em;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2em;
}
.campaign-card {
  background: #fffdf6;
  border-radius: 10px;
  box-shadow: 0 2px 12px #e2e2da;
  width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  margin-bottom: 2em;
  transition: box-shadow 0.2s;
}
.campaign-card:hover {
  box-shadow: 0 4px 24px #ddd5be;
}
.campaign-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}
.campaign-card h4 {
  margin-top: 0.3em;
  font-size: 1.2em;
}
.campaign-card p {
  font-size: 1em;
  color: #212120;
}
.campaign-card .button {
  display: inline-block;
  padding: 0.5em 1em;
  background: #1a1a1a;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 0.7em;
  font-weight: 600;
  letter-spacing: 0.03em;
}
@media (max-width: 1100px) {
  .campaign-cards { flex-direction: column; align-items: center; }
  .campaign-card { width: 95vw; max-width: 370px; }
}
#hvh-curtain-section {
  position: relative;
  background-color: #000;
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
  font-family: 'Libre Baskerville', serif;
}

.curtain-left, .curtain-right {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}

.curtain-left {
  left: 0;
  background-image: url('curtain_left_final.png');
}

.curtain-right {
  right: 0;
  background-image: url('curtain_right_final.png');
}

.curtain-text {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  color: #fff;
}

.tagline {
  font-size: 1.5em;
  color: #fff;
  text-shadow: 0 0 5px #fff;
  margin-bottom: 20px;
}

.subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #ccc;
  text-shadow: 0 0 3px #ccc;
}

.curtain-button {
  display: inline-block;
  padding: 12px 28px;
  background-color: #fef2b2;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  border-radius: 5px;
  box-shadow: 0 0 10px #fef2b2;
  transition: background 0.3s;
}

.curtain-button:hover {
  background-color: #ffe56c;
}
