 /* Basic Reset */
       
        /* Container */
        .hotel-container {
            display: flex;
            justify-content: space-between;
            padding: 10px;

        }

        /* Filter Table */
        .hotel-filter {
            width: 30%;
            padding: 15px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
            margin-right: 20px;
            border-radius: 1rem;
            background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
             background-size: 400% 400%;
            animation: gradient 15s ease infinite;
             height: 130vh;
            padding: 1rem;
            box-shadow: .5rem .5rem #880e4f;
            border-top: .2rem solid darkcyan;
            border-left: .5rem solid darkcyan;


        }
        @keyframes gradient {
         0% {
        background-position: 0% 50%;
             }
         50% {
        background-position: 100% 50%;
         }
         100% {
        background-position: 0% 50%;
             }
        }
        .hotel-filter h3 {
            text-align: center;
            margin-bottom: 20px;
            font-weight: 900;
        }
        .filter-option {
            margin-bottom: 15px;
        }

        /* Main Table */
        .hotel-main {
            width: 70%;
            background-color: whitesmoke;
            padding: 1rem;
            border-radius: 1rem;
            box-shadow: .5rem .5rem #880e4f;
            border-top: .2rem solid darkcyan;
            border-left: .5rem solid darkcyan;
        }

        /* Hero Section */
        .hotel-hero {
            position: relative;
            height: 300px;
            background-image: red;
            background-size: cover;
            background-position: center;
            text-align: center;
            color: white;
        }
        .hero-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        .hero-text h1 {
            font-size: 3rem;
        }

        /* Search Bar */
       .hero {
  background: url('images/slide1.jpg') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 100px 0;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  width: 30%;
  color: #880e4f;
  background-color: white;
  box-shadow: none;
  opacity: 0.5;
  font-weight: bold;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.5;
  background-color: red;
  width: 30%;
  margin-bottom: 1rem;
  border-radius: 1rem;
  border-bottom: 1.5rem solid white;
}

.search-form {
  display: flex;
  justify-content: center;
  background: #880e4f;
  margin: 0 auto;
  padding: 1rem;
  margin-top:3rem  ;
  gap: .1rem;
  width: 50%;
}

.search-form input {
  padding: 10px;
  font-size: 1rem;
  outline: none;
  border-radius: .5rem;
  border: none;

}

.search-form button {
  padding: 10px 20px;
  font-size: 1rem;
  background-color:red;
  color: white;
  border: none;
  cursor: pointer;
}

.search-form button:hover {
  background-color: #ff4d42;
}

.featured-rooms {
  padding: 10px 10px;
  text-align: center;
  border-radius: .5rem;
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    
}
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.featured-rooms h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  background-color:lightblue;
  box-shadow: .3rem .3rem #880e4f;
  color:#880e4f ;
}

.room-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.room {
  background-color: white;
  padding: 20px;
  width: 30%;
  margin: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.room img {
  width: 100%;
  border-radius: 8px;
}

.room h3 {
  margin: 15px 0;
  font-size: 1.5rem;
}

.room p {
  font-size: 1rem;
  margin: 10px 0;
}

.room span {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.room button {
  padding: 10px 20px;
  font-size: 1rem;
  background-color: #ff6f61;
  color: white;
  border: none;
  cursor: pointer;
}

.room button:hover {
  background-color: #ff4d42;
}


        /* Discover your favourite stay Slider */
        .hotel-slider,
        .deal-slider,
        .explore-slider {
            display: flex;
            overflow: auto;
            background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
            background-size: 400% 400%;
            animation: gradient 15s ease infinite;
            border-radius: .5rem;
            box-shadow: .5rem .5rem white;
            padding: .5rem;
        }
        
        
        h2{
            background-color: darkred;
            width: 50%;
            margin: 0 auto;
            margin-top: 1rem;
            margin-bottom: .3rem;
            box-shadow: .5rem .5rem white;
            color: white;


        }

        .hotel-card {
            
            padding: 20px;
            margin-right: 15px;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            width: 250px;
            text-align: center;
            background-color: white;
        }

        .hotel-card img {
            width: 100%;
            border-radius: 5px;
        }

        .hotel-card h4 {
            margin: 10px 0;
            font-size: 1.1rem;
        }

        .hotel-card p {
            color: #777;
            font-size: 0.9rem;
        }

        .hotel-card .price {
            font-size: 1.2rem;
            color: #333;
        }

        .hotel-card .book-now {
            display: block;
            margin: 15px auto;
            padding: 10px 20px;
            background-color: #4CAF50;
            color: white;
            text-decoration: none;
            border-radius: 5px;
        }

        /* Explore Section */
        .explore-topbar {
            display: flex;
            justify-content: space-around;
            background-color: #f0f0f0;
            padding: 10px;
            margin-bottom: 20px;
        }
        .explore-topbar button {
            background-color: #fff;
            border: 1px solid #ddd;
            padding: 8px 20px;
            cursor: pointer;
        }

        .explore-hotels {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        /* Filter Options */
        .filter-option select,
        .filter-option input {
            width: 100%;
            padding: 8px;
            margin-top: 5px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hotel-container {
                flex-direction: column;
            }
            .hotel-filter {
                width: 100%;
                margin-bottom: 20px;
            }
            .hotel-main {
                width: 100%;
            }
        }