/* Luxury Hotel Website - Premium Styling */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-dark: #2a2419;
  --secondary-dark: #3d3531;
  --gold-accent: #d4a574;
  --light-cream: #f5f1ed;
  --white: #ffffff;
  --text-dark: #333;
  --border-light: #e8e0d8;
}

body {
  font-family: 'Georgia', 'Garamond', serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--light-cream);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Top Info Bar */
.top-bar {
  background-color: var(--light-cream);
  padding: 5px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.85rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  gap: 20px;
}

.top-bar-right {
  display: flex;
  gap: 15px;
  align-items: center;
}

.phone-number {
  color: var(--primary-dark);
  font-weight: 600;
}

.book-btn {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  display: inline-block;
  min-height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.book-btn:hover {
  background-color: var(--gold-accent);
  color: var(--primary-dark);
}

/* =========================
   NAVBAR (DESKTOP DEFAULT)
========================= */

.navbar {
  background: var(--white);
  padding: 15px 0;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  z-index: 1000;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-dark);
  text-decoration: none;
}

.logo img {
  height: 45px;
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--primary-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold-accent);
}

/* Language Toggle */
.lang-toggle {
  margin-left: 1rem;
  font-size: 0.95rem;
}

.lang-toggle a {
  text-decoration: none;
  color: var(--text-dark);
  padding: 4px 8px;
  border-radius: 4px;
}

.lang-toggle a.active-lang {
  background: var(--primary-dark);
  color: var(--white);
}

.lang-toggle .sep {
  margin: 0 6px;
  color: #bbb;
}

/* Hamburger (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 3px;
  background: var(--primary-dark);
  border-radius: 2px;
}


/* =========================
   MOBILE HEADER
========================= */

@media (max-width: 768px) {

  .navbar .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  /* Show hamburger */
  .hamburger {
    display: flex;
  }

  /* Position language toggle */
  .lang-toggle {
    position: absolute;
    right: 55px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.85rem;
  }

  /* Mobile dropdown menu */
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: var(--white);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    max-height: 100vh;
  }

  .nav-links li {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-light);
  }

  .nav-links a {
    display: block;
    font-size: 1rem;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(42, 36, 25, 0.85) 0%, rgba(61, 53, 49, 0.85) 100%),
              url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="luxury" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><rect fill="%232a2419" width="100" height="100"/><circle cx="50" cy="50" r="2" fill="%23d4a574" opacity="0.3"/><path d="M 0 0 L 100 100 M 100 0 L 0 100" stroke="%23d4a574" stroke-width="0.5" opacity="0.2"/></pattern></defs><rect width="1200" height="600" fill="%232a2419"/><rect width="1200" height="600" fill="url(%23luxury)"/><rect x="50" y="50" width="1100" height="500" fill="none" stroke="%23d4a574" stroke-width="2" opacity="0.5"/><circle cx="600" cy="300" r="300" fill="none" stroke="%23d4a574" stroke-width="1" opacity="0.2"/><circle cx="600" cy="300" r="350" fill="none" stroke="%23d4a574" stroke-width="1" opacity="0.15"/></svg>');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(212, 165, 116, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInDown 0.8s ease-out;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
  font-weight: normal;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.8s ease-out 0.2s backwards;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  letter-spacing: 1px;
  color: var(--gold-accent);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.8s ease-out 0.4s backwards;
}

.hero .btn {
  animation: slideUp 0.8s ease-out 0.6s backwards;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
}

.hero-content .subtitle {
  font-size: 1.1rem;
  margin-bottom: 30px;
  letter-spacing: 1px;
  opacity: 0.95;
  font-style: italic;
}

.hero-content .rating {
  color: var(--gold-accent);
  margin-bottom: 15px;
  font-size: 1rem;
}

