
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;          /* 1rem = 16px default */
  scroll-behavior: smooth;
}

/* Improved fonts & sizes – better readability + slightly smaller */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Inter:wght@300;400;500;600&display=swap');

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  font-size: 16px;               /* base size – clean & modern */
  color: #2d2d2d;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
  color: #6a1b9a;
}

h1 { font-size: 3.4rem; margin-bottom: 1.2rem; }
h2 { font-size: 2.6rem; margin-bottom: 1.8rem; }
h3 { font-size: 1.7rem; margin-bottom: 1rem; }

p {
  font-size: 1.05rem;
  margin-bottom: 1.4rem;
}

@media (max-width: 768px) {
  h1 { font-size: 2.6rem; }
  h2 { font-size: 2.1rem; }
  h3 { font-size: 1.45rem; }
  p  { font-size: 0.98rem; line-height: 1.7; }
}

.btn {
  font-size: 1.05rem;
  padding: 0.95rem 2rem;
  min-height: 50px;
}
.container { max-width:1300px; margin:0 auto; padding:0 25px; }

/* Forms – better mobile spacing */
.form-group input,
.form-group select,
.form-group textarea {
  font-size: 1rem;
  padding: 0.9rem 1.1rem;
}

/* Prevent zoom issues on iOS */
input[type="date"],
input[type="tel"],
input[type="number"] {
  font-size: 16px;          /* prevents iOS zoom on focus */
}

/* Container – safe max-width + padding */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (max-width: 576px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Hide horizontal overflow on small screens */
@media (max-width: 768px) {
  body, html {
    overflow-x: hidden;
  }
}

.hero {
  position: relative;
  height: 100vh;               /* Full viewport height */
  min-height: 700px;
  display: flex;
  align-items: center;         /* Vertical centering */
  justify-content: center;     /* Horizontal centering */
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(227, 222, 230, 0.65) 0%,
    rgba(245, 247, 171, 0.75) 50%,
    rgba(129, 82, 158, 0.85) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1100px;
  padding: 0 20px;
}

.hero-text-wrapper {
  margin-bottom: 3rem;         /* Space between text and booking form */
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;             /* Large and prominent */
  font-weight: 700;
  margin: 0 0 1rem 0;
  line-height: 1.1;
  text-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.6),
    0 2px 4px rgba(0, 0, 0, 0.4);
  letter-spacing: 1px;
}

.tagline {
  font-size: 2rem;
  font-weight: 400;
  margin: 0;
  opacity: 0.95;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Make sure everything stays centered on smaller screens */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 4rem;
  }
  .tagline {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 3.2rem;
  }
  .tagline {
    font-size: 1.4rem;
  }
  .hero-text-wrapper {
    margin-bottom: 2.5rem;
  }
}
/* Booking Form – Clean & Professional */
.booking-section {
  background: linear-gradient(135deg, #f9f9ff 0%, #ffffff 100%);
  padding: 8rem 0;
}

.booking-subtitle {
  text-align: center;
  font-size: 1.18rem;
  color: #555;
  margin: 0 auto 3rem;
  max-width: 700px;
}

.booking-form {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 2.8rem 2.5rem;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(106, 27, 154, 0.12);
  border: 1px solid #d4af3722;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem 2.2rem;
}


.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: #6a1b9a;
  font-size: 1.05rem;
}

.form-group input,
.form-group select {
  padding: 1rem 1.2rem;
  border: 1px solid #d4af3744;
  border-radius: 50px;
  font-size: 1rem;
  background: #fff;
  transition: all 0.3s ease;
}
/* Hide default date placeholder in most browsers */
input[type="date"]::-webkit-datetime-edit {
  color: transparent;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;   /* optional: hide native picker arrow if you want only icon */
  -webkit-appearance: none;
}

/* Show custom placeholder when empty */
input[type="date"]:invalid,
input[type="date"]:placeholder-shown {
  color: transparent;
}

input[type="date"]:focus,
input[type="date"]:valid {
  color: #333;
}

/* Wrapper for icon positioning */
.date-wrapper {
  position: relative;
}

.date-wrapper input {
  width: 100%;
  padding: 1rem 2.8rem 1rem 1.2rem;   /* space for icon on right */
  border: 1px solid #d4af3744;
  border-radius: 10px;
  font-size: 1rem;
}

