@import url('https://fonts.googleapis.com/css2?family=Changa+One:ital@0;1&family=Dancing+Script:wght@400..700&family=Fjalla+One&family=Host+Grotesk:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

/* ===== General Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #f8f8f8;
  color: #222;
}

/* ===== Container ===== */
.header-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===== Header ===== */
.site-header {
  background: #1a1a1a;  /* тёмно-графитовый фон */
  color: #fff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* ===== Logo ===== */
.logo img {
  height: 55px;
  width: auto;
  display: block;
}

.logo {
  display: inline-block;
}

/* ===== Navigation ===== */
.main-nav {
  display: flex;
  gap: 25px;
  align-items: center;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #B89B5E; /* золотой акцент */
}

/* ===== Burger Menu ===== */
.burger {
  display: none;
  cursor: pointer;
  font-size: 28px;
  margin-left: 20px;
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    flex-direction: column;
    background: #2a2a2a; /* чуть светлее, чем header */
    position: absolute;
    top: 60px;
    right: 10px;
    width: 220px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  }

  .main-nav a {
    padding: 10px 0;
  }

  .main-nav a:hover {
    color: #d4b973; /* более яркое золото при hover */
  }

  .main-nav.active {
    display: flex;
  }

  .burger {
    display: block;
    color: #B89B5E; /* золотой бургер */
  }
}



/* ===== Hero Section ===== */
/* hero */
.hero {
  position: relative;
  color: #fff;
  padding: 120px 20px;
  text-align: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: background-image 1s ease-in-out;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.35); /* затемнение для читаемости текста */
  z-index: 0;
}

.hero-container {
  position: relative;
  z-index: 1;
}


.btn {
  background: linear-gradient(135deg, #B89B5E, #d4b973); /* золотой градиент */
  border: none;
  margin-top: 20px;
  padding: 14px 32px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35), 
              0 0 10px rgba(184, 155, 94, 0.5); /* лёгкая подсветка */
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn:hover {
  background: linear-gradient(135deg, #d4b973, #B89B5E); /* меняем направление градиента */
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.45), 
              0 0 16px rgba(184, 155, 94, 0.7);
}

.btn:active {
  transform: translateY(0) scale(0.95);
  box-shadow: 0 3px 10px rgba(0,0,0,0.25);
}

.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(184, 155, 94, 0.6);
}

/* contact block */
.contact-block {
  background: none; 
  margin-top: -20vh; /* блок заезжает на hero */
  position: relative;
  z-index: 2;
  padding-top: 60px;
}

.contact-block .container {
  background-color: #fff; /* светлый фон */
  max-width: 60%;
  margin: 0 auto;
  padding: 40px 100px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  border: 1px solid rgba(184, 155, 94, 0.3); /* золотистая рамка */
}

.contact-block h2 {
  color: #B89B5E; /* акцентный цвет заголовка */
  margin-bottom: 15px;
}

.contact-block p {
  color: #333;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 16px;
  border: 1px solid rgba(184, 155, 94, 0.5); /* золотистые поля */
  border-radius: 6px;
  font-size: 16px;
  width: 100%;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #B89B5E;
  box-shadow: 0 0 6px rgba(184, 155, 94, 0.5);
  outline: none;
}

.contact-form button {
  background: linear-gradient(135deg, #B89B5E, #d4b973); /* золотой градиент */
  color: #fff;
  font-weight: bold;
  border: none;
  padding: 14px 28px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.contact-form button:hover {
  background: linear-gradient(135deg, #d4b973, #B89B5E);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}




/* ===== Hotel Cards ===== */
.hotels {
  padding: 50px 0;
}

.hotels h2 {
  text-align: center;
  margin-bottom: 30px;
}

.hotel-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 25px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hotel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hotel-card img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 15px;
}

.hotel-card h3 {
  margin-bottom: 10px;
}

/* ===== Reviews ===== */
.reviews {
  padding: 50px 0;
}

.review-card {
  background: #fff;
  border-left: 5px solid #ffcc00;
  padding: 15px;
  margin-bottom: 20px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.1);
}

.review-card p {
  margin-bottom: 10px;
  font-style: italic;
}

/* ===== Contacts ===== */
.contacts {
  padding: 50px 0;
}

.contacts form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contacts input,
.contacts textarea {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contacts button {
  background: #ffcc00;
  border: none;
  padding: 12px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.contacts button:hover {
  background: #e6b800;
}


/* ===== Info Card Block ===== */
.hotel-card-block {
  padding: 60px 20px;
  background: #f4f4f4; /* светлый фон секции */
}

.info-card {
  background: #fff;
  border-radius: 14px;
  padding: 40px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  max-width: 900px;
  margin: auto;
  border: 1px solid rgba(184, 155, 94, 0.25); /* золотистая рамка */
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  border-color: #B89B5E; /* акцент при наведении */
}

.info-card h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #B89B5E; /* золотой заголовок */
  text-align: center;
  position: relative;
}

.info-card h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #B89B5E;
  margin: 12px auto 0;
  border-radius: 2px;
}

.info-card p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #333; /* читаемый текст */
  text-align: justify;
}


/* ===== Amenities Block ===== */
.amenities-block {
  padding: 70px 20px;
  background: #f9f9fb;
}

/* Верхний текстовый блок */
.amenities-block .info-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  max-width: 900px;
  margin: 0 auto 50px auto;
  text-align: center;
  border: 1px solid rgba(184, 155, 94, 0.25); /* тонкая золотистая рамка */
}

