/*
File: Css File;
Project: AHML
Author: UMID Infotech 
*/
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
}
.text-center {
  text-align: center;
}
/*Header*/
.logo{
    width:75%;
}
.header {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}

/*===============> Home page<=============== */

/* Hero section */
.hero {
  background-image: url("../media/home.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: 100vh;
}
/* Booking Form with Glassmorphism Effect */
.booking-form {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 25px;
  color: white;
  border-radius: 15px;
  width: 320px;
  text-align: center;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.2);
}

.booking-form h3 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: bold;
  color: white;
}

.booking-form label {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: bold;
}

.booking-form input {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 8px;
  border: none;
  outline: none;
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.booking-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.booking-form button {
  background: linear-gradient(135deg, #ff8f66, #d32f2f);
  color: white;
  border: none;
  padding: 12px;
  width: 100%;
  margin-top: 15px;
  cursor: pointer;
  border-radius: 20px;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}

.booking-form button:hover {
  background: linear-gradient(135deg, #d32f2f, #ff8f66);
  transform: scale(1.05);
}

/* Hero text content */

.content {
  background-color: rgba(0, 0, 0, 0.4); /* Black with transparency */
  backdrop-filter: blur(10px); /* Mirror/glass blur effect */
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  padding: 20px;
  border-radius: 10px;
}

.hero_welcome,
.hero_akshita {
  color: whitesmoke;
  -webkit-text-stroke: 1px red;
  text-stroke: 1px red;
}
.hero_txt {
  color: white !important;
  font-size: 24px;
  font-weight: 500;
}
/* About section */
.text-container {
  max-width: 600px;
}

.text-container h1 {
  font-size: 50px;
  font-weight: bold;
}

.text-container .bold-text {
  font-weight: bold;
  margin: 20px 0;
}

.text-container p {
  font-size: 16px;
  color: #555;
}

.discover-btn {
  margin-top: 20px;
  padding: 12px 24px;
  font-size: 16px;
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.discover-btn:hover {
  background-color: #217dbb;
}
.image-container {
  position: relative;
}

/* Stats Section */
.stats {
  display: flex;
  justify-content: space-around;
  background-color: #f8c8dc;
  padding: 20px;
}

.stat-box {
  text-align: center;
}

.stat-box h2 {
  font-size: 30px;
  font-weight: bold;
}

.stat-box p {
  font-size: 16px;
}
/* facilities sectioc */
.facility {
  border: 2px solid rgb(252, 249, 249);
  box-sizing: border-box;
  box-shadow: 2px white;
}

.hotel_information,
.gallery,
.room,
.facilities h2 {
  font-size: 32px;
  margin-bottom: 80px;
  margin-top: 80px;
  text-align: center;
}

.facilities p {
  font-size: 18px;
  color: #555;
  text-align: center;
}

.facility-icons {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.facility {
  text-align: center;
}

.facility img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

/* gallery section */

.gallery-wrapper {
  max-width: 70%;
  margin: auto;
  text-align: center;
  position: relative;
}

.main-image-container {
  position: relative;
}

.main-image-container img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.thumbnail-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.thumbnail {
  width: 60px;
  height: 60px;
  object-fit: cover;
  opacity: 0.6;
  cursor: pointer;
  border: 2px solid transparent;
}

.thumbnail.active {
  opacity: 1;
  border-color: red;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: black;
  color: white;
  border: none;
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
  opacity: 0.7;
}

.prev {
  left: 10px;
}
.next {
  right: 10px;
}
/* Hotel Information */

.info-box {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 10px;
  padding: 15px;

  border-radius: 10px;
}

.info-box i {
  font-size: 24px;
  color: #007bff;
}

.info-box p {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
}

.info-box span {
  display: block;
  font-size: 14px;
  color: #555;
}

/* ======================>Rooms<====================== */
.booknow {
  background: linear-gradient(135deg, #ff8f66, #d32f2f);
  color: white;
  border: none;
  padding: 12px;
  width: 100%;
  margin-top: 15px;
  cursor: pointer;
  border-radius: 20px;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}

/* Footer */
.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #2c7388;
  color: white;
  padding: 20px;
  margin-top: 100px;
}

.footer div {
  width: 24%;
  text-align: left;
  font-size: 14px;
}

.footer div h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.footer div p {
  margin: 5px 0;
}

.footer-bottom {
  text-align: center;
  padding: 10px;
  background: #1c5263;
  color: white;
  font-size: 12px;
}
.wp{position:relative;}
.wp img{
    position: fixed;
    bottom: 25px;
    width: 50px;
    border: 1px solid white;
    border-radius: 5px;
    right: 10px;
}
/*=============================> Media Query Section <============================= */

/* @media (max-width: 400px) {
  body {
    background-color: black;
    color: white; 
  }
} */
