@font-face {
  font-family: Raleway;
  src: url("fonts/Raleway-Regular.ttf");
}

.cta-btn {
  width: 200px;
  align-self: center;
}

body {
  font-family: Raleway;
}

section {
  margin-top: 60px;
}

header {
  background-color: #424242;
}

.logo {
  height: 55px;
}

.greeting {
  margin: 0;
  position: relative;
  font-weight: bold;
  background-image: linear-gradient(
      to right,
      rgba(36, 38, 38, 0.3),
      rgba(33, 43, 40, 0.3)
    ),
    url("imgs/bg.jpg");
  background-size: cover;
  background-position: center;
  height: 455px;
}

.greeting__caption {
  color: white;
  position: absolute;
  top: 50%;
}

.greeting h2 {
  font-size: 42px;
  font-weight: 700;
}

.greeting h4 {
  font-size: 24px;
}

.feature__img {
  height: 70px;
}

.feature__caption {
  font-size: 1rem;
  margin-top: 0.5rem;
}

.about .carousel-item {
  max-height: 360px;
}

.carousel-indicators {
  bottom: -35px;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #369f6e;
}

.carousel-indicators li:hover {
  cursor: pointer;
}

.carousel-indicators li.active {
  background-color: #369f6e;
}

.card {
  height: 100%;
  width: 100% !important;
}

.card-body {
  display: flex;
  flex-direction: column;
}

.room-features-container {
  margin-bottom: auto;
}

.room-features {
  margin: 0;
  margin-bottom: 1rem;
  padding: 0;
}

.room-feature {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.room-feature__img {
  width: 40px;
  margin-right: 1rem;
}

.room-feature__caption {
  margin: 0;
  text-align: left;
}

.review {
  padding: 15px;
  height: 100%;
}

.contacts {
  font-size: 24px;
  margin-bottom: 2rem;
}

.contact {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
}

.contact__img {
  width: 30px;
  margin-right: 0.5rem;
}

.contact__caption a {
  text-decoration: none;
  color: black
}

.col-sm:first-child {
  padding-left: 0;
}

.col-sm:last-child {
  padding-right: 0;
}

.col-sm:nth-child(odd) .review {
  background-color: #369f6e;
  color: white;
}

.col-sm:nth-child(even) .review {
  background-color: #f0f4f3;
}





.container {
    display: flex;
    width: 90%;
    margin: auto;
    gap: 20px;
}

.hotel-list {
    flex: 1;
    background: #f0f0f0;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    min-width: 200px;
}


.room-container {
    float: left;
    width: 50%;
    padding: 10px;
    flex: 2; /* Takes 2x the space */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.card-img-top {
    width: 50%; /* Makes image 2x smaller */
    height: auto;
    display: block;
    margin: 0 auto;
    border-bottom: 2px solid #ddd;
}

.room-features {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.room-feature {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.room-feature__img {
    width: 30px;
    height: auto;
    margin-right: 10px;
}

.cta-btn {
    width: 100%;
    margin-top: 10px;
}

.controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.column {
  float: left;
  width: 50%;
  padding: 10px;
  height: 300px;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
}