
* {
   box-sizing: border-box; 
   margin: 0; 
   padding: 0; 
  }

html,body { 
  font-family: Arial, Helvetica, sans-serif; 
  line-height: 1.4; 
  color: #222; 
}

a {
   color: inherit; 
   text-decoration: none; }


.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: linear-gradient(90deg,#f0c432,#e96262);
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.brand { 
  display:flex; 
  align-items:center;
   gap:12px; 
  }


.logo { 
  width:56px;
   height:auto; 
  }


.main-nav ul {
   list-style:none; 
   display:flex; 
   gap:12px; 
  }



.main-nav a { 
  padding:8px 10px; 
  border-radius:6px; 
  transition: background .15s; 
}


.main-nav a:hover {
   background: rgba(0,0,0,0.05); 
  }





.hero { 
  position: relative; 
  height: 320px; 
  display:flex; 
  align-items:center; 
  justify-content:center; 
  overflow:hidden; 
}


.hero-bg {
  width:100%; 
  height:100%; 
  object-fit:cover; 
  position:absolute; 
  top:0; left:0; 
  filter: brightness(0.6); 
}


.hero-content { 
  position:relative; 
  color:#fff; 
  text-align:center; 
  padding:1rem; 
}


.slogan { 
  font-style: italic; 
  margin:8px 0 12px; 
}

.btn { 
  display:inline-block; 
  padding:8px 12px; 
  border-radius:6px; 
  background:#000000; 
  color: #ccc;
  border: none; 
  cursor:pointer; 
}


.btn:hover{
  background: rgba(248, 58, 0, 0.192);
  color: #000000;
}

.btn.primary { 
  background: #ff7043; 
  color: #fff; 
}


.price { 
  font-weight:700; 
  margin-top:6px; 
}

.cards { 
  display:flex; 
  gap:16px; 
  padding: 16px 8px; 
  flex-wrap:wrap;
}

.card { 
  width: 280px; 
  border:1px solid #eee; 
  border-radius:8px; 
  overflow:hidden; 
  background:#fff; 
}


.card img { 
  width:100%; 
  height:160px; 
  object-fit:cover; 
  display:block; 
}
.rooms-list { 
  padding: 18px; 
  display:flex; 
  flex-direction:column; 
  gap:12px; 
}


.room { 
  display:flex; 
  gap:12px; 
  border:1px solid #eee; 
  padding:12px; 
  border-radius:8px; 
  align-items:center; 
}


.room img { 
  width:220px; 
  height:140px; 
  object-fit:cover; 
}


.fac-grid { 
  display:grid; 
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
  gap:12px; 
  padding:12px; 
}


.facility img {
   width:100%; 
   height:140px; 
   object-fit:cover; 
   border-radius:6px; 
}




main {
  padding: 2rem;
}

.contact-info {
  background: #fff;
  padding: 1.5rem;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.contact-info h2 {
  margin-top: 0;
}

.contact-info address {
  font-style: normal;
  line-height: 1.8;
}

.inquiry-form {
  background: #fff;
  padding: 1.5rem;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.inquiry-form h2 {
  margin-top: 0;
}

.inquiry-form label {
  display: block;
  margin: 0.5rem 0 0.2rem;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.inquiry-form button {
  background: #333;
  color: #fff;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
}

.inquiry-form button:hover {
  background: #555;
}


.testimonials { 
  padding:18px; 
  display:flex; 
  flex-direction:column; 
  gap:18px; 
}
.testimonial { 
  border:1px solid #eee; 
  padding:12px; 
  border-radius:8px; 
}

/* Footer */
/* .site-footer {
  background:#e4a419; 
  padding:18px; 
  display:grid; 
  gap:12px;
}
.footer-contact, .newsletter, .footer-contactform { 
  margin-bottom:8px; 
} */




.dining {
  padding: 2rem;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin: 2rem auto;
  max-width: 1200px;
}

.dining h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #333;
}

.menu-item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 1rem;
}

.menu-item img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 5px;
  margin-right: 1.5rem;
}

.menu-item h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #333;
}

.menu-item p {
  margin: 0.5rem 0;
}

.menu-item .price {
  font-weight: bold;
  color: #ff6600;
}


.services {
  padding: 2rem;
  background: #f9f9f9;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin: 2rem auto;
  max-width: 1200px;
}

.services h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #333;
}

.services ul {
  list-style: disc;
  padding-left: 2rem;
}

.services ul li {
  margin-bottom: 0.5rem;
}



.site-footer {
  background: #333;
  color: #fff;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}


.site-footer .footer-contact,
.site-footer .newsletter,
.site-footer .footer-contactform {
  flex: 1 1 300px;
  max-width: 400px;
}

.site-footer h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #f4f4f9;
}

.site-footer address {
  font-style: normal;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.site-footer a {
  color: #ffcc00;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer .social-links a {
  margin: 0 0.5rem;
}

.site-footer form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-footer input,
.site-footer textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.site-footer button {
  background: #ffcc00;
  color: #333;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
}

.site-footer button:hover {
  background: #e6b800;
}

.site-footer .copyright {
  flex: 1 1 100%;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #bbb;
  text-align: center;

}




input[type="text"],input[type="email"],input[type="tel"],textarea {
  width:100%; 
  padding:8px; 
  margin:6px 0; 
  border:1px solid #ccc; 
  border-radius:6px;
}
.sr-only { 
  position:absolute; 
  left:-9999px; 
}