.hero-small {
  background: linear-gradient(135deg, rgba(42, 36, 25, 0.9) 0%, rgba(61, 53, 49, 0.9) 100%),
              url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 300"><defs><pattern id="luxury2" x="0" y="0" width="80" height="80" patternUnits="userSpaceOnUse"><rect fill="%232a2419" width="80" height="80"/><circle cx="40" cy="40" r="1.5" fill="%23d4a574" opacity="0.3"/><line x1="0" y1="40" x2="80" y2="40" stroke="%23d4a574" stroke-width="0.5" opacity="0.15"/></pattern></defs><rect width="1200" height="300" fill="%232a2419"/><rect width="1200" height="300" fill="url(%23luxury2)"/><rect x="30" y="30" width="1140" height="240" fill="none" stroke="%23d4a574" stroke-width="1.5" opacity="0.4"/></svg>');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 80px 20px;
  text-align: center;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-small::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 15% 50%, rgba(212, 165, 116, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(212, 165, 116, 0.06) 0%, transparent 40%);
  pointer-events: none;
}

.hero-small h1 {
  font-size: 2.5rem;
  font-weight: normal;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
  font-size: 0.9rem;
}

.btn-primary {
  background-color: var(--primary-dark);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--gold-accent);
  color: var(--primary-dark);
}

.btn-secondary {
  background-color: var(--primary-dark);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--gold-accent);
  color: var(--primary-dark);
}

/* Features Section */
.features {
  padding: 60px 20px;
  background-color: var(--light-cream);
}

.features h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
  color: var(--primary-dark);
  font-weight: normal;
  letter-spacing: 1px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.feature-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.feature-content {
  padding: 25px;
  text-align: center;
}

.feature-content h3 {
  color: var(--primary-dark);
  margin-bottom: 12px;
  font-size: 1.3rem;
  font-weight: normal;
  letter-spacing: 1px;
}

.feature-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Rooms Preview */
.rooms-preview {
  padding: 60px 20px;
  background-color: var(--white);
}

.rooms-preview h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--primary-dark);
  font-weight: normal;
  letter-spacing: 1px;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.room-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  text-align: center;
  padding: 0;
  border: 1px solid var(--border-light);
}

.room-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.room-image {
  font-size: 4rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
  color: var(--white);
}

.room-info {
  padding: 2rem;
}

.room-info h3 {
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: normal;
  letter-spacing: 1px;
}

.room-info p {
  color: #666;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

/* Rooms Section */
.rooms-section {
  padding: 60px 20px;
  background-color: var(--light-cream);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
  font-weight: normal;
  letter-spacing: 1px;
}

.section-header p {
  color: #666;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.room-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 8px;
}

.room-detail-image {
  font-size: 6rem;
  text-align: center;
}

.room-detail-content h2 {
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
  font-weight: normal;
  letter-spacing: 1px;
}

.price {
  font-size: 1.3rem;
  color: var(--gold-accent);
  font-weight: bold;
  margin-bottom: 1rem;
}

.amenities {
  margin: 1.5rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.amenities li {
  color: #666;
  padding: 0.5rem 0;
}

.amenities li:before {
  content: "✓";
  color: var(--gold-accent);
  margin-right: 8px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .room-detail-card {
    grid-template-columns: 1fr;
  }
}

/* Facilities Grid */
.room-facilities {
  padding: 60px 20px;
  background-color: var(--light-cream);
}

.room-facilities h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--primary-dark);
  font-weight: normal;
  letter-spacing: 1px;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.facility-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.facility-item:hover {
  transform: scale(1.05);
}

.facility-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.facility-item h4 {
  color: var(--primary-dark);
  font-weight: normal;
  letter-spacing: 1px;
}

/* Events Section */
.events-content {
  padding: 60px 20px;
  background-color: var(--light-cream);
}

.events-content h2 {
  color: var(--primary-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-weight: normal;
  letter-spacing: 1px;
}

.events-content > .container > p {
  text-align: center;
  font-size: 1rem;
  color: #666;
  margin-bottom: 2rem;
}

.event-type-card {
  background: var(--white);
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--gold-accent);
}

.event-type-card h3 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: normal;
  letter-spacing: 1px;
}

.event-type-card p {
  color: #666;
  margin-bottom: 1rem;
}

