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

body {
  font-family: "Playfair Display", "Inter", serif;
  background: linear-gradient(180deg, #fffdf8 0%, #fffaf0 100%);
  color: #2b2b2b;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Контейнер */
.lb-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ====== Typography ====== */
h1, h2, h3, h4 {
  font-family: "Playfair Display", serif;
  color: #1e1e1e;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2a1d10;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

p {
  font-family: "Inter", sans-serif;
  color: #3e3e3e;
}

/* ====== Header ====== */
.lb-header {
  background: #ffffffd9;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(190, 160, 100, 0.3);
  box-shadow: 0 2px 8px rgba(200, 180, 100, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.lb-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
}
.lb-burger {
    display: none;
}
.lb-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #b18a00;
}

.lb-logo img {
  width: 42px;
  height: 42px;
}

/* ====== Navigation ====== */
.lb-nav a {
  margin-left: 10px;
  font-weight: 500;
  color: #000;
  transition: 0.3s ease;
  position: relative;
}

.lb-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: #c7a129;
  transition: width 0.3s ease;
}

.lb-nav a:hover {
  color: #c7a129;
}

.lb-nav a:hover::after {
  width: 100%;
}

/* ====== Hero ====== */
.lb-hero-versailles {
  background: linear-gradient(145deg, #fffdf6 0%, #f9f5eb 100%);
  background-image:
    radial-gradient(circle at 25% 30%, rgba(212,175,55,0.12) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(183,149,11,0.10) 0%, transparent 50%);
  text-align: center;
  padding: 7rem 2rem 6rem;
  border-bottom: 1px solid rgba(200,180,100,0.3);
  position: relative;
  overflow: hidden;
}

.lb-hero-versailles::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(240, 220, 160, 0.07), transparent 70%);
  pointer-events: none;
}

.lb-hero-versailles .lb-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.lb-hero-versailles h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  color: #b08a25;
  margin-bottom: 1.2rem;
  text-shadow: 0 1px 5px rgba(185,150,40,0.15);
}

.lb-hero-versailles p {
  color: #4a4029;
  font-size: 1.15rem;
  line-height: 1.7;
  margin: 0 auto 2.5rem;
  max-width: 720px;
}

.lb-hero-versailles .lb-btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #f7d98e, #d4af37);
  color: #3c2d0e;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 36px;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(200,160,50,0.35);
  transition: all 0.3s ease;
  text-decoration: none;
}

.lb-hero-versailles .lb-btn-primary:hover {
  background: linear-gradient(135deg, #fff2b0, #e6c45c);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(210,160,50,0.45);
}
.lb-about-versailles {
  background: linear-gradient(180deg, #fffdf6 0%, #fff9ec 100%);
  padding: 6rem 2rem;
  border-top: 1px solid rgba(210,180,90,0.25);
  border-bottom: 1px solid rgba(210,180,90,0.25);
}

.lb-about-versailles .lb-about-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 6rem;
}

.lb-about-versailles .lb-about-row.reverse {
  flex-direction: row-reverse;
}

.lb-about-versailles .lb-about-text {
  flex: 1;
}

.lb-about-versailles .lb-about-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: #b08a25;
  margin-bottom: 1.2rem;
}

.lb-about-versailles .lb-about-text p {
  color: #463b28;
  line-height: 1.7;
  font-size: 1.1rem;
}

.lb-about-versailles .lb-about-img {
  flex: 1;
  text-align: center;
}

.lb-about-versailles .lb-about-img img {
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  border: 1px solid rgba(212,175,55,0.3);
  box-shadow: 0 6px 22px rgba(212,175,55,0.25);
  transition: all 0.35s ease;
}

.lb-about-versailles .lb-about-img img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(212,175,55,0.35);
}

/* ====== Sections ====== */
section {
  padding: 4rem 0;
}

.lb-section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #2b1d07;
  margin-bottom: 2rem;
  position: relative;
}

.lb-section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #d4af37;
  display: block;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

/* ====== Cards ====== */
.lb-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
}

.lb-card {
  background: #fff;
  border: 1px solid rgba(180, 150, 80, 0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(200, 170, 100, 0.1);
  transition: 0.3s ease;
}

.lb-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
}

