* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

  h1 {
    font-size: 3rem;
    color: #6e2c00;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-family: 'Georgia', serif;
    position: relative;
    margin: 50px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
  }

.subtitle {
  font-family: 'Georgia', serif;
  font-size: 2rem;
  color: #5C4033;
  text-align: center;
  margin: 40px 0;
  letter-spacing: 1px;
  background: linear-gradient(to right, #D2B48C, #A67B5B);
  padding: 20px 15px;
}

  

.gallery-container {
    width: 100vw;
    height: 340px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none; 
    margin-bottom: 20px;
}
  
.gallery-container::-webkit-scrollbar {
    display: none;
}
  

.gallery {
    display: inline-flex;
    gap: 10px;
    padding: 10px;
}
  
.gallery img {
  width: 350px;   
  height: 300px;  
  object-fit: cover; 
  margin: 5px;
  border-radius: 10px;
  cursor: pointer;
}
  
  .gallery-img:hover {
    transform: scale(1.03);
    transition: 0.5s;
  }
  
  body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #F5F1E3; 
    color: #5C4033;
  }


  .catalog-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0;
  }


  .hotel-card {
    display: flex;
    align-items: center;
    width: min(1100px, 90vw);
    margin: 0 auto 50px auto;
    min-height: 500px;
    background: linear-gradient(to right, #D2B48C, #A67B5B);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    border-radius: 18px;
    overflow: hidden;
  }


  .image-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-radius: 10px;
    gap: 5px;
    width: 40%;
    height: 100%;
    background-color: #8C6F56;
    padding: 5px;
  }

  .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
  }


  .hotel-details {
    width: 60%;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .hotel-title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #582b03;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .hotel-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #E6DED6;
    border-bottom: 1px solid #A67B5B;
    padding-bottom: 10px;
    text-align: justify;
  }
  
  .hotel-price {
    font-weight: bold;
    font-size: 22px;
    text-align: right;
    color: #352206;
    margin-top: auto;
  }

.buttons-container {
  text-align: center;
  justify-content: center;
  margin-top: 10px;
  display: flex;
  flex-direction: row;
}

.buttons-container button {
  padding: 12px 25px;
  margin: 10px;
  margin-top: 50px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}


.buttons-container .btn-more-info {
  background-color: wheat;
  border-color: rgba(135, 76, 9, 0.5);
  color: rgba(135, 76, 9, 0.5);
}


.buttons-container .btn-book-now {
  background-color: rgba(135, 76, 9, 0.5);
  border-color:rgba(135, 76, 9, 0.5);
  color: white;
}


.buttons-container .btn-more-info:hover {
  background-color: rgba(100, 64, 9, 0.7); 
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}


.buttons-container .btn-book-now:hover {
  background-color: rgba(100, 64, 9, 0.7);
  color: white;
  transform: translateY(-3px); 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1440px) {

  .gallery-container {
    height: 220px;
  }

  .gallery img {
    width: 250px;   
    height: 200px;
  }

  .hotel-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .buttons-container button {
    font-size: 10px;
    margin-top: 20px;
  }

  .hotel-description {
    font-size: 12px;
  }

  .image-container {
    width: 50%;
  }

  .hotel-card {
    height: 400px;
  }
}


@media (max-width: 767px) {

  h1 {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1.5rem;
  }

  .gallery-container {
    height: 90px;
    margin-bottom: 0px;
  }

  .gallery img {
    width: 100px;   
    height: 75px;
    margin: 0px;
  }

  .hotel-title {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .buttons-container button {
    font-size: 8px;
    margin-top: 10px;
  }

  .hotel-description {
    font-size: 12px;
  }

  .hotel-card {
    height: 600px;
    width: 35vh;
    margin-left: 12%;
    display: flex;
    flex-direction: column;

  }

  .image-container {
    width: 100%;
    border-radius: 10px;
  }

  .hotel-details {
    width: 100%;
  }

  .catalog-container {
    justify-content: center;
    margin-left: 1%;

  }

  .hotel-price {
    font-size: 12px;
  }
}