* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  height: 100%;
}

body {
  font-family: 'Open Sans', sans-serif;
  background: #005239;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  margin: 0;
  width: 100vw;
  height: 100vh;
}

.page-shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  width: min(82vw, 860px);
  max-width: 860px;
  margin-top: 18px;
}

.logo-panel {
  background: #f9f9f9;
  border-radius: 18px;
  width: 100%;
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 22px rgba(0,0,0,0.08);
}

.logo {
  display: block;
  height: 72px;
  max-width: 100%;
  object-fit: contain;
}

.container {
  background: #f8f8f8;
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(0,0,0,0.12);
  padding: 22px 26px 16px;
  width: 100%;
}

h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(4rem, 5.6vw, 7rem);
  line-height: 0.9;
  font-weight: 800;
  margin: 0 0 14px;
  color: #005239;
  text-align: center;
}

.status {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.9rem, 3.9vw, 4.6rem);
  font-weight: 800;
  text-align: center;
  padding: 14px 18px;
  margin-bottom: 12px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 2px solid #f06464;
  background: #f6d6d8;
  color: #d7282c;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.status.open { background: #d9f6e6; border-color: #3cb577; color: #0c7b42; }
.status.closed { background: #f6d6d8; border-color: #f06464; color: #d7282c; }
.status.closing-soon { background: #fdf1d0; border-color: #e9b85b; color: #9a6300; }

.schedule {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.schedule .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ececec;
  border-radius: 10px;
  padding: 12px 14px;
  border-left: 5px solid #3bbf62;
  min-height: 60px;
}

.schedule .row.closed {
  background: #f2dfe0;
  border-left-color: #e14c42;
}

.schedule .day {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.4rem, 2vw, 2.2rem);
  font-weight: 700;
  color: #005239;
  flex: 1;
  text-align: left;
}

.schedule .time {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(1.15rem, 1.6vw, 1.8rem);
  font-weight: 700;
  color: #1d1d1d;
  text-align: right;
  white-space: nowrap;
}

.schedule .time.closed {
  color: #d7282c;
}

@media (max-width: 760px) {
  body {
    overflow: auto;
    padding: 24px 12px;
  }

  .page-shell {
    flex-direction: column;
    gap: 18px;
    width: 100%;
  }

  .logo-panel,
  .container {
    width: 100%;
    max-width: 440px;
  }
}
