* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --navy: #152545;
  --ink: #10203a;
  --soft-blue: #e7f0ff;
  --bright-blue: #2f65ff;
  --mist: #f8fbff;
  --cloud: #ffffff;
}

body {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  background:
    radial-gradient(circle at top left, #d9e7ff 0%, transparent 55%),
    radial-gradient(circle at 80% 20%, #c9dcff 0%, transparent 50%),
    linear-gradient(135deg, #f7faff 0%, #dfeaff 100%);
  color: var(--ink);
  position: relative;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    url("assets/blue-art.png")
      repeat,
    radial-gradient(circle at 20% 30%, rgba(58, 107, 200, 0.25), transparent 55%),
    radial-gradient(circle at 80% 60%, rgba(90, 140, 235, 0.22), transparent 60%),
    radial-gradient(circle at 50% 80%, rgba(30, 70, 160, 0.18), transparent 55%),
    conic-gradient(
      from 120deg at 30% 40%,
      rgba(180, 205, 255, 0.18),
      rgba(110, 150, 235, 0.12),
      rgba(255, 255, 255, 0.08),
      rgba(120, 165, 240, 0.2)
    );
  background-size: 420px;
  background-position: center;
  background-blend-mode: multiply;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

h1,
h2,
h3 {
  font-family:
    "Didot",
    "Bodoni 72",
    "Bodoni MT",
    "Didot LT STD",
    "Times New Roman",
    serif;
  font-weight: 500;
  letter-spacing: 0.5px;
}

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

a:hover {
  text-decoration: underline;
}

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 20px 60px;
  position: relative;
  z-index: 1;
}

.hero {
  background: var(--cloud);
  border: 2px solid rgba(21, 37, 69, 0.18);
  padding: 32px;
  text-align: center;
  border-radius: 24px;
  box-shadow: 0 24px 50px rgba(21, 37, 69, 0.12);
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  opacity: 0.4;
  z-index: 0;
}

.hero::before {
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, #a4c3ff 0%, transparent 65%);
  top: -60px;
  left: -40px;
}

.hero::after {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #6ea1ff 0%, transparent 65%);
  bottom: -80px;
  right: -20px;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.overline {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  color: rgba(21, 37, 69, 0.7);
  margin: 0 0 10px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  color: var(--navy);
}

.subtitle {
  margin: 12px auto 0;
  max-width: 620px;
  font-size: 18px;
  color: rgba(16, 32, 58, 0.78);
}

.day {
  margin-top: 40px;
}

.day-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(21, 37, 69, 0.15);
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: 0 10px 24px rgba(16, 32, 58, 0.12);
}

.day-header h2 {
  margin: 0;
  font-size: 28px;
  color: var(--navy);
}

.day-header p {
  margin: 0;
  font-style: italic;
  color: rgba(16, 32, 58, 0.85);
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.tile {
  background: var(--mist);
  border-radius: 20px;
  padding: 22px;
  border: 1px solid rgba(21, 37, 69, 0.12);
  box-shadow: 0 14px 30px rgba(16, 32, 58, 0.1);
  position: relative;
  overflow: hidden;
}

.tile::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 30% 70% 55% 45%;
  background: radial-gradient(circle, #b3ccff 0%, transparent 70%);
  top: -40px;
  right: -40px;
  opacity: 0.6;
}

.tile h3 {
  margin-top: 0;
  color: var(--navy);
  font-size: 20px;
}

.tile-link {
  display: block;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tile-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(16, 32, 58, 0.16);
}

.time {
  font-weight: bold;
  color: var(--bright-blue);
  margin: 6px 0;
}

.location,
.address,
.note {
  margin: 6px 0;
  color: rgba(16, 32, 58, 0.8);
}

.spacer {
  height: 10px;
}

blockquote {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-left: 4px solid var(--bright-blue);
  background: #ffffff;
  border-radius: 12px;
  font-style: italic;
  color: rgba(16, 32, 58, 0.85);
}

.gallery-list {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

.gallery-list a {
  font-weight: bold;
  color: var(--navy);
}

.quote {
  margin: 6px 0 0;
  color: rgba(16, 32, 58, 0.75);
  font-style: italic;
}

@media (max-width: 600px) {
  .hero {
    padding: 24px;
  }

  .day-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
