* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f5f5f5;
  color: #333;
}

header {
  background: #222;
  padding: 15px 40px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
 
}

nav h1 {
  color: #f4c10f;
}

nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: #f4c10f;
}



.section {
  padding: 50px 40px;
  background: white;
  margin: 20px auto;
  max-width: 1000px;
  border-radius: 6px;
}

.section h2 {
  margin-bottom: 20px;
  color: #222;
}

.card {
  background: #fafafa;
  padding: 20px;
  margin-bottom: 15px;
  border-left: 5px solid #f4c10f;
}

button {
  background: #f4c10f;
  border: none;
  padding: 12px 20px;
  font-weight: bold;
  cursor: pointer;
}

button:hover {
  background: #d4a90d;
}

form input, form select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
}

footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
  display: flex;
}
.hero {
  background: url("../images/upperview.jpg") center/cover no-repeat;
  color: white;
  padding: 120px 40px;
  text-align: center;
}

.overlay {
  background: rgba(0,0,0,0.6);
  padding:20px;
  border-radius: 6px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.menu-card {
height: auto;
  background: white;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.menu-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.room1{
height: 300px;
width: 100%;
}

.menu-card .content {
  padding: 15px;
}

.menu-card h3 {
  margin-bottom: 5px;
}

.price {
  color: #f4c10f;
  font-weight: bold;
}

.badge {
  background: #222;
  color: white;
  display: inline-block;
  padding: 4px 8px;
  font-size: 12px;
  margin-top: 5px;
  border-radius: 4px;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  font-size: 28px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  text-align: center;
  line-height: 55px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  text-decoration: none;
}

.whatsapp-float:hover {
  background: #1ebd5a;
}
.order-section {
  max-width: 400px;
  margin: 40px auto;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
}

.order-section h2 {
  text-align: center;
}

.order-section input,
.order-section select,
.order-section textarea,
.order-section button {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
}

.order-section button {
  background: #25D366;
  color: white;
  border: none;
  cursor: pointer;
}
.map-section {
  max-width: 900px;
  margin: 40px auto;
}
/* HERO BUTTONS */
.hero .btn {
  margin: 10px 10px 0 0;
  background: #f4c10f;
  color: #222;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
}

.hero .btn:hover {
  background: #d4a90d;
}

.hero .whatsapp-btn {
  background: #25D366;
  color: white;
}

.hero .whatsapp-btn:hover {
  background: #1ebd5a;
}

/* MENU GRID */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* MENU CARD */
.menu-card .content {
  padding: 10px;
  text-align: center;
  
}


.menu-card .price {
  color: #f4c10f;
  font-weight: bold;
}
 /* features grid 
    .features{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin:24px 0}
    .feature{background:var(--card);padding:16px;border-radius:12px;box-shadow:var(--shadow);text-align:center}
    .feature h4{margin:8px 0}
    .muted{color:var(--muted)}*/

.features .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 20px;
  margin-top: 20px;
  padding-left: 15%;
  padding-right: 15%;
}

.feature-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.feature-card a{
  text-decoration: none;
  color: #333;
}
.feature-card a:hover{
  color: #f4c10f;
}

.gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 10px;
}

.gallery .gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
}

.btn {
  background: #f4c10f;
  color: #222;
  padding: 12px 25px;
  margin: 10px 5px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
}

.btn:hover {
  background: #d4a90d;
}
.hero-slider {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.slides .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slides .slide.active {
  opacity: 1;
}

.hero-slider .overlay {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -10%);
  color: white;
  text-align: center;
  padding: 20px;
  background: rgba(0,0,0,0.1);
  border-radius: 8px;
}

.slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
  pointer-events: none;
}

.slider-nav span {
  font-size: 36px;
  color: white;
  cursor: pointer;
  pointer-events: all;
  user-select: none;
}
.contact-info {
  max-width: 1000px;
  margin: 40px auto;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.contact-cards .card {
  background: #fafafa;
  padding: 20px;
  border-left: 5px solid #f4c10f;
  border-radius: 6px;
}
 .card a {
  color:rgba(0, 0, 0, 0.432);
}
 .card a:hover {
  color: #f4c10f;
}

#contactForm {
  max-width: 600px;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
}

#contactForm input,
#contactForm textarea,
#contactForm button {
  margin-bottom: 15px;
  padding: 12px;
  font-size: 16px;
}

#contactForm button {
  background: #f4c10f;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

#contactForm button:hover {
  background: #d4a90d;
}
/*room page*/
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.room-card {
  background: white;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
}

.room-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.room-card .content {
  padding: 15px;
}

.room-card h3 {
  margin: 10px 0;
  font-size: 18px;
}

.room-card p {
  font-size: 14px;
  margin: 5px 0;
}

.room-card .price {
  color: #f4c10f;
  font-weight: bold;
  margin: 10px 0;
}

.room-card .btn {
  display: inline-block;
  background: #f4c10f;
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

.room-card .btn:hover {
  background: #d4a90d;
}
/*nav links with hamburger menu*/
#navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #222;
  padding: 15px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

#nav-links a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
}

#nav-links a:hover {
  color: #f4c10f;
}

#navbar.scrolled {
  background: rgba(34, 34, 34, 0.95);
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: 0.3s;
}

/* Hamburger styling */
#hamburger {
  display: none; /* hidden on large screens */
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

#hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 850px) {
  #nav-links {
    display: none;
    position: absolute;
    top: 65px;
    right: 0;
    background: #222;
    flex-direction: column;
    width: 200px;
    padding: 15px;
    border-radius: 4px;
  }

  #nav-links.show {
    display: flex;
  }

  #nav-links a {
    margin: 10px 0;
  }

  #hamburger {
    display: flex;
  }
}
.developer-contact{
  padding-left: 10%;
}
.important-links{
  padding-left: 20%;
  text-decoration: none;
  color: #f5f5f5;

}
.important-links a{
  text-decoration: none;
  color: #f5f5f5;
  display: block;
}
.important-links a:hover{
  color: yellow;
}
.developer-contact a{
  text-decoration: none;
  color: #f5f5f5;
  display: block;
}
.developer-contact a:hover{
  color: yellow;
}