/* Minilike Hotel CSS (moved out of HTML <style> blocks) */
body { margin:0; font-family: Arial, sans-serif; background:#f7f7f7; }
header { background:#111; color:white; padding:20px; display:flex; justify-content:space-between; align-items:center; }
header nav a { color:white; margin:0 10px; text-decoration:none; padding:6px 12px; }
header nav a.active, header nav a:hover { background:#f0c040; color:#000; border-radius:4px; }
.hero { height:500px; background:url('https://images.unsplash.com/photo-1501117716987-c8e1ecb210d4') center/cover; display:flex; justify-content:center; align-items:center; color:white; text-shadow:0 0 10px black; }
.hero-text { text-align:center; }
.btn { background:#f0c040; padding:14px 22px; color:black; text-decoration:none; font-weight:bold; border-radius:5px; }
.content { padding:40px; max-width:1100px; margin:auto; }
.room-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:20px; }
.room-card { background:white; border-radius:10px; box-shadow:0 2px 10px rgba(0,0,0,0.1); overflow:hidden; }
.room-card img { width:100%; height:200px; object-fit:cover; }
.gallery-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:15px; }
.gallery-grid img { width:100%; border-radius:10px; height:200px; object-fit:cover; }
.booking-form { display:flex; flex-direction:column; gap:15px; }
.booking-form input, .booking-form select { padding:10px; border:1px solid #ccc; border-radius:5px; }
.booking-form button { background:#111; color:white; padding:12px; border:none; cursor:pointer; border-radius:5px; }
footer { background:#111; color:white; text-align:center; padding:20px; margin-top:40px; }

/* Full-width hero map */
.hero-map-section {
  position: relative;
  width: 100%;
  margin-top: 40px;
}

.map-heading {
  text-align: center;
  margin-bottom: 15px;
}

/* Map container and iframe */
.hero-map-container {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  border-radius: 10px;
}

.hero-map {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

/* Floating navigate button */
.navigate-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #f0c040;
  color: #000;
  padding: 10px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* Simple fade-in utility */
.fade-in {
  animation: fadeIn 0.45s ease both;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

