body {
  font-family: 'Quicksand', Arial, sans-serif;
  font-weight: 300;
  background: url('assets/openart-image_WRUziVn6_1753032062241_raw.svg') no-repeat center center fixed;
  background-size: cover;
  color: #232323;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body::before {
  content: none;
}

.page-container {
  background: transparent;
  max-width: 540px;
  width: 96vw;
  margin: 2.5vw auto;
  padding: 3.5rem 2rem 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  overflow: visible;
  box-shadow: none;
  border-radius: 0;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.arrival-time {
  text-align: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: #6b7551;
  color: white;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.arrival-time p {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.arrival-time strong {
  font-weight: 600;
}

header, footer {
  text-align: center;
  padding: 2rem 0 1.2rem 0;
  background: none;
  position: static;
}

h1, h2 {
  text-shadow: 0 1px 6px rgba(255,255,255,0.7), 0 1px 1px rgba(180,180,180,0.08);
}

h1 {
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  font-weight: 200;
  margin: 0.5rem 0 0 0;
}

.date {
  font-size: 1.1rem;
  color: #6d6d6d;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 1.3rem;
  font-weight: 200;
  margin: 0 0 2rem 0;
  letter-spacing: 0.08em;
}

.schedule {
  width: 100%;
  margin-bottom: 3rem;
  background-color: rgba(255, 255, 255, 0.5);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.08rem;
  background: transparent;
}

th, td {
  font-weight: 300;
  padding: 0.7rem 0.5rem;
  text-align: left;
  border-bottom: 1px solid #ececec;
  vertical-align: top;
  background: transparent;
}

th {
  color: #232323;
  font-size: 1.02rem;
  letter-spacing: 0.06em;
  background: #f3f2f0cc;
}

tr:last-child td {
  border-bottom: none;
}

.sub {
  font-size: 0.95em;
  color: #6d6d6d;
  font-style: italic;
}

.future-feature {
  text-align: center;
  margin-top: 2rem;
  color: #6d6d6d;
  font-size: 1rem;
}

footer {
  font-size: 0.95rem;
  color: #6d6d6d;
  padding-bottom: 1.5rem;
  background: none;
}

.meal-checker {
  text-align: center;
  margin-bottom: 3rem;
}

.meal-checker h2 {
  margin-bottom: 0.5rem;
}

.meal-checker p {
  margin-bottom: 1rem;
  color: #6d6d6d;
}

.meal-checker input {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.meal-checker button {
  background-color: #6b7551;
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.meal-checker button:hover {
  background-color: #5a6244;
}

.meal-checker button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.venue-location {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.venue-location h2 {
  margin-bottom: 0.5rem;
  color: #232323;
}

.venue-location p {
  margin-bottom: 1.5rem;
  color: #6d6d6d;
  font-size: 1.1rem;
}

.map-container {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  display: block;
}

.gifts {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.gifts h2 {
  margin-bottom: 1rem;
  color: #232323;
}

.gifts p {
  margin-bottom: 1rem;
  color: #6d6d6d;
  line-height: 1.5;
}

.gift-link {
  display: inline-block;
  background-color: #6b7551;
  color: #ffffff;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 6px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  border: 2px solid #6b7551;
  margin-top: 1rem;
}

.gift-link:hover {
  background-color: #5a6244;
  color: #ffffff;
  border-color: #5a6244;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.gift-link:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

#meal-results {
  margin-top: 1.5rem;
  text-align: left;
}

@media (max-width: 900px) {
  .page-container {
    max-width: 99vw;
  }
}

@media (max-width: 600px) {
  .page-container {
    padding: 1.2rem 0.2rem 1.5rem 0.2rem;
    max-width: 99vw;
  }
  table, th, td {
    font-size: 0.98rem;
  }
}

.leaf-svg {
  display: none;
}