.calendar-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  color: #6a1b9a;          /* your purple color */
  pointer-events: none;     /* don't block clicks on input */
}

/* When focused or filled – hide icon or change color */
.date-wrapper input:focus + .calendar-icon,
.date-wrapper input:not(:placeholder-shown) + .calendar-icon {
  color: #d4af37;          /* gold when active */
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
}


.required {
  color: #e74c3c;
  font-size: 0.9rem;
  margin-left: 0.3rem;
}

.full-width {
  grid-column: 1 / -1;
}

.booking-submit {
  width: 100%;
  max-width: 420px;
  margin: 2.5rem auto 1rem;
  display: block;
  padding: 1.15rem;
  font-size: 1.15rem;
  background: linear-gradient(135deg, #9c27b0 0%, #6a1b9a 100%);
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.35s ease;
  box-shadow: 0 6px 20px rgba(106, 27, 154, 0.3);
}

.booking-submit:hover {
  background: linear-gradient(135deg, #6a1b9a 0%, #4a148c 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(106, 27, 154, 0.4);
}

.form-note {
  text-align: center;
  font-size: 0.95rem;
  color: #777;
  margin-top: 1rem;
}

/* Mobile – Stack all fields vertically */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
  
  .booking-form {
    padding: 2rem 1.6rem;
  }
  
  .booking-submit {
    max-width: 100%;
  }
}
.section { padding:8rem 0; }
.section h2 { text-align:center; font-family:'Playfair Display',serif; font-size:3rem; color:#6a1b9a; margin-bottom:3.5rem; position:relative; }
.section h2::after { content:''; width:90px; height:3px; background:#d4af37; position:absolute; bottom:-12px; left:50%; transform:translateX(-50%); }
.section h3 { text-align:left; font-family:'Playfair Display',serif; font-size:3rem; color:#6a1b9a; margin-bottom:3.5rem; position:relative; }
.section h3::after { content:''; width:90px; height:3px; background:#d4af37; position:absolute; bottom:-12px; left:50%; transform:translateX(-50%); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;           /* text | images */
  gap: 3.5rem;
  align-items: start;  
  padding: 20px;                     /* text starts at top, images can be taller */
}


.about-images-stack {
  display: flex;
  flex-direction: column;                   /* stack images vertically */
  gap: 1.8rem;                              /* space between images */
}

.about-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  object-fit: cover;                        /* helps images look good even if proportions differ */
  height: auto;                             /* natural height – prevents distortion */
  max-height: 420px;                        /* optional: limit very tall images */
}
/* Restaurant Section */
.restaurant-section {
  background: linear-gradient(to bottom, #ffffff, #f9f9ff);
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem;
  font-size: 1.15rem;
  color: #555;
  line-height: 1.7;
}

.menu-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-bottom: 5rem;
}

.menu-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(106, 27, 154, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(106, 27, 154, 0.15);
}

.menu-card h3 {
  color: #6a1b9a;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  text-align: center;
}

.menu-card ul {
  list-style: none;
  padding: 0;
}

.menu-card li {
  margin-bottom: 0.9rem;
  font-size: 1.05rem;
  color: #444;
  position: relative;
  padding-left: 1.8rem;
}

.menu-card li::before {
  content: "•";
  color: #d4af37;
  position: absolute;
  left: 0;
  font-size: 1.4rem;
}

/* Gallery */
.restaurant-gallery h3 {
  text-align: center;
  color: #6a1b9a;
  margin-bottom: 2.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(106,27,154,0.85), transparent);
  color: white;
  padding: 1.2rem;
  text-align: center;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.gallery-item:hover .overlay {
  transform: translateY(0);
}

.cta-center {
  text-align: center;
  margin-top: 4rem;
}
/* Standard Hall Section */
.hall-section {
  background: linear-gradient(to bottom, #ffffff, #f9f9ff);
  padding: 7rem 0;
}

.hall-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3.5rem;
  font-size: 1.15rem;
  color: #555;
  line-height: 1.7;
}

.hall-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.hall-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(106, 27, 154, 0.1);
}

.hall-item img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.hall-item:hover img {
  transform: scale(1.06);
}

.hall-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(106,27,154,0.85), transparent);
  color: white;
  padding: 1.5rem;
  text-align: center;
  font-weight: 600;
  font-size: 1.2rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.hall-item:hover .hall-caption {
  transform: translateY(0);
}
.rooms-grid, .gallery-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(320px,1fr)); gap:2.5rem; }
.room-card { background:#f9f9f9; border-radius:12px; overflow:hidden; box-shadow:0 8px 25px rgba(106,27,154,0.08); transition:transform 0.4s; }
.room-card:hover { transform:translateY(-10px); }
.room-card img { width:100%; height:240px; object-fit:cover; }
.room-card h3 { color:#6a1b9a; padding:1.2rem 1.5rem 0.5rem; text-align:center; }
.price { font-weight:600; color:#d4af37; text-align:center; font-size:1.3rem; }
.room-card p { padding:0 1.5rem 1.2rem; text-align:center; color:#555; }
/* Make image background for room cards */
.room-card {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  position: relative !important;
  min-height: 380px;               /* keeps your original card height feel */
}

/* Text overlay – keeps everything readable */
.room-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.8rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent 70%);
  color: white;
  text-align: center;
}

/* Adjust existing text styles for visibility on dark background */
.room-card h3,
.room-card .price,
.room-card p {
  color: white !important;         /* override your previous colors */
}

.room-card .price {
  color: #d4af37 !important;       /* keep gold for price */
}

/* Optional hover effect (keeps your original lift) */
.room-card:hover {
  transform: translateY(-10px);
}

/* Make sure button is visible */
.btn.small {
  background: #d4af37 !important;
  color: #1a1a1a !important;
}

.btn.small:hover {
  background: white !important;
  color: #6a1b9a !important;
}
.menu-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(280px,1fr)); gap:2rem; margin-bottom:3rem; }
.menu-category h3 { color:#6a1b9a; margin-bottom:1rem; }
.menu-category ul { list-style:none; }
.menu-category li { margin-bottom:0.8rem; font-size:1.1rem; }
.menu-img { width:100%; max-width:800px; margin:0 auto; display:block; border-radius:12px; }

.facilities-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(180px,1fr)); gap:2rem; text-align:center; }
.facility { font-size:2.5rem; color:#6a1b9a; margin-bottom:1rem; }
.facility span { display:block; font-size:1.1rem; color:#333; margin-top:0.8rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 2.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);           /* subtle zoom on hover */
}

.gallery-overlay {
  position: absolute;
  bottom: -100%;                    /* starts hidden below */
  left: 0;
  right: 0;
  background: rgba(106, 27, 154, 0.85);  /* your purple with opacity */
  color: white;
  padding: 1.2rem;
  text-align: center;
  transition: bottom 0.4s ease;
  font-weight: 500;
  font-size: 1.1rem;
}

.gallery-item:hover .gallery-overlay,
.gallery-item:active .gallery-overlay {   /* tap support on mobile */
  bottom: 0;                            /* slides up on hover/tap */
}

/* Mobile tap fallback (shows on tap and hides after a second) */
@media (hover: none) {
  .gallery-item:active .gallery-overlay {
    bottom: 0;
  }
}/* Fix text visibility on background image cards */
.room-text-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.8rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 40%, transparent 100%);
  color: white;
  text-align: center;
  z-index: 1;
}

