:root {
  --bg-dark: #0f2233;
  --bg-light: #f5f5f5;
  --accent: #f4c430;
  --text-dark: #2c3e50;
  --text-light: #ffffff;
  --muted: #777;
  --radius: 12px;
  --shadow: 0 6px 20px rgba(0,0,0,0.1);
  --font-title: 'Playfair Display', serif;
  --font-body: 'Segoe UI', sans-serif;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-dark);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-title);
  margin-bottom: 20px;
}

h1 {
  font-size: 3rem;
  color: var(--text-light);
}

h2 {
  font-size: 2.2rem;
  color: var(--text-dark);
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

.btn {
  background-color: var(--accent);
  color: #000;
  padding: 12px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 20px;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #e0b020;
}

.btn.secondary {
  background-color: #ddd;
  color: #333;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  z-index: -1;
}

.hero-content {
  z-index: 1;
  text-align: center;
  padding: 20px;
}

.hero-content p {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent);
  text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* NAVBAR */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
  background: transparent;
  box-sizing: border-box;
}

.nav-left,
.nav-right {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.logo-center {
  flex: 1;
  text-align: center;
  white-space: nowrap;
}

.logo-center a {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--accent);
  text-decoration: none;
}

.nav-left li a,
.nav-right li a {
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.3px;
  text-decoration: none;
  color: var(--text-light);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav-left li a:hover,
.nav-right li a:hover {
  color: var(--accent);
  text-shadow: 0 0 4px rgba(244, 196, 48, 0.6);
}

/* ROOM */
.room-card {
  display: flex;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto 40px;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
  background-color: #fff;
  box-sizing: border-box;
}

.room-card img {
  width: 100%;
  max-width: 400px;
  object-fit: cover;
}

.room-info {
  padding: 20px;
  flex: 1;
  text-align: left;
}

.room-info ul {
  list-style: none;
  padding: 0;
}

.room-info ul li {
  margin-bottom: 8px;
  color: var(--muted);
}

/* STORY */
.story-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

.story-content p {
  max-width: 500px;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.story-content img {
  max-width: 400px;
  border-radius: var(--radius);
}

/* AMENITIES */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.amenity {
  background-color: #fff;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.amenity:hover {
  transform: scale(1.05);
}

.amenity img {
  width: 40px;
  margin-bottom: 10px;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  max-width: 1000px;
  margin: 0 auto;
  box-sizing: border-box;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

/* CONTACT */
.contact iframe {
  max-width: 800px;
  width: 100%;
  height: 300px;
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 20px;
}

/* RESERVATION */
.reservation form {
  max-width: 500px;
  margin: 0 auto;
  display: grid;
  gap: 15px;
  text-align: left;
}

.reservation label {
  font-weight: 500;
  color: var(--text-dark);
}

.reservation input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: var(--radius);
  font-size: 1rem;
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.whatsapp-float img {
  width: 50px;
  height: 50px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* MOBILE */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    padding: 16px 20px;
  }

  .nav-left,
  .nav-right {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
  }

  .logo-center {
    margin: 10px 0;
  }

  .room-card {
    flex-direction: column;
  }

  .story-content {
    flex-direction: column;
  }

  .nav-left li a,
  .nav-right li a {
    font-size: 1rem;
  }
}
.language-toggle {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 30px;
}

.lang-btn {
  background-color: transparent;
  border: none;
  color: #ffffff;
  font-size: 18px;
  font-family: 'Playfair Display', serif;
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
}

.lang-btn::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #ffd700;
  transition: width 0.3s ease;
}

.lang-btn:hover {
  color: #ffd700;
}

.lang-btn:hover::after {
  width: 100%;
}
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
