* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  color: #222;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1150px, 92%);
  margin: auto;
}

/* HEADER */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.nav {
  min-height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-size: 25px;
  font-weight: 800;
}

.logo span {
  font-weight: 400;
}

nav {
  display: flex;
  gap: 25px;
}

nav a:hover {
  color: #b8860b;
}

.nav-book {
  background: #111;
  color: #fff;
  padding: 11px 20px;
  border-radius: 7px;
}


/* HERO */

.hero {
  min-height: 620px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.72),
      rgba(0,0,0,.35)
    ),
    url("img/banner1.png") center/cover;
  color: white;
}

.hero-content {
  padding: 80px 0;
}

.hero-text {
  max-width: 700px;
}

.tag {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: bold;
  margin-bottom: 15px;
}

h1 {
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.08;
  margin-bottom: 20px;
}

.hero-text > p {
  font-size: 18px;
  max-width: 650px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 25px;
  border-radius: 7px;
  font-weight: bold;
}

.primary {
  background: #fff;
  color: #111;
}

.whatsapp {
  background: #25d366;
  color: #fff;
}

.quick-info {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}


/* SECTIONS */

.section {
  padding: 85px 0;
}

.light {
  background: #f7f7f7;
}

.section-title {
  text-align: center;
  margin-bottom: 45px;
}

.section-title p {
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: bold;
}

.section-title h2 {
  font-size: 38px;
  margin-top: 5px;
}


/* ROOMS */

.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.room-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
}

.room-image {
  height: 230px;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
   background-image: url("img/img1.avif");
}

.room-content {
  padding: 25px;
}

.room-content h3 {
  font-size: 25px;
  margin-bottom: 8px;
}

.room-content ul {
  list-style: none;
  margin: 18px 0;
}

.room-content li {
  margin: 6px 0;
}

.room-btn {
  display: block;
  text-align: center;
  background: #111;
  color: white;
  padding: 12px;
  border-radius: 6px;
}

.featured {
  border: 2px solid #111;
}

.popular {
  display: inline-block;
  background: #111;
  color: white;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}


/* AMENITIES */

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.amenity {
  background: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}

.amenity span {
  font-size: 35px;
}

.amenity h3 {
  margin: 10px 0;
}


/* LOCATIONS */

.nearby {
  padding: 85px 0;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.location-grid div {
  padding: 20px;
  background: #f7f7f7;
  border-radius: 8px;
  font-weight: bold;
}


/* BOOKING */

.booking-section {
  padding: 90px 0;
  background: #111;
  color: white;
}

.booking-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.booking-info h2 {
  font-size: 45px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.booking-info p {
  color: #ddd;
}

.contact-box {
  margin-top: 30px;
  padding: 20px;
  background: #222;
  border-radius: 8px;
}

.contact-box strong,
.contact-box a {
  display: block;
}

.contact-box a {
  margin-top: 5px;
  font-size: 22px;
  font-weight: bold;
}


/* FORM */

.booking-form {
  background: white;
  color: #222;
  padding: 30px;
  border-radius: 12px;
}

.booking-form label {
  display: block;
  font-weight: bold;
  margin: 12px 0 5px;
}

.booking-form input,
.booking-form select {
  width: 100%;
  padding: 13px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
}

.submit-btn {
  width: 100%;
  border: none;
  background: #25d366;
  color: white;
  padding: 15px;
  margin-top: 20px;
  border-radius: 7px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: #777;
  margin-top: 10px;
}


/* MAP */

.map-wrapper {
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}


/* FAQ */

.faq {
  max-width: 900px;
}

details {
  background: white;
  padding: 20px;
  margin-bottom: 12px;
  border-radius: 8px;
}

summary {
  cursor: pointer;
  font-weight: bold;
}


/* FOOTER */

footer {
  background: #050505;
  color: white;
  padding-top: 50px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer-content a {
  display: block;
  margin-top: 8px;
}

.copyright {
  text-align: center;
  border-top: 1px solid #222;
  margin-top: 40px;
  padding: 20px;
  color: #999;
}


/* FLOATING */

.floating-buttons {
  display: none;
}


/* MOBILE */

@media (max-width: 800px) {

  nav {
    display: none;
  }

  .nav {
    min-height: 65px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    padding: 60px 0;
  }

  .room-grid,
  .amenity-grid,
  .location-grid,
  .booking-container {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .booking-info h2 {
    font-size: 36px;
  }

  .footer-content {
    flex-direction: column;
  }

  .nav-book {
    padding: 9px 14px;
  }

  .floating-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 9999;
  }

  .floating-buttons a {
    width: 50%;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    color: white;
  }

  .float-call {
    background: #111;
  }

  .float-whatsapp {
    background: #25d366;
  }

}
.room-image-slider {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.room-image-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.4s ease;
}

.image-prev,
.image-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  cursor: pointer;
  font-size: 18px;
}

.image-prev {
  left: 12px;
}

.image-next {
  right: 12px;
}

.image-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
}

.image-dots span {
  width: 9px;
  height: 9px;
  background: white;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.7;
}

.image-dots span.active {
  opacity: 1;
}
```css
/* ================================
   NL RESIDENCY FOOTER
================================ */

.site-footer {
  width: 100%;
  background: #111827;
  color: #d1d5db;
  margin-top: 50px;
}

/* Main Footer Container */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 25px 45px;

  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 45px;
}

/* Footer Columns */
.footer-column h2 {
  color: #ffffff;
  font-size: 28px;
  margin: 0 0 12px;
  font-weight: 700;
}

.footer-column h3 {
  color: #ffffff;
  font-size: 18px;
  margin: 0 0 18px;
  line-height: 1.4;
}

/* About */
.footer-about h3 {
  font-size: 16px;
  font-weight: 500;
  color: #e5e7eb;
}

.footer-about p {
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
  color: #bfc5d1;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 11px;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 5px;
}

/* Contact */
.footer-contact p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.6;
}

.footer-contact a {
  color: #d1d5db;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-contact a:hover {
  color: #ffffff;
}

.location-title {
  margin-top: 28px !important;
}

.footer-contact address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.8;
  color: #cbd5e1;
}

/* Bottom Footer */
.footer-bottom {
  border-top: 1px solid #374151;
  text-align: center;
  padding: 20px 15px;
}

.footer-bottom p {
  margin: 0;
  color: #9ca3af;
  font-size: 14px;
}

/* ================================
   TABLET
================================ */

@media (max-width: 900px) {

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }

  .footer-about {
    grid-column: span 2;
  }
}

/* ================================
   MOBILE
================================ */

@media (max-width: 600px) {

  .footer-container {
    grid-template-columns: 1fr;
    padding: 45px 20px 35px;
    gap: 32px;
  }

  .footer-about {
    grid-column: span 1;
  }

  .footer-column h2 {
    font-size: 25px;
  }

  .footer-column h3 {
    font-size: 17px;
  }

  .footer-about p {
    font-size: 14px;
    line-height: 1.7;
  }

  .footer-links a {
    font-size: 14px;
  }

  .footer-contact p {
    font-size: 14px;
  }

  .footer-bottom {
    padding: 18px 12px;
  }

  .footer-bottom p {
    font-size: 13px;
    line-height: 1.6;
  }
}

/* ================================
   SMALL MOBILE
================================ */

@media (max-width: 380px) {

  .footer-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer-column h2 {
    font-size: 23px;
  }

  .footer-column h3 {
    font-size: 16px;
  }
}
```
