* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: #2B2B2B;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at 20% 30%, rgba(200, 180, 255, 0.25), transparent 50%),
    radial-gradient(circle at 80% 40%, rgba(255, 200, 210, 0.25), transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(160, 200, 220, 0.25), transparent 50%),
    #FAF8F4;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 8vh 5vw;
}

/* Intro */

.intro {
  text-align: center;
  margin-bottom: 6vh;
}

.intro h1 {
  font-family: 'Bebas Neue', cursive;
  font-size: 3.2rem;
  font-weight: 500;
  margin: 0 0 10px 0;
}

.intro p {
  font-size: 1rem;
  opacity: 0.8;
}

/* Grid */

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Cards */

.card {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 30px;
  box-shadow:
    0 0 0 1px rgba(200,164,75,0.25),
    0 20px 40px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  box-shadow:
    0 0 0 1px rgba(200,164,75,0.4),
    0 30px 60px rgba(0,0,0,0.06);
}

.card h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0px 0px 20px 0px;
}

img {
	  border-radius: 12px;
}

/* Iframes */

iframe {
  width: 100%;
  border-radius: 12px;
}

.youtube iframe {
  aspect-ratio: 16 / 9;
  height: auto;
}

/* Links */

.subtle-link {
  display: inline-block;
  margin-top: 20px;
  color: #2B2B2B;
  text-decoration: none;
  border-bottom: 1px solid rgba(200,164,75,0.6);
  padding-bottom: 2px;
}

.subtle-link:hover {
  border-bottom-color: #C8A44B;
}

.caption {
  margin-top: 15px;
  font-size: 0.9rem;
  opacity: 0.7;
}

a {
  color: #632027; 
  text-decoration: none;
  border-bottom: 1px solid rgba(99, 32, 39, 0.4);
  font-weight:bold;
}

a:hover {
  border-bottom-color: #632027;
}


/* Footer */

.footer {
  text-align: center;
  margin-top: 10vh;
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.5em;
}

.footer a {
  color: #2B2B2B;
  text-decoration: none;
  border-bottom: 1px solid rgba(200,164,75,0.5);
}

/* Mobile */

@media (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .intro h1 {
    font-size: 2.4rem;
  }
}
