
body {
  background-color: #f9f9f9; /* или #ffffff или любой мягкий фон */
}

.hero {
  background-image: none;
  background-color: rgba(2, 98, 149, 0.1); /* или любой нужный цвет */
  color: #1d1d1d;
  padding: 1rem 1rem;
  line-height: 1.3;
}
  

.hero h1 {
  font-size: 38px;
  font-weight: bold;
  color: #026295;
}

.hero p {
  font-size: 22px;
  font-style: italic;
  color: #4b4b4b;
  margin-top: 0.5rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

/* HEADER */
.top-header {
  background-image: url(images/back1.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  display: flex;
  justify-content: center;
  padding: 1rem 0;
}

.top-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.5rem 3rem; /* Увеличенный отступ для прижатия крайних блоков */
  max-width: 1400px; /* можно адаптировать под твой макс. размер */
  margin: 0 auto; /* центрируем весь блок */
  width: 100%;
}


/* LOGO LEFT */
.logo {
  flex: 0 0 auto;
  max-width: 110px;
}

.logo img {
  max-width: 120px;
  width: 100%;
  height: auto;
  margin-top: 10px;
  margin-bottom: 0;
}

/* CENTER CONTENT */


.hero-text {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 0 1rem; /* пространство по бокам */
}

.hero-text h1 {
  font-size: 33px;
  margin: 0.2rem 0;
  font-weight: bold;
}

.hero-text h2 {
  font-size: 18px;
  margin: 0.2rem 0;
  font-style: italic;
}

.cta-button {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  padding: 0.5rem 2rem;
}

.announcement-bar {
  background-color: rgba(2, 98, 149, 0.15);
  color: #01466b;
  font-size: 16px;
  font-weight: 600;
  padding: 0.4rem 1rem;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

.announcement-bar p {
  display: inline-block;
  animation: scroll-left 15s linear infinite;
  margin: 0;
}
.announcement-bar p span {
  margin: 0 0.5rem;
}

.announcement-bar p .dot {
  margin: 0 0.5rem;
}


/* Анимация прокрутки */
@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}


/* CONTACT BLOCK COMPACT */

.contact-block {
  flex: 0 0 auto;
  max-width: 240px;
  padding: 0 0.5rem;
}

.contact-info a {
  font-size: 16px;
  margin: 0.25rem 0;
}

.contact-info a i {
  font-size: 18px;
  margin-right: 8px;
}

.social-icons a i {
  font-size: 22px;
  margin-top: 0.3rem;
}

.social-icons {
  gap: 1rem;
  margin-top: 0.3rem;
}

/* 📱 RESPONSIVE FIX */
@media (max-width: 768px) {
  .top-header-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
  }

  .hero-text {
    align-items: center;
    padding: 0;
  }

  .logo, .contact-block {
    max-width: none;
    text-align: center;
  }

  .contact-block {
    margin-top: 1rem;
  }
}
.split-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  background-color: rgba(2, 98, 149, 0.1);
}
 
.left-column,
.right-column {
  flex: 1 1 48%;
}

.left-column {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.carousel-section {
  text-align: center;
  display: none;
  flex-direction: column;
  align-items: center;
  margin: 0;
  height: 400px;
}

.carousel-section h2 {
  font-size: 22px;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #026295;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}


.beer-slider-wrapper {
  max-width: 400px;
  max-height: 300px;
  position: relative;
  margin: 0 auto;
}

.beer-slider {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 300px; /* или то же значение, что у max-height у картинки */  
  border: 4px solid white;     /* Белая рамка */
  border-radius: 8px;          /* (опционально) скруглённые углы */
  overflow: hidden;            /* чтобы скругление обрезало содержимое */
  box-sizing: border-box;
}

.beer-slider img {
  display: block;
  width: 100%;
  height: 100%; /* или 100% если используешь height */
  object-fit: cover;
  max-height: 300px;
}

.beer-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px; /* Толщина линии */
  height: 300px;
  background-color: #ffffff; /* Белая линия — можно изменить */
  z-index: 20; /* Поверх изображений */
  pointer-events: none;
  border-radius: 0px;
}

.beer-handle::before,
.beer-handle::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

/* ◀ Левая */
.beer-handle::before {
  left: -12px;
  border-width: 8px 10px 8px 0;
  border-color: transparent white transparent transparent;
}

/* ▶ Правая */
.beer-handle::after {
  right: -12px;
  border-width: 8px 0 8px 10px;
  border-color: transparent transparent transparent white;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  overflow: hidden;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%; /* трек будет растягиваться под flex-контент */
}
.carousel-slide {
  display: flex; /* ОБЯЗАТЕЛЬНО */
  justify-content: center;
  align-items: center;
  transition: transform 0.5s ease-in-out;
  min-width: 100%;
  box-sizing: border-box;
}


/* Кнопки */
.carousel-btn {
  width: 40px;
  height: 40px;
  background: white;
  border: none;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
}

.carousel-btn::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
}