.room-card h3,
.room-card p:not(.price) {
  color: white !important;
}

.room-card .price {
  color: #d4af37 !important;      /* keep gold for price */
  font-weight: 700 !important;
}

/* Keep button readable */
.room-card .btn.small {
  background: #d4af37 !important;
  color: #1a1a1a !important;
  margin-top: 1rem;
  display: inline-block;
}

.room-card .btn.small:hover {
  background: white !important;
  color: #6a1b9a !important;
}
.room-card {
  min-height: 430px !important;  /* ← increase if needed – keeps shape consistent */
}
@media (max-width: 768px) {
  .room-card h3 {
    font-size: 1.4rem !important;
  }
  .room-card .price {
    font-size: 1.2rem !important;
  }
  .room-card p {
    font-size: 0.95rem !important;
  }
}


/* Why Choose Section (replaces testimonials) */
.why-choose {
  background: linear-gradient(to bottom, #f9f9ff, #ffffff);
  padding: 8rem 0;
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  font-size: 1.2rem;
  color: #555;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.feature-item {
  background: white;
  padding: 2.5rem 1.8rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(106, 27, 154, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(106, 27, 154, 0.15);
}

.feature-icon {
  font-size: 3.2rem;
  color: #d4af37;               /* light gold */
  margin-bottom: 1.2rem;
}

.feature-item h3 {
  color: #6a1b9a;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-item p {
  color: #666;
  line-height: 1.6;
}

.cta-center {
  text-align: center;
  margin-top: 4rem;
}
/* Contact – Two-column layout */
.contact-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;        /* Left | Right on desktop */
  gap: 3rem;                             /* Space between columns */
  align-items: start;
  margin-top: 2.5rem;
}

.contact-left,
.contact-right {
  padding: 1.5rem;
  border-radius: 12px;
}

.contact-left {
  background: #f9f9ff;
  border: 1px solid #d4af3722;
}

.contact-right {
  background: white;
  box-shadow: 0 8px 25px rgba(106, 27, 154, 0.08);
  border-radius: 12px;
}

/* Form styling inside right column */
.contact-right input,
.contact-right textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1.2rem;
  border: 1px solid #d4af3744;
  border-radius: 10px;
  font-size: 1rem;
}

