.seats-container {
  display: flex;
  flex-wrap: wrap; /* Important: allows items to wrap to next line */
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 290px);
  padding-top: 50px;
  padding-bottom: 50px;
  gap: 150px 20px;
}

/* Each seat div - default (mobile) */
.seats-container > .seats-card {
  flex: 0 0 calc(100% - 20px); /* 1 per line on mobile */
  max-width: calc(100% - 20px);
  margin-bottom: 20px;
  margin-top: 20px;
}

/* Medium screens (tablet) - 2 per line */
@media (min-width: 768px) {
  .seats-container > .seats-card {
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}

/* Large screens (desktop) - 4 per line */
@media (min-width: 1024px) {
  .seats-container > .seats-card {
    flex: 0 0 calc(25% - 20px);
    max-width: calc(25% - 20px);
  }
}

@media (min-width: 3840px) {
  .seats-container {
    min-height: calc(60vh - 60px);
  }

  .seats-container > .seats-card {
    flex: 0 0 calc(25% - 20px);
    max-width: calc(25% - 20px);
  }

  .seats-card .seat-title {
    /* text-align: start; */
    text-transform: uppercase;
    font-weight: normal;
    font-size: 3rem;
  }

  .seats-card .seat-number {
    font-size: 12rem !important;
    margin: 0;
  }

  .seats-card .seat-description {
    text-transform: uppercase;
    font-size: 2rem;
  }

  nav img {
    height: 20vh;
  }

  footer {
    min-height: 20vh !important;
  }
}

.seats-card {
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s;
}

.seats-card .seat-title {
  /* text-align: start; */
  text-transform: uppercase;
  font-weight: normal;
}

.seats-card .seat-number {
  font-size: 8rem;
  margin: 0;
}

.seats-card .seat-description {
  text-transform: uppercase;
}

/* Room Selection Form */
.room-selection {
  padding: 3.125rem 1.25rem;
  text-align: center;
}

.room-selection h2 {
  text-transform: uppercase;
  font-weight: normal;
  margin-bottom: 1.875rem;
}

.room-selection-form {
  max-width: 50rem;
  margin: 0 auto;
}

.room-group {
  margin-bottom: 1.875rem;
  padding: 1.25rem;
  border: 1px solid #a0a0a0;
  border-radius: 0.5rem;
}

.room-group-title {
  text-transform: uppercase;
  font-weight: normal;
  font-size: 1.1rem;
  margin-bottom: 0.9375rem;
  color: #00bbd9;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.625rem;
}

.room-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9375rem;
  justify-content: center;
}

.room-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 0.9375rem;
  border: 1px solid #ccc;
  border-radius: 0.3125rem;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
}

.room-checkbox-label:hover {
  border-color: #00bbd9;
}

.room-checkbox-label input[type="checkbox"] {
  width: 1.125rem;
  height: 1.125rem;
  cursor: pointer;
}

.room-checkbox-label input[type="checkbox"]:checked + span {
  color: #00bbd9;
}

.room-selection-actions {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
  align-items: center;
  margin-top: 1.875rem;
}

@media (min-width: 768px) {
  .room-selection-actions {
    flex-direction: row;
    justify-content: center;
  }
}

.room-selection-submit {
  background-color: #00bbd9;
  color: white;
  border: none;
  padding: 0.9375rem 1.875rem;
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s;
}

.room-selection-submit:hover {
  background-color: #009bb5;
}

.room-selection-link {
  color: #00bbd9;
  text-decoration: none;
  padding: 0.9375rem 1.875rem;
  font-size: 1rem;
  text-transform: uppercase;
  border: 1px solid #00bbd9;
  transition: background-color 0.2s, color 0.2s;
}

.room-selection-link:hover {
  background-color: #00bbd9;
  color: white;
}

/* 4K screens - Room Selection */
@media (min-width: 3840px) {
  .room-selection {
    padding: 5rem 2rem;
  }

  .room-selection h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }

  .room-selection-form {
    max-width: 80rem;
  }

  .room-group {
    margin-bottom: 3rem;
    padding: 2rem;
    border-radius: 1rem;
  }

  .room-group-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }

  .room-checkboxes {
    gap: 1.5rem;
  }

  .room-checkbox-label {
    gap: 1rem;
    padding: 1.25rem 1.875rem;
    border-radius: 0.625rem;
    font-size: 1.5rem;
  }

  .room-checkbox-label input[type="checkbox"] {
    width: 2rem;
    height: 2rem;
  }

  .room-selection-actions {
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .room-selection-submit,
  .room-selection-link {
    padding: 1.5rem 3rem;
    font-size: 1.5rem;
  }
}