.carousel-btn.prev::before {
  border-width: 10px 14px 10px 0;
  border-color: transparent #026295 transparent transparent;
  margin-left: -3px;
}

.carousel-btn.next::before {
  border-width: 10px 0 10px 14px;
  border-color: transparent transparent transparent #026295;
  margin-right: -3px;
}

.carousel-btn.prev {
  left: 20px; /* или даже 5px, если хочешь ещё ближе */
}

.carousel-btn.next {
  right: 20px;
}
@media (max-width: 500px) {
  .carousel-btn.prev { left: 5px; }
  .carousel-btn.next { right: 5px; }
}


.right-column .quote-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 1rem;
  max-width: 350px;
  margin: 0 auto;
}
  

.right-column .quote-form h3 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #000;
  text-align: center;
  margin: 0 0 1rem;
  padding: 0.75rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.right-column .quote-form form {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.right-column .quote-form form input,
.right-column .quote-form form select,
.right-column .quote-form form textarea {
  display: block;
  width: 100%;
  padding: 0.5rem;
  margin: 0.25rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
}

.right-column .quote-form form button {
  background-color: rgb(187, 16, 16);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  border-radius: 10px;
  font-size: 1.25rem;
  margin-top: 0.5rem;
  font-family: inherit;
  font-weight: bold;
}


@media (max-width: 768px) {
  .split-section {
    flex-direction: column;
  }

  .left-column,
  .right-column {
    width: 100%;
  }
}

.faq-section {
  background-color: rgba(2, 98, 149, 0.1);
  color: rgb(0, 0, 0);
  padding: 2rem 1rem;
  max-width: 1000px;
  margin: 0 auto;
}
.faq-section h2 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 1px;
  margin: 3rem 0 1.5rem;
  text-transform: uppercase;
  color: #026295;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.faq-item {
  background: #ffffff;
  color: #003b5c;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.open {
  background: #ffffff; /* светло-голубой при раскрытии */
}

.faq-question {
  background: none;
  border: none;
  font-size: 17px;
  font-weight: 700;
  text-align: left;
  width: 100%;
  cursor: pointer;
  padding: 1rem 2rem 1rem 1rem;
  position: relative;
  color: #01466b;
}

.faq-question::after {
  content: "\25BA";
  font-size: 18px;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s ease;
  color: #026295;
}

.faq-item.open .faq-question::after {
  transform: translateY(-50%) rotate(90deg);
}


.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 16px;
  color: #1b1b1b;
  padding: 0 1rem;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0.5rem 1rem 1rem;
}

.site-footer {
  background-color: #01466b;
  color: #ffffff;
  padding: 2rem 1rem;
  font-size: 15px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.footer-block {
  flex: 1 1 200px;
  min-width: 180px;
}

.footer-block h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 1rem;
  font-weight: bold;
}

.footer-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-block ul li {
  margin-bottom: 0.5rem;
}

.footer-block ul li a {
  color: #f0faff;
  text-decoration: none;
}

.footer-block ul li a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.logo-block img {
  max-width: 150px;
  margin-bottom: 0.5rem;
}
.logo-block p {
  margin: 0.3rem 0;
  color: #cccccc;
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-block {
    width: 100%;
  }
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 2rem;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  font-size: 14px;
}

.footer-bottom .copyright {
  color: #aaa;
}

.footer-socials a {
  color: #ccc;
  margin-left: 1rem;
  font-size: 20px;
  transition: color 0.2s ease;
}

.footer-socials a:hover {
  color: #ffffff;
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-socials a {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}

.sticky-quote-btn {
  position: fixed;
  bottom: 80px;
  left: 20px;
  background-color: #c62828;
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 999;
  transition: background 0.3s ease, transform 0.2s ease, opacity 0.3s ease;
  opacity: 1;
  border: 1px solid rgba(255,255,255,0.2)
}
.sticky-quote-btn:hover {
  background-color: #a71d1d;
  transform: scale(1.05);
}
.hidden {
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 600px) {
  .sticky-quote-btn {
    font-size: 14px;
    padding: 10px 14px;
    bottom: 100px;
    left: 15px;
  }
}

.sticky-home-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: rgba(2, 98, 149, 0.5);
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: background 0.3s ease, transform 0.2s ease, opacity 0.3s ease;
    opacity: 1;
    border: 1px solid rgba(255,255,255,0.2);
}
.sticky-home-btn:hover {
    background-color: #006297;
    transform: scale(1.05);
    box-shadow: 0 0 12px rgba(2,98,149,0.5);
}
.hidden {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 600px) {
  .sticky-home-btn {
    font-size: 14px;
    padding: 10px 14px;
    bottom: 100px; /* Поднимаем выше, чтобы не мешала браузерной навигации */
    right: 15px;
  }
}
html {
  scroll-behavior: smooth;
}
