:root {
  --bg: #762839;
  --text: #fff8f2;
  --muted: rgba(255, 248, 242, 0.76);
  --line: rgba(255, 248, 242, 0.45);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.35);
}

.section {
  padding: 72px 24px;
}

.inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.logo-section {
  text-align: center;
  padding-bottom: 20px;
}

.logo {
  width: min(300px, 70vw);
}

h1, h2, .date {
  font-family: "Roboto", serif;
  font-weight: 400;
}

.hero {
  text-align: center;
  padding-top: 30px;
}

h1 {
  margin: 0 0 28px;
  font-size: clamp(72px, 13vw, 160px);
  line-height: .85;
  letter-spacing: -0.06em;
}

.intro {
  max-width: 680px;
  margin: 0 auto 60px;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--muted);
}

.event-details {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  max-width: 820px;
  margin: 0 auto;
}

.date {
  text-align: right;
  text-transform: uppercase;
  font-size: 42px;
  line-height: .95;
}

.date span {
  display: block;
}

.small {
  display: block;
  font-size: 26px;
}


.divider {
  width: 1px;
  height: 170px;
  background: var(--line);
}

.address {
  text-align: left;
  font-style: normal;
  color: var(--muted);
  font-size: 18px;
}

.address strong {
  display: block;
  color: var(--text);
  font-size: 24px;
  margin-bottom: 10px;
}

.info {
  text-align: center;
  padding-top: 90px;
  padding-bottom: 40px;
}

.info p {
  max-width: 780px;
  margin: 0 auto;
  font-family: "Roboto", serif;
  font-size: 18px;
  line-height: 1.18;
}

.opening-hours {
  padding-top: 30px;
  padding-bottom: 100px;
}

.hours-card {
  max-width: 680px;
  margin: 0 auto;
  padding: 54px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: rgba(255,255,255,.035);
}

.hours-card h2 {
  margin: 0 0 34px;
  text-align: center;
  font-size: clamp(44px, 7vw, 82px);
  line-height: .9;
}

.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1#welkom-title {
  font-size: 60px;
  font-family: "Roboto", serif;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
  color: var(--muted);
}

.hours-list li:last-child {
  border-bottom: 0;
}

.hours-list strong {
  color: var(--text);
  font-weight: 400;
}

.photo-section {
  padding: 0;
}

.full-photo {
  width: 100%;
  height: clamp(420px, 65vw, 780px);
  display: block;
  object-fit: cover;
}

footer {
  padding: 34px 24px;
  color: var(--muted);
  font-size: 14px;
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 700px) {
  .event-details {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .date,
  .address {
    text-align: center;
  }

  .divider {
    width: 130px;
    height: 1px;
    margin: 0 auto;
  }

  .hours-card {
    padding: 34px 24px;
  }

  .hours-list li {
    font-size: 15px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}