/* Importing Google font - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=Mea+Culpa&family=Pacifico&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px;
}

header .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.logo img{
  width:45%;
  height: 45%;
}

.navbar .logo span {
  color: #C06B3E;
}

.navbar .menu-links {
  display: flex;
  list-style: none;
  gap: 35px;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  transition: 0.2s ease;
}

.navbar a:hover {
  color: #edac89;

}

.hero-section {
  height: 70vh;
  background-image: url("../image/hotel-hero.jpg");
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  padding: 0 20px;
  background-color: rgba(32, 32, 32, 0.301); /* Dark overlay */
  background-blend-mode: multiply; /* Blend color with image */

}

.hero-section .content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  color: #fff;
}

.hero-section .content h2 {
  font-size: 3rem;
  max-width: 600px;
  line-height: 70px;
}

.hero-section .content p {
  font-weight: 300;
  max-width: 600px;
  margin-top: 15px;
  font-size: 18px;
  background-color: rgba(32, 32, 32, 0.301); /* Dark overlay */
  background-blend-mode: multiply; /* Blend color with image */

}

.hero-section .content button {
  background: #fff;
  padding: 12px 30px;
  border: none;
  font-size: 1rem;
  border-radius: 6px;
  margin-top: 38px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.2s ease;
  background: #C06B3E;
  color: white;
}

.hero-section .content button:hover {
  color: #fff;
  background: #D87E50;
}

.promo-message {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background:  #C06B3E;;
  color: white;
  padding: 10px 0;
  position: relative;
}

.marquee {
  display: flex;
  width: max-content;
  gap: 50px; /* Space between repeated messages */
  animation: marquee 50s linear infinite; /* Slow speed */
}

.marquee span {
  font-size: 18px;
  font-weight: bold;
  display: inline-block;
  padding-right: 50px; /* Ensure spacing between messages */
  font-size: 25px;
}

@keyframes marquee {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}


#close-menu-btn {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  display: none;
}

#hamburger-btn {
  color: #fff;
  cursor: pointer;
  display: none;
}

@media (max-width: 768px) {
  header {
    padding: 10px;
  }

  header.show-mobile-menu::before {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
  }

  .navbar .logo {
    font-size: 1.7rem;
  }

    
  #hamburger-btn, #close-menu-btn {
    display: block;
  }

  .navbar .menu-links {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 70px 40px 0;
    transition: left 0.2s ease;
  }

  header.show-mobile-menu .navbar .menu-links {
    left: 0;
  }

  .navbar a {
    color: #000;
  }

  .hero-section .content {
    text-align: center;
  }

  .hero-section .content :is(h2, p) {
    max-width: 100%;
  }

  .hero-section .content h2 {
    font-size: 2.3rem;
    line-height: 60px;
  }
  
  .hero-section .content button {
    padding: 9px 18px;
  }
}


/* General Styling */
main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 20px;
  background-color: #f9f9f9;
}

main > h1 {
  font-family: "Mea Culpa", serif;
  font-weight: 400;
  font-size: 50px;
  margin-bottom: 30px;
  text-align: center;
}

/* Feature Container */
.feature-container {
  width: 80%;
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: auto;
  gap: 20px;
}

/* Feature Items */
.feature-item {
  border-radius: 10px;
  overflow: hidden;
}

/* Image Styling */
.feature-item:not(.description) {
  height: 250px;
  background-size: cover;
  background-position: center;
  border: none;
}

/* Descriptions */
.description {
  background: white;
  padding: 20px;
  border-radius: 10px;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  text-align: justify;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.description span {
  font-weight: bold;
  font-size: 18px;
  display: block;
  margin-bottom: 10px;
}

.description a {
  display: inline-block;
  margin-top: 10px;
  color: #d4a373;
  text-decoration: none;
  font-weight: bold;
}

.description a:hover {
  text-decoration: underline;
}

/* Image Backgrounds */
.item-1 { background-image: url("../image/bed-room.jpg"); }
.item-2 { background-image: url("../image/bathroom.jpg"); }
.item-3 { background-image: url("../image/pool.jpg"); }
.item-4 { background-image: url("../image/fine-dining.jpg"); }
.item-5 { background-image: url("../image/lounge-area.jpg"); }

/* Responsive Design */
@media (max-width: 1024px) {
  .feature-container {
    width: 90%;
    grid-template-columns: 1fr;
  }

  .feature-item:not(.description) {
    height: 200px;
  }

  .description {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .feature-container {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .feature-item:not(.description) {
    height: 180px;
  }

  .description {
    font-size: 14px;
    padding: 15px;
  }

  main > h1 {
    font-size: 40px;
  }
}



.pricing-container{
  display: flex;
  justify-content: center;
  height: 40vh;
  align-items: center;
  gap: 20px;
  background-color: #f9f9f9;
  flex-wrap: wrap;
}

.pricing-plan{
  background-color: white;
  text-align: center;
  max-width: 400px;
  padding: 10px;
  flex:1;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  height: 30vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}




ul {
  list-style: none;
  margin: 20px 0;
}

.plan-button{
  background-color: #C06B3E ;
  border: none;
  padding: 5px;
  color: white;
  border-radius: 5px;
  font-size: 16px;
}

.plan-button:hover{
  background: #D87E50;
}

.plan-title{
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.plan-price{
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 10px;
}


@media (max-width: 1250px) {
  .pricing-container {
  flex-direction: column;
  height: 100%;
}

.pricing-plan{
  width: 70%;
}

}

footer ul{
  display: flex;
  gap: 30px;
  justify-content: center;
}

footer p{
  text-align: center;
}