.amenities-block .info-card h2 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #B89B5E; /* золотой акцент */
  text-transform: uppercase;
  letter-spacing: 1px;
}

.amenities-block .info-card p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #444;
}

/* Сетка карточек */
.amenities-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: auto;
}

/* Каждая карточка */
.amenity-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
  position: relative;
  border: 1px solid rgba(184, 155, 94, 0.25); /* золотистая рамка */
}

.amenity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
  border-color: #B89B5E; /* золотой акцент при наведении */
}

/* Иконки внутри карточек */
.amenity-card svg {
  width: 55px;
  height: 55px;
  color: #B89B5E; /* золотые иконки */
  margin-bottom: 15px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.amenity-card:hover svg {
  transform: scale(1.15);
  color: #d4b973; /* ярче золото при hover */
}

/* Заголовок и текст карточек */
.amenity-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #B89B5E; /* золотой */
  font-weight: bold;
}

.amenity-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}


/* ===== Why Choose Us Block ===== */
.why-choose-block {
  position: relative;
  padding: 100px 20px;
  background: url('../images/why-hotel-bg.png') center/cover no-repeat;
  color: #fff;
  text-align: center;
}

.why-choose-block .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.65); /* чуть темнее для премиального эффекта */
  z-index: 0;
}

.why-choose-block .container {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: auto;
}

.why-choose-block h2 {
  font-size: 36px;
  margin-bottom: 25px;
  font-weight: bold;
  color: #B89B5E; /* золотой акцент */
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.why-choose-block h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #B89B5E;
  margin: 15px auto 0;
  border-radius: 2px;
}

.why-choose-block p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #e6e6e6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}


/* ===== Reviews Block ===== */
.reviews-block {
  padding: 70px 20px;
  background: #f4f4f9;
  text-align: center;
}

.reviews-block h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #B89B5E; /* золотой акцент */
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.reviews-block h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #B89B5E;
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Сетка отзывов */
.reviews-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: auto;
}

.review-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
  text-align: left;
  border: 1px solid rgba(184, 155, 94, 0.25); /* тонкая золотая рамка */
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
  border-color: #B89B5E; /* подсветка золотым */
}

.review-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #B89B5E; /* акцент на имени */
  font-weight: bold;
}

.stars {
  color: #B89B5E; /* звёзды золотые */
  font-size: 16px;
  margin-bottom: 12px;
}

.review-card p {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  font-style: italic;
}





/* ===== Privacy / Terms ===== */
.privacy, .terms {
  padding: 50px 0;
}

.privacy h1, .terms h1 {
  margin-bottom: 20px;
  text-align: center;
}

/* ===== Footer ===== */
.site-footer {
  background: #2c5e70;
  color: #fff;
  padding: 50px 20px 20px 20px;
  font-family: "Georgia", serif;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.6;
  margin: 15px 0;
}

.footer-logo img {
  max-height: 70px;
  margin-bottom: 15px;
}

.footer-socials {
  margin-top: 10px;
}

.footer-socials a {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  font-size: 18px;
  transition: color 0.3s;  
}

.footer-socials a:hover {
  color: #B89B5E;
}

.footer-links h3 {
  font-size: 2em;
  margin-bottom: 15px;
  color: #fff;
  font-variant: small-caps;
  font-family: "Changa One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 1.15em;
    font-family: "Changa One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.footer-links ul li a:hover {
  color: #B89B5E;
}

.footer-bottom {
  margin-top: 30px;
  text-align: center;
  font-size: 13px;
  color: #eee;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  line-height: 1.6;
}

/* ===== Адаптив ===== */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr; /* 2 колонки на планшете */
    gap: 20px;
  }

  .footer-about {
    grid-column: span 2; /* описание на всю ширину */
    text-align: center;
  }

  .footer-about p {
    max-width: 700px;
    margin: 10px auto;
  }

  .footer-socials {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr; /* 1 колонка на телефоне */
    text-align: center;
  }

  .footer-links {
    margin-top: 20px;
  }

  .footer-socials {
    margin-top: 15px;
  }
}


/* ===== Popups (Cookies & Register) ===== */
/* ===== Cookies Popup ===== */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  border: 1px solid #B89B5E ;
  padding: 15px 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  border-radius: 6px;
  display: none;
  z-index: 2000;
  max-width: 320px;
}

.cookie-popup p {
  margin-bottom: 10px;
  font-size: 14px;
  color: #333;
}

.cookie-popup button {
  margin: 5px 3px 0 0;
  padding: 8px 14px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
}