.event-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.event-list li {
  color: #666;
}

.event-list li:before {
  content: "✓";
  color: var(--gold-accent);
  margin-right: 8px;
  font-weight: bold;
}

.venue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.venue-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-top: 3px solid var(--gold-accent);
}

.venue-card h4 {
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  font-weight: normal;
  letter-spacing: 1px;
}

.venue-card p {
  color: #666;
  font-size: 0.9rem;
}

.venue-features {
  color: var(--gold-accent);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Gallery Section */
.gallery-section {
  padding: 60px 20px;
  background-color: var(--white);
}

.gallery-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--primary-dark);
  font-weight: normal;
  letter-spacing: 1px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 280px;
  background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-image {
  font-size: 4rem;
  color: var(--white);
}

/* Contact Section */
.contact-section {
  padding: 60px 20px;
  background-color: var(--light-cream);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info h2,
.contact-form h2 {
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: normal;
  letter-spacing: 1px;
}

.contact-details {
  margin: 2rem 0;
}

.detail-item {
  margin-bottom: 2rem;
}

.detail-item h4 {
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.detail-item p {
  color: #666;
  line-height: 1.8;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.social-icon {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background: var(--primary-dark);
  color: var(--white);
  border-radius: 4px;
  transition: background 0.3s ease;
  font-size: 0.9rem;
  font-weight: 600;
}

.social-icon:hover {
  background: var(--gold-accent);
  color: var(--primary-dark);
}

/* Contact Form */
.contact-form {
  background-color: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-accent);
  box-shadow: 0 0 0 2px rgba(212, 165, 116, 0.1);
}

.form-group button {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  font-size: 0.95rem;
}

.form-group button:hover {
  background-color: var(--gold-accent);
  color: var(--primary-dark);
}

.map-section {
  padding: 60px 20px;
  background-color: var(--white);
}

.map-section h2 {
  text-align: center;
  color: var(--primary-dark);
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-weight: normal;
  letter-spacing: 1px;
}

.map-placeholder {
  background: var(--light-cream);
  padding: 3rem;
  border-radius: 8px;
  text-align: center;
  color: #666;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.map-container {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin-top: 30px;
}

.map-container iframe {
  border-radius: 8px;
  display: block;
  width: 100%;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
  color: var(--white);
  padding: 60px 20px;
  text-align: center;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: normal;
  letter-spacing: 1px;
}

.cta p {
  font-size: 1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* About Section */
.about-content {
  padding: 60px 20px;
  background-color: var(--light-cream);
}

.about-section {
  padding: 60px 20px;
  background-color: var(--white);
}

.about-header {
  text-align: center;
  margin-bottom: 50px;
}

.about-header h1 {
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 5px;
  font-weight: normal;
  letter-spacing: 1px;
}

.about-header .subtitle {
  color: var(--gold-accent);
  font-size: 1rem;
  letter-spacing: 2px;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-image {
  height: 350px;
  background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.about-content h2 {
  color: var(--primary-dark);
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: normal;
  letter-spacing: 1px;
}

.about-content p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 0.95rem;
}

.about-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
  background: var(--light-cream);
  padding: 2rem;
  border-radius: 8px;
  font-size: 0.9rem;
}

.about-list li {
  color: var(--text-dark);
  padding: 0.5rem 0;
}

.about-list li:before {
  content: "✓";
  color: var(--gold-accent);
  margin-right: 8px;
  font-weight: bold;
}

/* Footer */
.footer {
  background-color: var(--primary-dark);
  color: var(--light-cream);
  padding: 40px 20px 20px;
  margin-top: 3rem;
}

.footer .container {
  margin-bottom: 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-section h4 {
  color: var(--gold-accent);
  margin-bottom: 15px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.footer-section p,
.footer-section li {
  color: rgba(245, 241, 237, 0.8);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-section a {
  color: rgba(245, 241, 237, 0.8);
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--gold-accent);
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(212, 165, 116, 0.2);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(245, 241, 237, 0.7);
}

/* WhatsApp Floating Icon */
.whatsapp-icon {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.whatsapp-icon svg {
  width: 35px;
  height: 35px;
}

.whatsapp-icon-img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

/* Room image photos styling */
.room-image-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.gallery-image-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

/* Lightbox / modal styles for gallery image enlargement */
.lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.85);
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease-in-out, visibility 200ms ease-in-out;
  z-index: 2000;
  padding: 24px;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox-content {
  position: relative;
  max-width: 1100px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox img#lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  display: block;
}
.lightbox-caption {
  margin-top: 12px;
  color: var(--white);
  text-align: center;
  font-size: 1rem;
}
.lightbox-close {
  position: absolute;
  top: -12px;
  right: -12px;
  background: var(--white);
  color: var(--primary-dark);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

@media (max-width: 600px) {
  .lightbox-content { padding: 8px; }
  .lightbox-close { width: 36px; height: 36px; font-size: 18px; top: -8px; right: -8px; }
  .lightbox-caption { font-size: 0.95rem; }
}

.room-detail-image-photo {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Stack navbar and make links full-width on mobile */
  .navbar .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .logo {
    justify-content: flex-start;
    width: 100%;
  }

  .nav-links {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    padding: 0;
  }

  .nav-links a {
    display: block;
    padding: 8px 0;
    width: 100%;
    color: var(--primary-dark);
  }

  /* Make buttons full width for easier tapping */
  .btn,
  .btn-primary,
  .btn-secondary,
  .btn-about,
  .btn-rooms,
  .btn-events {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  /* Reduce embedded map height on mobile */
  .map-container iframe {
    height: 250px;
  }

  /* Reduce hero heading size */
  .hero-content h1 {
    font-size: 2rem;
  }

  /* Hero slider height on tablet */
  .hero-banner {
    height: 300px;
  }

  .slider-btn {
    padding: 10px 14px;
    font-size: 1.2rem;
  }

  .about-wrapper,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .room-detail-card {
    grid-template-columns: 1fr;
  }

  .experience-content,
  .rooms-content,
  .events-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .experience-right,
  .events-right {
    order: 0;
  }

  .rooms-left {
    order: 0;
  }

  .experience-main-img,
  .events-main-img,
  .rooms-section-img {
    height: 250px;
  }

  .experience-gallery,
  .events-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .experience-thumb,
  .events-thumb {
    height: 120px;
  }

  .top-bar .container {
    flex-direction: column;
    gap: 10px;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .event-list {
    grid-template-columns: 1fr;
  }

  .amenities {
    grid-template-columns: 1fr;
  }

  .about-image {
    height: 250px;
  }

  .feature-grid,
  .rooms-grid,
  .gallery-grid,
  .facility-grid {
    grid-template-columns: 1fr;
  }

  /* Reduce padding on sections */
  .experience,
  .rooms-section,
  .events-section,
  .about-section,
  .contact-section,
  .cta {
    padding: 40px 20px;
  }

  .experience-left h2,
  .rooms-right h2,
  .events-left h2 {
    font-size: 1.8rem;
  }

  .whatsapp-icon {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-icon svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .navbar .container {
    padding: 8px 0;
  }

  .logo {
    min-width: 60px;
  }

  .logo-image {
    max-width: 60px;
  }

  .hamburger {
    padding: 6px;
  }

  .hamburger span {
    width: 22px;
    height: 2.5px;
  }

  .nav-links {
    top: 50px;
  }

  .nav-links li {
    padding: 10px 15px;
  }

  .nav-links a {
    font-size: 0.9rem;
    min-height: 40px;
  }

  .lang-toggle {
    right: 50px;
    font-size: 0.8rem;
  }

  .top-bar {
    padding: 6px 0;
  }

  .top-bar .container {
    padding: 0 10px;
  }

  .top-bar-left,
  .top-bar-right {
    min-width: 100%;
  }

  .phone-number {
    font-size: 0.75rem;
  }

  .book-btn {
    padding: 6px 10px;
    font-size: 0.75rem;
    min-height: 32px;
  }

  .hero-content h1 {
    font-size: 1.3rem;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  /* Extra small hero height */
  .hero-banner {
    height: 250px;
  }

  .hero-small {
    padding: 40px 20px;
    min-height: 200px;
  }

  .hero-small h1 {
    font-size: 1.8rem;
  }

  .slider-btn {
    padding: 8px 10px;
    font-size: 1rem;
    min-height: 40px;
    min-width: 40px;
  }

  .slider-dots {
    bottom: 10px;
    gap: 8px;
  }

  .dot {
    width: 10px;
    height: 10px;
    cursor: pointer;
  }

  .feature-grid,
  .rooms-grid,
  .gallery-grid,
  .facility-grid,
  .venue-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  /* Stack all sections vertically */
  .experience-content,
  .rooms-content,
  .events-content,
  .about-wrapper,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Adjust section padding */
  .experience,
  .rooms-section,
  .events-section,
  .about-section,
  .contact-section,
  .gallery-section,
  .cta {
    padding: 30px 15px;
  }

  /* Reduce heading sizes */
  .experience-left h2,
  .rooms-right h2,
  .events-left h2,
  .about-header h1 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .gallery-section h2,
  .contact-info h2,
  .contact-form h2 {
    font-size: 1.5rem;
  }

  /* Gallery item height */
  .gallery-item {
    height: 180px;
  }

  /* Reduce image sizes */
  .experience-main-img,
  .events-main-img,
  .rooms-section-img,
  .about-image {
    height: 200px;
  }

  .experience-gallery,
  .events-gallery {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .experience-thumb,
  .events-thumb {
    height: 100px;
  }

  .room-image-photo {
    height: 150px;
  }

  .room-detail-image-photo {
    height: 250px;
  }

  /* Contact form full width */
  .contact-form {
    padding: 15px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 0.7rem;
    font-size: 16px;
    min-height: 44px;
    border: 1px solid var(--border-light);
    border-radius: 4px;
  }

  .form-group textarea {
    min-height: 120px;
  }

  /* Footer adjustments */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-section {
    text-align: center;
    padding: 15px 0;
  }

  .footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .footer-section p,
  .footer-section a {
    font-size: 0.9rem;
  }

  /* Reduce map height */
  .map-container iframe {
    height: 200px;
  }

  /* WhatsApp icon sizing */
  .whatsapp-icon {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-icon svg {
    width: 26px;
    height: 26px;
  }

  /* List adjustments */
  .why-love,
  .rooms-features,
  .events-list {
    padding: 0;
    margin-bottom: 20px;
  }

  .why-love li,
  .rooms-features li,
  .events-list li {
    padding: 10px 0;
    font-size: 0.9rem;
    min-height: 40px;
    display: flex;
    align-items: center;
  }

  /* Button improvements for touch */
  .btn,
  .btn-primary,
  .btn-secondary,
  .btn-about,
  .btn-rooms,
  .btn-events {
    padding: 12px 24px;
    font-size: 0.95rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-align: center;
  }

  .cta h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .cta p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  /* Feature cards spacing */
  .feature-card {
    padding: 20px 15px;
  }

  .feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .feature-card p {
    font-size: 0.9rem;
  }

  .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }

  /* Room cards adjustments */
  .room-card {
    padding: 0;
  }

  .room-card img {
    height: 200px;
  }

  .room-info {
    padding: 12px;
  }

  .room-info h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .room-info p {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }
}

/* Hero Banner */
.hero-banner {
  width: 100%;
  height: 500px;
  overflow: hidden;
  display: block;
  position: relative;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  z-index: 10;
}

.hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 20;
  transform: translateY(-50%);
}

.slider-btn {
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
  border: none;
  padding: 12px 16px;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 20;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--gold-accent);
  transform: scale(1.3);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Experience Section */
.experience {
  padding: 80px 20px;
  background-color: var(--light-cream);
}

.experience .container {
  max-width: 1300px;
}

.experience-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.experience-left h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-weight: normal;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.experience-left p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.8;
}

.experience-left strong {
  color: var(--gold-accent);
  font-weight: 600;
}

.experience-left h3 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-weight: normal;
}

.why-love {
  list-style: none;
  margin-bottom: 30px;
}

.why-love li {
  padding: 12px 0;
  color: #555;
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.why-love li:before {
  content: "✓ ";
  color: var(--gold-accent);
  font-weight: bold;
  margin-right: 10px;
}

.btn-about {
  background-color: var(--gold-accent);
  color: var(--text-dark);
  padding: 12px 35px;
  font-size: 1rem;
  border-radius: 4px;
  display: inline-block;
  transition: all 0.3s ease;
  font-weight: 600;
}

.btn-about:hover {
  background-color: var(--primary-dark);
  color: var(--white);
}

.experience-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.experience-main-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.experience-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.experience-thumb {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Rooms Section */
.rooms-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #faf8f5 0%, #f5f1ed 100%);
}

.rooms-section .container {
  max-width: 1300px;
}

.rooms-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.rooms-left {
  order: 1;
}

.rooms-section-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.rooms-right {
  order: 2;
}

.rooms-right h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 30px;
  font-weight: normal;
  letter-spacing: 0.5px;
}

.rooms-features {
  list-style: none;
  margin-bottom: 40px;
}

.rooms-features li {
  padding: 15px 0;
  color: #555;
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.rooms-features li:before {
  content: "✓ ";
  color: var(--gold-accent);
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2rem;
}

.btn-rooms {
  background-color: #2a5f4f;
  color: var(--white);
  padding: 12px 40px;
  font-size: 1rem;
  border-radius: 4px;
  display: inline-block;
  transition: all 0.3s ease;
  font-weight: 600;
}

.btn-rooms:hover {
  background-color: var(--primary-dark);
}

/* Events Section */
.events-section {
  padding: 80px 20px;
  background-color: var(--light-cream);
}

.events-section .container {
  max-width: 1300px;
}

.events-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.events-left {
  order: 1;
}

.events-left h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-weight: normal;
  letter-spacing: 0.5px;
}

.events-left p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.8;
}

.events-list {
  list-style: none;
  margin-bottom: 40px;
}

.events-list li {
  padding: 12px 0;
  color: #555;
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.events-list li:before {
  content: "✓ ";
  color: var(--gold-accent);
  font-weight: bold;
  margin-right: 10px;
}

.btn-events {
  background-color: var(--gold-accent);
  color: var(--text-dark);
  padding: 12px 35px;
  font-size: 1rem;
  border-radius: 4px;
  display: inline-block;
  transition: all 0.3s ease;
  font-weight: 600;
}

.btn-events:hover {
  background-color: var(--primary-dark);
  color: var(--white);
}

.events-right {
  order: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.events-main-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.events-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.events-thumb {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Explore Property Section */
.explore-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #faf8f5 0%, #f5f1ed 100%);
  text-align: center;
  border-top: 1px solid var(--border-light);
}

.explore-section h2 {
  font-size: 2.2rem;
  color: var(--text-dark);
  font-weight: normal;
  letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .experience-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .experience-left h2 {
    font-size: 1.8rem;
  }

  .experience-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .rooms-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .rooms-left {
    order: 0;
  }

  .rooms-right {
    order: 0;
  }

  .events-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .events-left {
    order: 0;
  }

  .events-right {
    order: 0;
  }

  .events-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-banner {
    height: 250px;
  }

  .rooms-section-img {
    height: 250px;
  }

  .experience-main-img,
  .events-main-img {
    height: 250px;
  }

  .experience-thumb,
  .events-thumb {
    height: 120px;
  }
}

@media (max-width: 480px) {
  .experience-left h2,
  .rooms-right h2,
  .events-left h2 {
    font-size: 1.5rem;
  }

  .experience-gallery,
  .events-gallery {
    grid-template-columns: 1fr;
  }

  .experience-thumb,
  .events-thumb {
    height: 150px;
  }
}
