* {
    margin: 0%;
    padding: 0%;
}


body {
    background-color: #3c2415;
 }

.hero-container {
    width: 100%;
    overflow: hidden;
    position: relative;
   top: 140px;
    
  }

  .hero-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
   
  }

  .hero-slide {
    min-width: 100%;
    height: 800px;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Navigation buttons */
  .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 24px;
    z-index: 1;
    transition: background-color 0.3s ease;
  }

  .nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }

  .prev-btn {
    left: 10px;
  }

  .next-btn {
    right: 10px;
  }

/* our hotel  */



 .hotel1 {
    margin-top: 12rem;
    margin-bottom: 2rem;
    font-size: 3rem;
    color: white;
    text-align: center;
 }
 .image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
 }
.contant1 img {
    width: 100%;
    height: 100%;
   border-radius: 5px;
}
.cont {
    color: black;
    padding-top: 10px;
}
.border-div {
    border: 1px solid white;
    /* padding: 10px; */
    border-radius: 5px;
    background-color: white;
    padding-bottom: 3rem;
}
.contant1 a {
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 2rem;
}


  /* Responsive adjustments */
  @media (max-width: 768px) {
    .hero-slide {
      height: 250px;
    }

    .nav-btn {
      font-size: 18px;
      padding: 8px 12px;
    }
    
  }


@media screen and (max-width:930px) {
    .image-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
     }
 }
 
@media screen and (max-width:530px) {
    .image-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
     }
 }






























