* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', Arial, sans-serif;
}

body {
  scroll-behavior: smooth;
  background: #fafafa;
  color: #222;
}

/* ---- HEADER ---- */
header {
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(0,0,0,0.82);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  z-index: 1000;
  backdrop-filter: blur(6px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.logo img {
  width: 40px;
  border-radius: 0.5rem;
}

nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

nav a:hover {
  color: #ff6b35;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* ---- HERO ---- */
.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  transition: background-image 1s ease-in-out;
}

.overlay {
  height: 100%;
  background: rgba(0,0,0,0.55);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  gap: 0.8rem;
}

.hero-eyebrow {
  font-size: 0.9rem;
  letter-spacing: 3px;
  color: #ff6b35;
  text-transform: uppercase;
  font-weight: 600;
}

.overlay h1 {
  font-size: 3.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.15;
}

.hero-sub {
  font-size: 1.3rem;
  color: #f0e6dc;
  font-weight: 300;
}

.hero-desc {
  font-size: 1rem;
  color: #ccc;
  max-width: 500px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  background: #ff6b35;
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 0.4rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
  background: #e85c28;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 14px 32px;
  border-radius: 0.4rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: #fff;
  color: #222;
}

/* ---- WHY US (NEW) ---- */
.why-us {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.why-card {
  padding: 2rem 1.5rem;
  border: 1px solid #f0e6dc;
  border-radius: 0.8rem;
  transition: box-shadow 0.3s, transform 0.3s;
}

.why-card:hover {
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.15);
  transform: translateY(-4px);
}

.why-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.8rem;
}

.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.why-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* ---- SECTION SUBTITLE ---- */
.section-subtitle {
  color: #777;
  font-size: 1rem;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.section {
  padding: 80px 20px;
  text-align: center;
}

/* ---- ROOMS ---- */
.rooms {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  margin-bottom: 2rem;
  align-items: center;
  gap: 1rem;
  padding: 60px 20px;
  background: #f9f5f2;
}

.rooms h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
}

.all-rooms {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  justify-items: center;
  align-items: stretch;
  max-width: 1100px;
  width: 100%;
}

.room-card {
  background: #fff;
  border-radius: 0.8rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.18);
}

.room-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.room-info {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.room-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #222;
}

.room-info p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.6;
  flex: 1;
}

.room-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.8rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.room-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: #ff6b35;
}

.btn-book {
  background: #ff6b35;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 0.4rem;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-book:hover {
  background: #e85c28;
}

/* ---- MENU ---- */
.menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding: 60px 20px;
  background: #fff;
}

.menu h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
}

.detail-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  width: 100%;
}

.menu-card {
  border-radius: 0.8rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  background: #f9f5f2;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}

.menu-card:hover {
  transform: scale(1.03);
}

.menu-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.menu-card-info {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.menu-card-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #222;
}

.menu-card-info p {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.5;
}

.menu-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ff6b35;
  margin-top: 0.3rem;
}

#gallery {
  padding: 12px 30px;
  text-align: center;
  background-color: #ff6b35;
  border: none;
  border-radius: 0.4rem;
  font-size: 1rem;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
}

#gallery:hover {
  background: #e85c28;
}

/* ---- FEATURES ---- */
#features {
  text-align: center;
  margin-top: 2rem;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  padding: 60px 20px 10px;
}

.features {
  padding: 1rem 20px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  justify-items: center;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.features div {
  box-shadow: 0 4px 18px rgba(255, 69, 0, 0.18);
  border-radius: 0.6rem;
  padding: 1rem;
  background: #fff;
  transition: transform 0.3s;
}

.features div:hover {
  transform: translateY(-4px);
}

.icons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
}

.icons p {
  font-size: 0.82rem;
  color: #444;
  text-align: center;
}

/* ---- TESTIMONIALS (NEW) ---- */
.testimonials {
  background: #1a1a1a;
  color: #fff;
  padding: 70px 20px;
  text-align: center;
}

.testimonials h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #fff;
}

.testimonials .section-subtitle {
  color: #aaa;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 2rem auto 0;
}