/* ====== Buttons ====== */
.lb-btn,
.lb-offer-btn {
  background: linear-gradient(90deg, #d4af37, #b7950b);
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 0.7rem 1.6rem;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
}

.lb-btn:hover,
.lb-offer-btn:hover {
  background: linear-gradient(90deg, #b7950b, #d4af37);
  transform: translateY(-2px);
}

/* ====== Offer Cards ====== */
.lb-offres-versailles {
  background: linear-gradient(180deg, #fffdf8 0%, #fff7ea 100%);
  padding: 6rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(210,180,90,0.25);
  border-bottom: 1px solid rgba(210,180,90,0.25);
  position: relative;
  overflow: hidden;
}

.lb-offres-versailles::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(212,175,55,0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(183,149,11,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.lb-section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  color: #b08a25;
  margin-bottom: 3rem;
  text-shadow: 0 1px 6px rgba(180,150,50,0.1);
}

.lb-offer-card {
  background: #ffffffcc;
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(212,175,55,0.25);
  box-shadow: 0 8px 28px rgba(212,175,55,0.25);
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem;
  transition: all 0.35s ease;
}

.lb-offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(212,175,55,0.35);
}

.lb-offer-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 2rem;
}

.lb-offer-logo {
  width: 90px;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(210,180,90,0.3);
  box-shadow: 0 2px 10px rgba(210,180,90,0.25);
  background: #fff;
}

.lb-offer-header h3 a {
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  color: #3a2d10;
  text-decoration: none;
  transition: color 0.3s ease;
}

.lb-offer-header h3 a:hover {
  color: #b08a25;
}

.lb-offer-body {
  color: #463b28;
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.lb-offer-body span {
  color: #b08a25;
  font-weight: 500;
}

.lb-offer-extra {
  font-size: 1rem;
  margin-bottom: 1rem;
}
a {
  text-decoration: none;
}
.lb-offer-footer .lb-btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #f2d37e, #d4af37);
  color: #3c2d0e;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 14px 40px;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(210,160,50,0.3);
  text-decoration: none;
  transition: all 0.3s ease;
}

.lb-offer-footer .lb-btn-primary:hover {
  background: linear-gradient(135deg, #ffe9a8, #e6c45c);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(210,160,50,0.45);
}
.lb-faq {
  background: linear-gradient(180deg, #fffdf8 0%, #fff8ee 100%);
  padding: 6rem 2rem;
  border-top: 1px solid rgba(210,180,90,0.25);
  border-bottom: 1px solid rgba(210,180,90,0.25);
  position: relative;
  overflow: hidden;
}

.lb-faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(212,175,55,0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(183,149,11,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.lb-section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  color: #b08a25;
  text-align: center;
  margin-bottom: 3rem;
  text-shadow: 0 1px 6px rgba(180,150,50,0.1);
}

.lb-faq-item {
  background: #ffffffcc;
  border: 1px solid rgba(210,180,90,0.25);
  border-radius: 14px;
  margin-bottom: 1.2rem;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(210,180,90,0.1);
  transition: all 0.3s ease;
}

.lb-faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 22px rgba(210,180,90,0.2);
}

.lb-faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  outline: none;
  padding: 1.2rem 1.6rem;
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  color: #3a2d10;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.lb-faq-question:hover {
  background: rgba(255,230,160,0.15);
}

.lb-faq-icon {
  font-weight: bold;
  color: #b08a25;
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.lb-faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, opacity 0.35s ease;
  opacity: 0;
}
.lb-faq-item.open .lb-faq-answer {
  padding: 10px;
  opacity: 1;
}

.lb-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: #fffaf0;
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  font-weight: 600;
  color: #3a2d10;
  transition: all 0.25s ease;
}

.lb-faq-question:hover {
  background: #fff5d9;
}

.lb-faq-icon {
  font-size: 1.3rem;
  color: #b99300;
  transition: transform 0.25s ease;
}

.lb-faq-item.open .lb-faq-icon {
  transform: rotate(180deg);
}
.lb-faq-item.active .lb-faq-answer {
  display: block;
}

.lb-faq-item.active .lb-faq-icon {
  transform: rotate(45deg);
}
.lb-contact {
  padding: 100px 20px;
  background: linear-gradient(135deg, #fffaf3 0%, #ffffff 100%);
  color: #2e2e2e;
  font-family: "Playfair Display", serif;
}

.lb-contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.lb-contact-text h2 {
  font-size: 2.4rem;
  color: #b68c3b;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.lb-contact-text p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.7;
}

.lb-contact-list {
  list-style: none;
  padding: 0;
}

.lb-contact-list li {
  margin-bottom: 10px;
  font-weight: 500;
}

.lb-contact-list span {
  color: #b68c3b;
  margin-right: 10px;
}

.lb-contact-form {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(182, 140, 59, 0.15);
  padding: 40px 35px;
  border: 1px solid rgba(182, 140, 59, 0.25);
}

.lb-form-group {
  margin-bottom: 20px;
}

.lb-contact-form input,
.lb-contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e8dcc3;
  border-radius: 10px;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
}

.lb-contact-form input:focus,
.lb-contact-form textarea:focus {
  border-color: #b68c3b;
  box-shadow: 0 0 10px rgba(182, 140, 59, 0.2);
  outline: none;
}

.lb-btn.lb-btn-gold {
  display: inline-block;
  width: 100%;
  padding: 14px;
  font-size: 1.1rem;
  background: linear-gradient(90deg, #d4af37, #f4ce6a);
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.lb-btn.lb-btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}
.lb-gallery {
  position: relative;
  overflow: hidden;
  padding: 120px 20px;
  text-align: center;
  color: #3c3216;
}

/* 🔱 Параллакс-фон */
.lb-gallery-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 140%;
  background: url("../img/parallax-bg.jpg") center/cover no-repeat fixed;
  opacity: 0.25;
  transform: translateY(-10%);
  z-index: 0;
  filter: blur(1px);
}

/* Контент поверх фона */
.lb-gallery .lb-container {
  position: relative;
  z-index: 2;
}

.lb-gallery-title {
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  color: #b68c3b;
  margin-bottom: 0.6rem;
  text-shadow: 0 2px 8px rgba(255, 220, 150, 0.3);
}

.lb-gallery-subtitle {
  color: #5a4a2c;
  font-size: 1.15rem;
  max-width: 750px;
  margin: 0 auto 3.5rem;
  line-height: 1.7;
}

/* Галерея */
.lb-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.lb-gallery-item {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(182, 140, 59, 0.25);
  box-shadow: 0 4px 15px rgba(182, 140, 59, 0.15);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(3px);
}

.lb-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.lb-gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(182, 140, 59, 0.3);
}

.lb-gallery-item:hover img {
  transform: scale(1.08);
}
/* ====== Footer ====== */
.lb-footer {
  background: #1b1b1b;
  color: #d8d8d8;
  padding: 60px 20px;
  font-size: 0.95rem;
  line-height: 1.7;
  text-align: center;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.lb-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.lb-footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.lb-footer-logo img {
  height: 42px;
}

.lb-footer-logo span {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: #ffd700;
  letter-spacing: 0.5px;
}

.lb-footer-text {
  color: #b5b5b5;
  margin-bottom: 1.5rem;
}

.lb-footer-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-bottom: 1.8rem;
}

.lb-footer-logos img {
  height: 36px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.lb-footer-logos img:hover {
  opacity: 1;
}

.lb-footer-middle {
  margin-bottom: 1.5rem;
}

.lb-footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
  margin-bottom: 0.8rem;
}
.lb-banner {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 600;
}
.lb-footer-links a {
  color: #ffd700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.lb-footer-links a:hover {
  color: #fff;
}

.lb-footer-contact a {
  color: #ffd700;
  text-decoration: none;
}

.lb-footer-contact a:hover {
  text-decoration: underline;
}

.lb-footer-warning {
  font-size: 0.85rem;
  color: #888;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.6;
}
/* ====== Form ====== */
.lb-contact form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lb-contact input,
.lb-contact textarea {
  border: 1px solid rgba(200, 170, 100, 0.3);
  padding: 0.8rem 1rem;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  background: #fffdf9;
  transition: 0.3s ease;
}

.lb-contact input:focus,
.lb-contact textarea:focus {
  border-color: #d4af37;
  outline: none;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.2);
}
.lb-privacy {
  background: linear-gradient(180deg, #1c1b1b 0%, #262522 100%);
  color: #f9f6ee;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.lb-privacy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  background: url("img/bg-texture-gold.png") repeat;
  background-size: cover;
  opacity: 0.05;
  transform: translateX(-50%);
  z-index: 0;
}

.lb-container {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.lb-privacy-intro {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 15px;
  padding: 2rem;
  color: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.lb-privacy-block {
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid #ffd700;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lb-privacy-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.1);
}

.lb-privacy-block h2 {
  font-size: 1.4rem;
  color: #ffd700;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.25);
}

.lb-privacy-block p,
.lb-privacy-list li {
  color: #e8e6e1;
  line-height: 1.7;
  font-size: 1rem;
}

.lb-privacy-list {
  list-style: none;
  padding-left: 1.2rem;
  margin: 1rem 0;
}

.lb-privacy-list li::before {
  content: "★";
  color: #ffd700;
  margin-right: 10px;
}

.lb-privacy-block a {
  color: #ffd700;
  text-decoration: underline;
  transition: color 0.3s;
}

.lb-privacy-block a:hover {
  color: #ffea80;
}

.lb-privacy-block.final {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 215, 0, 0.02));
  border-left: 3px solid #e6c200;
}


@media (max-width: 992px) {
  .lb-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lb-about-versailles .lb-about-row {
    flex-direction: column;
    text-align: center;
  }
  .lb-about-versailles .lb-about-row.reverse {
    flex-direction: column;
  }
  .lb-about-versailles .lb-about-img {
    margin-top: 2rem;
  }
.lb-burger {
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1000;
}

.lb-burger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #d9a951;
  border-radius: 2px;
  transition: all 0.4s ease;
}

/* Анимация при открытии */
.lb-burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.lb-burger.active span:nth-child(2) {
  opacity: 0;
}

.lb-burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
  .lb-contact-flex {
    flex-direction: column;
    gap: 30px;
  }
  .lb-warning-text p {
    font-size: 1.2rem;
  }
  .lb-faq-grid {
    flex-direction: column;
    gap: 30px;
  }

  .lb-parallax-warning {
    padding: 80px 10px;
  }

  .lb-parallax-overlay {
    padding: 60px 10px;
  }

  .lb-about-flex {
    flex-direction: column-reverse;
    text-align: center;
  }
  
  .lb-about-text, 
  .lb-about-image {
    flex: 1 1 100%;
  }

  .lb-about-list {
    align-items: flex-start;
  }
  .lb-cards {
    gap: 20px;
  }
  .lb-offer-card.fr-offer-wide {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 25px 20px;
  }

  .lb-offer-left {
    flex-direction: column;
    gap: 15px;
  }

  .lb-offer-logo-wrapper {
    width: 120px;
    height: 120px;
  }

  .lb-btn-offer {
    font-size: 12px;
    width: 100%;
    padding: 14px 10px;
  }
  .lb-contact-row {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .lb-contact-form {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .lb-gallery-grid {
    grid-template-columns: 1fr;
  }

  .lb-gallery {
    padding: 80px 15px;
  }

  .lb-gallery-title {
    font-size: 2rem;
  }

  .lb-gallery-subtitle {
    font-size: 1rem;
  }
  .lb-hero-versailles {
    padding: 5rem 1.5rem 4rem;
  }
  .lb-hero-versailles h1 {
    font-size: 2.2rem;
  }
  .lb-hero-versailles p {
    font-size: 1.05rem;
  }
  .lb-nav {
    display: none;
    flex-direction: column;
    background: linear-gradient(145deg, #fffdf6 0%, #f9f5eb 100%);
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 15px;
    border-radius: 6px;
  }.lb-warning-text p {
    font-size: 1rem;
  }

  .lb-nav.active {
    display: flex;
  }

  .lb-burger {
    display: flex;
  }

  .lb-hero h1 {
    font-size: 2rem;
  }

  .lb-hero p {
    font-size: 1rem;
  }
  .lb-offer-title {
    font-size: 1.6rem;
  }

  .lb-offer-subtitle {
    font-size: 1rem;
  }

  .lb-offer-description-block {
    padding: 20px 15px;
  }
   .lb-card {
    padding: 20px 15px;
  }
}
