/* style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
}

header {
  background: #005f73;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}

.hero {
  background: url('hotel.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.cta {
  display: inline-block;
  background: #94d2bd;
  color: #000;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.cta:hover {
  background: #0a9396;
  color: #fff;
}

footer {
  background: #002e2e;
  color: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: 50px;
}


header {
  background: #003049;
  padding: 1rem 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav a {
  text-decoration: none;
  color: #edf2f4;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav a::after {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  background: #fcbf49;
  transition: width 0.3s ease;
  position: absolute;
  bottom: -5px;
  left: 0;
}

.nav a:hover {
  color: #fcbf49;
}

.nav a:hover::after {
  width: 100%;
}

/* courosel*/
.carousel {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 50px auto;
  overflow: hidden;
  border-radius: 10px;
}

.slides img {
  width: 100%;
  display: none;
  transition: opacity 1s ease-in-out;
}

.slides img.active {
  display: block;
}

.dots {
  text-align: center;
  margin-top: 10px;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: #003049;
}

/*Rooms*/
.room-carousel {
  padding: 60px 20px;
  background: #f4f4f4;
  text-align: center;
}

.room-carousel h2 {
  font-size: 2.5rem;
  color: #003049;
  margin-bottom: 30px;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.room-card {
  flex: 0 0 25%;
  padding: 10px;
  box-sizing: border-box;
  background: #fff;
  margin: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
}

.room-card img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 10px;
}

.carousel-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: #003049;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 1.5rem;
}

/*S.E.) Section*/

@media (max-width: 1024px) {
  .room-card {
    flex: 0 0 50%;
  }
}

@media (max-width: 600px) {
  .room-card {
    flex: 0 0 100%;
  }

  .carousel-btn {
    top: 45%;
    padding: 8px 12px;
    font-size: 1.2rem;
  }
}

/*Section*/
.services-section {
  padding: 60px 20px;
  background: #f8f8f8;
  text-align: center;
}

.services-section h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transform: translateY(30px);
  opacity: 0;
  animation: fadeUp 1s forwards;
}

.service-card:nth-child(1) { animation-delay: 0s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.4s; }
.service-card:nth-child(4) { animation-delay: 0.6s; }
.service-card:nth-child(5) { animation-delay: 0.8s; }
.service-card:nth-child(6) { animation-delay: 1s; }
.service-card:nth-child(7) { animation-delay: 1.2s; }
.service-card:nth-child(8) { animation-delay: 1.4s; }

@keyframes fadeUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.service-card {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeUp 1s forwards;
}

/*End Of Service*/

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*Latest room description*/
.rooms-section {
  padding: 60px 20px;
  text-align: center;
  background: #fdfdfd;
}

.rooms-section h2 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.section-subtitle {
  margin-bottom: 40px;
  color: #777;
  font-size: 1em;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.room-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  padding: 20px;
  transition: transform 0.4s ease;
}

.room-card:hover {
  transform: translateY(-10px);
}

.room-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.room-card h3 {
  margin: 10px 0;
  font-size: 1.3em;
  color: #222;
}

.price {
  color: #064635;
  font-weight: 600;
  margin-bottom: 15px;
}

input[type="date"] {
  margin: 5px;
  padding: 6px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

button {
  margin-top: 10px;
  background: #064635;
  color: rgb(255, 255, 255);
  padding: 10px 16px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #018f70;
}

/*Check in and no of*/

.room-card input[type="date"],
.room-card input[type="number"] {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 10px;
  border: none;
  border-radius: 8px;
  font-size: 0.95em;
  background: #f0f0f0;
  transition: all 0.3s ease-in-out;
  box-shadow: inset 0 0 0 2px transparent;
}

.room-card input[type="date"]:focus,
.room-card input[type="number"]:focus {
  outline: none;
  background: #ffffff;
  box-shadow: inset 0 0 0 2px #01a982, 0 4px 12px rgba(0,0,0,0.05);
  transform }
  
/*Whatsapp*/
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  cursor: pointer;
}
.whatsapp-float img {
  width: 48px;
  height: 48px;
}


/*Findings for booking querry*/
.booking-section {
  padding: 60px 20px;
  background: #fefefe;
  text-align: center;
}

.room-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
}

.room-card {
  flex: 1 1 30%;
  max-width: 360px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.room-card:hover {
  transform: translateY(-8px);
}

.room-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.room-card h3 {
  margin: 10px 0 5px;
  color: #2c2c2c;
}

.room-card p {
  font-weight: bold;
  color: #01a982;
  margin-bottom: 12px;
}

.input-group {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.input-group input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.9em;
  transition: box-shadow 0.3s;
}

.input-group input:focus {
  outline: none;
  box-shadow: 0 0 0 2px #01a9824d;
  border-color: #01a982;
}

.book-btn {
  background: #01a982;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.book-btn:hover {
  background: #018f70;
}

