@font-face {
  font-family: "Outfit";
  src: url("/assets/Outfit-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("/assets/Outfit-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("/assets/Outfit-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

:root {
  --orange: #FF4D00;
  --raisin: #1B1B1E;
}

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

body {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}

h1 {
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 12px;
}

.subtitle {
  font-weight: 400;
  font-size: clamp(1.05rem, 2.4vw, 1.4rem);
  line-height: 1.5;
  max-width: 560px;
  opacity: 0.92;
  margin-bottom: 44px;
}

.location {
  font-size: 1.1rem;
  opacity: 0.7;
  margin-bottom: 32px;
}

.hero-img {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 32px;
}

.card {
  background: rgba(27, 27, 30, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: clamp(28px, 5vw, 40px) clamp(28px, 6vw, 56px);
  max-width: 560px;
  width: 100%;
}

.card-title {
  font-weight: 700;
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  margin-bottom: 26px;
}

.badges {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  transition: transform 0.15s ease;
}
.badge:hover { transform: translateY(-2px); }
.badge img { height: 54px; width: auto; display: block; }

.web-link {
  display: inline-block;
  margin-top: 26px;
  color: #fff;
  font-size: 1rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.9;
}
.web-link:hover { opacity: 1; }

@media (max-width: 480px) {
  .badges { flex-direction: column; align-items: center; }
  .badge { width: 100%; max-width: 240px; }
}
