:root {
  --bg: #050505;
  --panel: rgba(255, 215, 0, 0.08);
  --gold: #d4af37;
  --gold-strong: #f0c85b;
  --text: #f5f1e8;
  --muted: #b8b0a5;
}

#language-selector {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  display: flex;
  gap: 0.5rem;
}

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

#brand-logo-container {
  position: fixed;
  top: 1rem;
  right: 1.5rem;
  z-index: 1000;
  display: flex;
  align-items: center;
  animation: logoFadeIn 0.8s ease-out forwards;
}

.brand-logo {
  height: 56px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));
}

.brand-logo:hover {
  transform: translateY(-2px) scale(1.05);
  filter: drop-shadow(0 6px 12px rgba(212, 175, 55, 0.4));
}

.lang-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--gold);
  color: var(--text);
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.lang-btn:hover,
.lang-btn.active {
  background: var(--gold);
  color: #090909;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, rgba(212, 175, 55, 0.12), transparent 35%),
    linear-gradient(180deg, #080808 0%, #040404 100%);
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select {
  font: inherit;
}

.hero {
  min-height: 72vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 1.5rem;
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 0.9rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 0 0 1rem;
  line-height: 1.02;
}

p {
  margin: 0 0 1.5rem;
  color: var(--muted);
  line-height: 1.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  padding: 0.95rem 2rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, #d4af37, #f3d05d);
  color: #090909;
  box-shadow: 0 18px 45px rgba(212, 175, 55, 0.16);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.section {
  padding: 4rem 1.5rem;
}

.intro {
  text-align: center;
}

.gallery {
  max-width: 1120px;
  margin: 0 auto;
}

.gallery-header {
  text-align: center;
  margin-bottom: 2rem;
}

.slider {
  position: relative;
  display: grid;
  place-items: center;
}

.slides-wrapper {
  overflow: hidden;
  width: 100%;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  flex: 0 0 100%;
  width: 100%;
  min-height: 420px;
  max-height: 580px;
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: grid;
  align-items: flex-end;
  padding: 2rem;
  overflow: hidden;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72));
  border-radius: inherit;
}

.slide-label {
  position: relative;
  z-index: 1;
  color: white;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 700;
}

.slide-1 {
  background-image: url('https://images.unsplash.com/photo-1493809842364-78817add7ffb?auto=format&fit=crop&w=1200&q=80');
}

.slide-2 {
  background-image: url('https://images.unsplash.com/photo-1484154218962-a197022b5858?auto=format&fit=crop&w=1200&q=80');
}

.slide-3 {
  background-image: url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?auto=format&fit=crop&w=1200&q=80');
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  font-size: 2rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.5);
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 2;
}

.slider-btn.prev {
  left: 1rem;
}

.slider-btn.next {
  right: 1rem;
}

.slide-dots {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1rem;
}

.slide-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
}

.slide-dot.active {
  background: var(--gold);
}

.cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  max-width: 1120px;
  margin: 0 auto;
}

.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
}

.card h3 {
  margin-top: 0;
  color: var(--gold);
}

.card ul {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
  color: var(--muted);
}

.card ul li {
  margin-bottom: 0.75rem;
}

.card.premium {
  border-color: rgba(212, 175, 55, 0.5);
}

.card.subscription {
  border-color: rgba(255, 255, 255, 0.12);
}

.features {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  max-width: 1120px;
  margin: 0 auto;
}

.feature-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 20px;
}

.feature-item h3 {
  margin-top: 0;
  color: var(--gold-strong);
}

.booking {
  background: radial-gradient(circle at top, rgba(212, 175, 55, 0.12), transparent 32%),
    rgba(8, 8, 8, 0.96);
}

.booking-panel {
  max-width: 680px;
  margin: 0 auto;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background: rgba(5, 5, 5, 0.92);
}

.booking-panel label {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.booking-panel input,
.booking-panel select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0.95rem 1rem;
}

.booking-panel input:focus,
.booking-panel select:focus {
  outline: 1px solid rgba(212, 175, 55, 0.7);
}

.form-message {
  margin-top: 1rem;
  color: var(--gold);
}

.footer {
  text-align: center;
  padding: 2rem 1.5rem;
  color: var(--muted);
}

.contact-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.contact-link:hover {
  color: var(--gold-strong);
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

@media (max-width: 640px) {
  .hero {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .booking-panel {
    padding: 1.5rem;
  }
  
  #brand-logo-container {
    top: 0.75rem;
    right: 1rem;
  }
  
  .brand-logo {
    height: 40px;
    max-width: 120px;
  }
}
