body {
  font-family: "futura-pt", sans-serif;
}

/* ----- HEADER CONTENT ----- */

.bb-header-text {
  text-align: center;
  color: black;
  padding-top: 60px;
}
.bb-welcome-text {
  font-size: 1.5em;
  margin: 0 auto;
}
.bb-intro-text {
  margin: 60px 10px 10px 10px;
  color: white;
  font-weight: 100;
  text-shadow: 1px 1px 10px #000;
  font-size: 1.25em;
}
@media (max-width: 900px) {
  .bb-welcome-text {
    font-size: 1.25em;
  }
  .bb-intro-text {
    font-size: 1em;
  }
}
.bb-booking-btn {
  margin: 40px 0 20px 0;
  display: inline-block;
  padding: 15px 60px;
  background: #f1684b;
  border: 1px solid #f1684b;
  font-weight: bold;
  white-space: nowrap;
  transition: background-color 0.3s ease;
  border-radius: 2px;
  cursor: pointer;
  font-size: 1.1em;
}
.bb-booking-btn:hover {
  background: #ed401c;
}

/* ----- BONUS NIGHT VISUALIZATION ----- */

.bb-bonus-card {
  box-shadow: 5px 5px 20px 5px rgba(128, 128, 128, 0.5);
  text-align: center;
  padding: 20px;
  margin: 60px 0 100px 0;
}
.bb-bonus-text,
.bb-bonus-text2 {
  font-size: 1.5em;
  margin-bottom: 20px;
}
.bb-bonus-text3 {
  text-decoration: underline;
}
.bb-bonus-dots {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.bb-bonus-dot {
  background-color: #f1684b;
  width: 60px;
  height: 15px;
}

.bb-dot4,
.bb-dot5 {
  background-color: lightgray;
}

/* ----- UPCOMING BOOKINGS CARD ---- */
.bb-main-content {
  width: 83.333%;
  max-width: 1170px;
  min-width: calc(768px -40px);
  margin: 0px auto;
  min-height: 600px;
  padding-bottom: 60px;
}

.bb-upcoming-title {
  margin-bottom: 40px;
}

.bb-upcoming-card {
  display: flex;
  box-shadow: 5px 5px 20px 5px rgba(128, 128, 128, 0.5);
  margin-bottom: 100px;
}
#bb-card-img {
  width: auto;
  height: auto;
}
@media (max-width: 900px) {
  .bb-upcoming-card {
    flex-wrap: wrap;
  }
  #bb-card-img {
    min-width: 100%;
  }
}
.bb-card-hotel-info h3 {
  margin-bottom: 5px;
}

.bb-upcoming-card-info {
  width: 100%;
  padding-left: 1em;
}

.bb-upcoming-card-checkin,
.bb-upcoming-card-confirmation,
.bb-card-bonus-info {
  display: flex;
  width: 100%;
  margin: 20px auto;
}

.bb-rooms-booked,
.bb-card-bonus-nights {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
}

.bb-card-changes {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: flex-end;
  align-items: flex-end;
  margin-right: 20px;
  font-style: italic;
  text-decoration: underline;
}

.bb-checkin-details,
.bb-checkout-details,
.bb-stays-details {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
}

.bb-confirmation-details {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
}

/* ----- PREVIOUS BOOKINGS CARDS ----- */
.bb-previous-title {
  margin-bottom: 40px;
}
.bb-previous-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 30px;
  column-gap: 30px;
  margin-bottom: 100px;
}

@media (max-width: 900px) {
  .bb-previous-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 20px;
  }
}
.bb-grid-card {
  width: auto;
  height: auto;
  box-shadow: 5px 5px 20px 5px rgba(128, 128, 128, 0.5);
}

#bb-grid-card-img {
  width: 100%;
  height: auto;
}

.bb-grid-hotel-info {
  margin-left: 10px;
}
.bb-grid-hotel-info h3 {
  margin-bottom: 0;
}
.bb-upcoming-grid-checkin {
  display: flex;
  width: 100%;
  margin: 20px auto;
  margin-left: 10px;
}

.bb-upcoming-grid-confirmation {
  display: flex;
  width: 100%;
  margin-bottom: 20px;
  margin-left: 10px;
}
