:root {
  --bg: #1a191a;
  --text: #ffffff;
  --accent: #888;
  --radius: 3px;
}

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

html,
body {
  max-width: 100%;
  overflow-x: hidden;
  width: 100%;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
}

#blur-container {
  transition: filter 0.6s ease;
}

.blurred {
  filter: blur(15px);
}

/* Nav */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  position: fixed;
  width: 100%;
  z-index: 100;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(10px);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lang-switcher {
  display: flex;
  gap: 8px;
}

.lang-switcher button {
  background: none;
  border: 1px solid #333;
  color: white;
  font-size: 0.65rem;
  padding: 4px 8px;
  cursor: pointer;
  transition: 0.3s;
}

.lang-switcher button:hover {
  border-color: white;
}

/* Hero */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero h1 {
  font-family: "Playfair Display";
  font-size: clamp(3rem, 10vw, 6.5rem);
  line-height: 1.1;
}

.hero h1 span {
  font-style: italic;
  color: var(--accent);
}

/* About */
.about-section {
  padding: 120px 5%;
  display: flex;
  justify-content: center;
}

.about-content {
  max-width: 1100px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.about-text h2 {
  font-family: "Playfair Display";
  font-size: 2.8rem;
  margin-bottom: 25px;
}

.about-text p {
  color: #aaa;
  margin-bottom: 20px;
  font-size: 1.15rem;
  line-height: 1.8;
}

.about-details {
  border-left: 1px solid #333;
  padding-left: 40px;
}

.detail-item {
  margin-bottom: 35px;
}

.detail-item span {
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 5px;
}

.detail-item p {
  font-size: 1rem;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  grid-gap: 30px;
  padding: 0 5% 100px;
}

.grid-item {
  height: 600px;
  overflow: hidden;
  border-radius: var(--radius);
  opacity: 0;
  transform: translateY(40px);
  transition: 1s ease;
}

.grid-item.appear {
  opacity: 1;
  transform: translateY(0);
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1.2s ease;
  cursor: pointer;
  filter: brightness(0.8);
}

.grid-item:hover img {
  transform: scale(1.03);
  filter: brightness(1);
}

/* --- Dynamic Booking Banner --- */
.booking-banner {
  padding: 30px 5% 50px; /* Було 100px 5% */
  text-align: center;
  border-top: 1px solid #222;
  background: linear-gradient(to bottom, #1a191a, #111);
}

.date-label {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 10px;
}

.highlight-date {
  font-family: "Playfair Display";
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-style: italic;
  margin-bottom: 20px;
  color: #fff;
}

.booking-box h3 {
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  max-width: 700px;
  margin: 0 auto 15px;
  font-weight: 300;
  line-height: 1.4;
  color: #eee;
}

.sub-text {
  color: #666;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* Contact Area */
footer {
  padding: 60px 5%;
  text-align: center;
  border-top: 1px solid #222;
}

footer h2 {
  font-family: "Playfair Display";
  font-size: 2.2rem;
  margin-bottom: 30px;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.contact-item {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  border-bottom: 1px solid #333;
  padding-bottom: 8px;
  transition: 0.3s;
  letter-spacing: 1px;
}

.contact-item:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* Slider System */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.96);
  justify-content: center;
  align-items: center;
  touch-action: none;
  user-select: none;
}

.lightbox.active {
  display: flex;
}

.lightbox-slider {
  width: 90%;
  height: 85vh;
  overflow: hidden;
}

.lightbox-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.slider-img-wrapper {
  min-width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.slider-img-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.nav-btn {
  position: absolute;
  background: none;
  border: none;
  color: white;
  font-size: 70px;
  cursor: pointer;
  opacity: 0.3;
  transition: 0.3s;
  font-weight: 100;
}

.nav-btn:hover {
  opacity: 1;
}

.prev-btn {
  left: 2%;
}

.next-btn {
  right: 2%;
}

.close-btn {
  position: absolute;
  top: 30px;
  right: 50px;
  color: white;
  font-size: 50px;
  cursor: pointer;
  z-index: 1011;
}

.counter {
  position: absolute;
  bottom: 40px;
  color: var(--accent);
  letter-spacing: 5px;
  font-size: 0.8rem;
}

/* Media Queries */
@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-details {
    border-left: none;
    border-top: 1px solid #333;
    padding-top: 30px;
    padding-left: 0;
  }

  .nav-links {
    display: none;
  }

  .gallery {
    grid-template-columns: 1fr;
    padding: 0 20px 60px;
  }

  .grid-item {
    height: 450px;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .highlight-date {
    font-size: 2.8rem;
  }

  .close-btn {
    right: 20px;
    top: 20px;
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  nav {
    top: auto;
    bottom: 0;
    padding: 12px 20px;
    justify-content: center;
    background: rgba(10, 10, 10, 0.92);
    border-top: 1px solid #222;
  }

  .logo {
    display: none;
  }

  .nav-right {
    width: 100%;
    justify-content: center;
  }

  .nav-links {
    display: flex;
    gap: 30px;
  }

  .nav-links a {
    font-size: 0.8rem;
  }

  .lang-switcher {
    position: absolute;
    top: -50px;
    right: 20px;
  }

  body {
    padding-bottom: 80px;
  }
}
.load-more-wrap {
  text-align: center;
  padding-bottom: 80px;
}

#loadMoreBtn {
  background: none;
  border: 1px solid #444;
  color: white;
  padding: 14px 30px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: 0.3s;
}

#loadMoreBtn:hover {
  border-color: white;
}