.testimonial-card {
  background: #2a2a2a;
  border-radius: 0.8rem;
  padding: 2rem 1.5rem;
  text-align: left;
  border-left: 4px solid #ff6b35;
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.stars {
  color: #ff6b35;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.testimonial-card p {
  font-size: 0.92rem;
  color: #ccc;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #ff6b35;
  font-weight: 600;
}

/* ---- BOOKING ---- */
.booking-form {
  max-width: 440px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.booking-form label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #444;
  margin-bottom: -6px;
}

.booking-form input,
.booking-form button {
  padding: 11px 14px;
  font-size: 15px;
  border-radius: 0.5rem;
  border: 1px solid #ddd;
}

.booking-form input:focus {
  outline: 2px solid #ff6b35;
  border-color: transparent;
}

.booking-form button {
  background: #ff6b35;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 0.5rem;
  transition: background 0.3s;
}

.booking-form button:hover {
  background: #e85c28;
}

#roomtype {
  height: 45px;
  border-radius: 0.5rem;
  border: 1px solid #ddd;
  padding: 0 10px;
  font-size: 0.92rem;
}

#roomtype:focus {
  outline: 2px solid #ff6b35;
}

.booking-success {
  background: #e6f9f0;
  color: #1a7a4a;
  padding: 14px;
  border-radius: 0.5rem;
  font-size: 0.92rem;
  border: 1px solid #9ae0bf;
  text-align: center;
}

/* ---- ABOUT US ---- */
.aboutus {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-left: 5px solid #ff6b35;
  justify-content: center;
  align-items: flex-start;
  padding: 3rem 2.5rem;
  max-width: 860px;
  margin: 3rem auto;
  background: #fff;
  border-radius: 0.8rem;
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.1);
}

.aboutus h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
}

.about-quote {
  font-style: italic;
  font-size: 1.1rem;
  color: #ff6b35;
  border-left: none;
  padding: 0;
  font-family: 'Playfair Display', serif;
}

.aboutus p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 2rem;
  margin-top: 0.5rem;
  width: 100%;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #333;
}

.highlight-item span {
  color: #444;
}

/* ---- CONTACT ---- */
#contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#contact h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 700px;
  margin: 1.5rem auto 0;
  text-align: left;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,0.06);
  padding: 1.2rem;
  border-radius: 0.6rem;
}

.contact-item strong {
  display: block;
  color: #ff6b35;
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-item p {
  font-size: 0.92rem;
  color: #ccc;
}

/* ---- SOCIAL ---- */
.background {
  background-color: #111;
  color: white;
  margin-top: 2rem;
  padding: 2rem 1rem 0;
}

.main {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 2rem 0;
}

.main h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #fff;
}

.platforms {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-content: space-evenly;
  max-width: 500px;
  margin: 1rem auto;
  gap: 0.5rem;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: #ccc;
  font-size: 0.85rem;
  transition: color 0.3s, transform 0.3s;
}

.social-link img {
  border-radius: 0.5rem;
  transition: transform 0.3s;
}

.social-link:hover {
  color: #ff6b35;
  transform: translateY(-3px);
}

/* ---- QUICK LINKS ---- */
.links {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  padding-bottom: 1rem;
}

.links a button {
  background: transparent;
  color: #ccc;
  border: 1px solid #444;
  padding: 8px 18px;
  border-radius: 0.4rem;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s;
}

.links a button:hover {
  background: #ff6b35;
  color: #fff;
  border-color: #ff6b35;
}

/* ---- FOOTER ---- */
footer {
  background: #000;
  color: #aaa;
  text-align: center;
  padding: 18px;
  margin-top: 2rem;
  font-size: 0.88rem;
}

/* ---- ANIMATION ---- */
.animate {
  opacity: 0;
  transform: translateX(-40px);
  transition: 1s;
}

.animate.show {
  opacity: 1;
  transform: translateX(0);
}

/* ---- MOBILE ---- */
@media (max-width: 880px) {
  nav {
    position: absolute;
    top: 60px;
    right: 0;
    background: #000;
    width: 200px;
    display: none;
    flex-direction: column;
  }

  nav a {
    padding: 15px;
    border-bottom: 1px solid #333;
  }

  nav.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .all-rooms {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-menu {
    grid-template-columns: repeat(2, 1fr);
  }

  .features {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .overlay h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 600px) {
  .all-rooms {
    grid-template-columns: 1fr;
  }

  .detail-menu {
    grid-template-columns: 1fr;
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .overlay h1 {
    font-size: 1.9rem;
  }

  .hero-btns {
    flex-direction: column;
  }
}