.cookie-popup button:first-of-type {
  background: #4CAF50;
  color: #fff;
}

.cookie-popup button:last-of-type {
  background: #f44336;
  color: #fff;
}

/* Общий стиль для Register и Login */
.register-popup,
.login-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 10px;
  padding: 30px 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  display: none;
  z-index: 3000;
  max-width: 500px;
  width: 90%;
}

.register-popup form,
.login-popup form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.register-popup h2,
.login-popup h2 {
  text-align: center;
  margin-bottom: 15px;
  color: #2c2c54;
}

.register-popup input,
.login-popup input {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

.register-popup button[type="submit"],
.login-popup button[type="submit"] {
  background: linear-gradient(135deg,  #B89B5E , #c6a663);
  color: #fff;
  font-weight: bold;
  padding: 12px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.register-popup button[type="submit"]:hover,
.login-popup button[type="submit"]:hover {
  background: linear-gradient(135deg, #c6a663, #B89B5E);
  transform: scale(1.03);
}

.register-popup button#close-register,
.login-popup button#close-login {
  background: #666;
  color: #fff;
  padding: 10px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

.switch-btn {
  background: none;
  color: #B89B5E;
  font-size: 14px;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  margin-top: 5px;
}


/* ===== Nearby Hotels Section ===== */.nearby-hotels {
  padding: 70px 20px;
  background: #f9f9fb;
}

.nearby-hotels .info-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  max-width: 900px;
  margin: 0 auto 50px auto;
  text-align: center;
  border: 1px solid rgba(184, 155, 94, 0.25); /* лёгкий золотой акцент */
}

.nearby-hotels .info-card h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #B89B5E; /* золотой акцент */
}

.nearby-hotels .info-card p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #333;
}

/* Карточки отелей */
.hotel-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.hotel-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(184, 155, 94, 0.25);
}

.hotel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
  border-color: #B89B5E;
}

.hotel-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

.card-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #B89B5E; /* золотой заголовок */
}

.card-content p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}

.card-btn {
  display: inline-block;
  text-decoration: none;
  background: linear-gradient(135deg, #B89B5E, #d4b973);
  color: #fff;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
}

.card-btn:hover {
  background: linear-gradient(135deg, #d4b973, #B89B5E);
  transform: scale(1.05);
}

/* ===== Privacy Policy Section ===== */
.privacy-policy {
  padding: 70px 20px;
  background: #fff;
  color: #333;
  line-height: 1.7;
  border-top: 2px solid rgba(184, 155, 94, 0.3);
}

.privacy-policy h2 {
  font-size: 30px;
  margin-bottom: 25px;
  color: #B89B5E;
  text-align: center;
}

.privacy-policy h3 {
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 12px;
  color: #B89B5E;
}

.privacy-policy p {
  font-size: 15px;
  margin-bottom: 15px;
  color: #444;
}

.privacy-policy .last-update {
  margin-top: 40px;
  font-size: 14px;
  font-style: italic;
  color: #777;
  text-align: center;
}

/* ===== Terms & Conditions Section ===== */
.terms-conditions {
  padding: 70px 20px;
  background: #fff;
  color: #333;
  line-height: 1.7;
  border-top: 2px solid rgba(184, 155, 94, 0.3);
}

.terms-conditions h2 {
  font-size: 30px;
  margin-bottom: 25px;
  color: #B89B5E;
  text-align: center;
}

.terms-conditions h3 {
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 12px;
  color: #B89B5E;
}

.terms-conditions p {
  font-size: 15px;
  margin-bottom: 15px;
  color: #444;
}

.terms-conditions .last-update {
  margin-top: 40px;
  font-size: 14px;
  font-style: italic;
  color: #777;
  text-align: center;
}


.destination-block {
  padding: 80px 20px;
  background: #f9f9fb;
}

.destination-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.destination-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.destination-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #B89B5E; /* золотой акцент */
  text-transform: uppercase;
  letter-spacing: 1px;
}

.destination-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #333;
  text-align: justify;
}

/* Адаптив */
@media (max-width: 900px) {
  .destination-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .destination-text {
    margin-top: 20px;
  }
}
.feature-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* три блока в одной линии */
  gap: 25px;
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
}

.feature-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.feature-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.feature-card .content {
  position: relative;
  padding: 25px;
  color: #fff;
  z-index: 1;
}

.feature-card h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #B89B5E;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.feature-card .btn {
  display: inline-block;
  background: linear-gradient(135deg, #B89B5E, #d4b973);
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.feature-card .btn:hover {
  background: linear-gradient(135deg, #d4b973, #B89B5E);
  transform: scale(1.05);
}

/* Адаптив */
@media (max-width: 1024px) {
  .feature-blocks {
    grid-template-columns: repeat(2, 1fr); /* 2 блока в ряд */
  }
}

@media (max-width: 700px) {
  .feature-blocks {
    grid-template-columns: 1fr; /* 1 блок в ряд */
  }
}