.contact-right textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-right button {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  display: block;
}

/* Mobile – Stack vertically */
@media (max-width: 992px) {
  .contact-columns {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-left iframe {
    height: 300px;                   /* Shorter map on mobile */
  }
}
footer { background:#6a1b9a; color:white; padding:4rem 0 2rem; text-align:center; }
.footer-top { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:2rem; margin-bottom:2rem; }
.footer-links { list-style:none; display:flex; gap:1.8rem; }
.footer-links a { color:white; text-decoration:none; }
.social {
  margin: 2rem 0;
}

.social a {
  color: white;
  font-size: 1.8rem;
  margin: 0 1.2rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.social a:hover {
  color: #d4af37;           /* light gold hover */
  transform: scale(1.15);
}

.social a:focus {
  outline: 2px solid #d4af37;
  outline-offset: 4px;
}.copyright { margin-top:2rem; opacity:0.9; }

.btn { background:#d4af37; color:#1a1a1a; padding:0.9rem 2rem; border-radius:50px; text-decoration:none; font-weight:600; transition:all 0.3s; display:inline-block; }
.btn:hover { background:#6a1b9a; color:white; transform:translateY(-3px); }
.btn.small { padding:0.7rem 1.5rem; font-size:0.95rem; }
.secondary { background:#9c27b0; color:white; }

@media (max-width:768px) {
  .hero-content h1 { font-size:3rem; }
  .booking-form { flex-direction:column; }
  .about-grid, .contact-grid { grid-template-columns:1fr; }
  .navbar .container { flex-direction:column; gap:1rem; }
  .nav-links { flex-direction:column; gap:0.5rem; text-align:center; }
}
/* =============================================
   FINAL RESPONSIVE & MOBILE FIXES – PASTE AT BOTTOM
   Fixes: pinned header space, footer icons on mobile, navbar no-scatter on shrink
============================================= */

/* 1. Reduce pinned header vertical space on mobile */
.navbar {
  padding: 0.8rem 0 !important;
  min-height: 70px !important;
}

@media (max-width: 768px) {
  .navbar {
    padding: 0.6rem 0 !important;
    min-height: 60px !important;
  }

  .hotel-logo {
    height: 48px !important;
    width: 48px !important;
    padding: 4px !important;
  }

  body {
    padding-top: 65px !important;          /* ← key fix: body starts below header */
  }

  .hero, .section {
    padding-top: 1rem !important;         /* prevent overlap */
  }
}

/* 2. Make footer social icons visible & touch-friendly on mobile */
.social {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 1.8rem !important;
  margin: 1.8rem 0 1.2rem !important;
}

.social a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 50px !important;
  height: 50px !important;
  font-size: 1.9rem !important;
  color: white !important;
  background: rgba(255,255,255,0.15) !important;
  border-radius: 50% !important;
  transition: all 0.3s !important;
  text-decoration: none !important;
}

.social a:hover {
  background: #d4af37 !important;
  transform: scale(1.1) !important;
}

@media (max-width: 768px) {
  .social {
    gap: 2rem !important;
    margin: 1.5rem 0 !important;
  }

  .social a {
    width: 55px !important;
    height: 55px !important;
    font-size: 2.2rem !important;
  }
}

/* =========================
   NAVBAR FIXED HEADER
========================= */

body{
  padding-top:90px;
}

.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  background:rgba(255,255,255,0.97);
  box-shadow:0 4px 12px rgba(0,0,0,0.08);
  z-index:1000;
  min-height:90px;
}

/* container */
.navbar .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  max-width:1400px;
  margin:0 auto;
  padding:0 2rem;
}

/* logo + name */
.brand-left{
  display:flex;
  align-items:center;
  gap:1rem;
  flex-shrink:0;
}

.logo-img{
  height:65px;
  width:65px;
  object-fit:contain;
  border-radius:50%;
  border:1px solid #d4af37;
  background:white;
  padding:4px;
}

.brand-name{
  font-family:'Playfair Display',serif;
  font-size:1.45rem;
  font-weight:700;
  color:#6a1b9a;
  white-space:nowrap;
}

/* menu */
.nav-menu{
  display:flex;
  align-items:center;
  gap:2rem;
}

.nav-links{
  display:flex;
  gap:2rem;
  list-style:none;
}

.nav-links a{
  text-decoration:none;
  color:#333;
  font-weight:500;
}

/* button */
.book-now{
  background:#d4af37;
  color:#1a1a1a;
  padding:0.8rem 1.8rem;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
}

/* hamburger */
.hamburger{
  display:none;
  width:32px;
  height:24px;
  background:transparent;
  border:none;
  cursor:pointer;
  flex-direction:column;
  justify-content:space-between;
}

.hamburger span{
  height:3px;
  width:100%;
  background:#6a1b9a;
}

/* mobile */
@media (max-width:992px){

  body{
    padding-top:70px;
  }

  .hamburger{
    display:flex;
  }
  @media (max-width:768px){

/* Keep logo far left and hamburger far right */
.navbar .container{
display:flex;
align-items:center;
justify-content:space-between;
flex-wrap: wrap;
transition: all 0.3s ease;
}

.brand-left{
display:flex;
align-items:center;
gap:8px;
white-space: nowrap;
}
.logo-img{
height:42px;
width:42px;
}

/* reduce hotel name size so it fits */
.brand-name{
font-size:0.95rem;
overflow:hidden;
text-overflow:ellipsis;
}

.hamburger{
  display: flex;
margin-left:auto;
}

}

  .nav-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:280px;
    height:100vh;
    background:white;
    padding:5rem 2rem 2rem;
    box-shadow:-10px 0 30px rgba(0,0,0,0.2);
    transition:right .4s ease;
    display:flex;
    flex-direction:column;
    align-items:center;
    transform:translateX(100%);
transition:transform 0.4s ease;
  }

  .nav-menu.active{
    right:0;
    transform:translateX(0);
  }

  .nav-links{
display:flex;
flex-direction:column;
align-items:center;
gap:1.5rem;
text-align:center;
  }

/* Header when scrolling */
.navbar.scrolled{
padding: 0.3rem 0;
box-shadow:0 6px 20px rgba(0,0,0,0.15);
background:white;
}

  .book-now{
    margin:2rem auto 0;
    width:80%;
    text-align:center;
    .book-now{
    margin-top:1.5rem;
    display:inline-block;
    background:linear-gradient(135deg,#d4af37,#f1c40f);
color:#1a1a1a;
padding:0.7rem 1.6rem;
border-radius:50px;
font-weight:600;
text-decoration:none;
transition:all .3s ease;

}
  }

.book-now:hover{
transform:translateY(-2px);
box-shadow:0 6px 15px rgba(0,0,0,0.2);
}
  
}

/* Hamburger animation (X when open) */
.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
/* WhatsApp Floating Button */

.whatsapp-float{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:white;
width:60px;
height:60px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:32px;
box-shadow:0 6px 15px rgba(0,0,0,0.25);
text-decoration:none;
z-index:9999;
transition:transform .3s ease;
}

.whatsapp-float:hover{
transform:scale(1.1);
}