.logo-small {
    height: 24px;
    /* або менше, наприклад 24px */
    /* width: auto; */
    object-fit: contain;
}

.reservation-container {
    text-align: center;
    padding: 2rem;
}

.reservation-title {
    background-color: #f5b623;
    padding: 1rem 2rem;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    display: inline-block;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.reservation-card {
    background-color: #243e48;
    padding: 2rem;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

.reservation-card1 {
    background-color: #b8720a;
    padding: 2rem;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

.reservation-image {
    display: block;
    margin: 0 auto;
    /* центрує зображення */
    width: 100%;
    /* 60% ширини вікна */
    max-width: 100%;
    /* не виходити за межі контейнера */
    border: 2px solid #156f2b;
    border-radius: 4px;
    height: auto;
}

.reservation-image1 {
    display: block;
    margin: 0 auto;
    /* центрує зображення */
    width: 100%;
    /* 60% ширини вікна */
    max-width: 100%;
    /* не виходити за межі контейнера */
    border: 2px solid #cbbf0e;
    border-radius: 4px;
    height: auto;
}

.reservation-images-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    /* відстань між картинками */
    justify-content: center;
    align-items: center;
    padding-right: 1rem;
    width: 100%;
    margin-bottom: 2rem;
}

.reservation-images-wrapper .reservation-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border: 2px solid #156f2b;
    border-radius: 4px;
}

.reservation-subtitle {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.reservation-form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.reservation-form-group1 {
    margin-bottom: 1.5rem;
    text-align: left;
}

.reservation-form-group label {
    display: block;
    font-weight: bold;
    color: #f0937b;
    margin-bottom: 0.5rem;
}

.reservation-form-group1 label {
    display: block;
    font-weight: bold;
    color: #91b21b;
    margin-bottom: 0.5rem;
}

.reservation-select {
    width: 100%;
    padding: 0.75rem;
    border-radius: 5px;
    border: none;
    font-size: 1rem;
    color: #000;
    /* чёрный текст внутри <select> */
    background-color: #fff;
}

.reservation-button {
    margin-top: 2rem;
    padding: 0.75rem 2rem;
    font-weight: bold;
    background-color: transparent;
    border: 2px solid #f5b623;
    border-radius: 50px;
    color: white;
    transition: all 0.3s ease;
}

.reservation-button:hover {
    background-color: #f5b623;
    color: #243e48;
}

#calendar {
    max-width: 500px;
    margin: 0 auto;
    font-size: 0.9rem;
}

.reservation-body {
    flex: 1;
}

/* Кнопка отправки */
.reservation-button {
    align-self: center;
    /* центрируем по горизонтали */
    padding: 0.75rem 2rem;
    font-weight: bold;
    background-color: transparent;
    border: 2px solid #f5b623;
    border-radius: 50px;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.reservation-button:hover {
    background-color: #f5b623;
    color: #243e48;
}

/* Обёртка-баннер */
.hero-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    /* можно менять на нужную высоту */
    overflow: hidden;
}

/* Фоновое изображение */
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* заполнит блок, обрезая лишнее, но можно заменить на contain */
    display: block;
}

/* Затемняющий слой */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

/* Контент поверх */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    padding: 1rem;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Заголовок и подзаголовок */
.hero-title {
    font-size: 3rem;
    font-weight: 700;
    /* если нужна обводка */
    /* -webkit-text-stroke: 1px black; text-stroke: 1px black; */
}

.hero-subtitle {
    font-size: 1.25rem;
}

/* Кнопки */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* приховуємо додатковий абзац */
.hidden {
  display: none;
}

.btn {
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: background-color .2s;
}

.btn-primary {
    background-color: #2563eb;
}

.btn-primary:hover {
    background-color: #1e40af;
}

.btn-success {
    background-color: #16a34a;
}

.btn-success:hover {
    background-color: #166534;
}

.btn-warning {
    background-color: #d97706;
}

.btn-warning:hover {
    background-color: #b45309;
}

.nav-contacts {
    display: flex;
    align-items: center;
    gap: 2rem;
    background-color: #f9f8f6;
    padding: 0.5rem 1rem;
    color: hwb(0 3% 97%);
    border-radius: 1px;
    margin-left: auto;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #0a0a0a;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #f5b623;
}

.contact-icon {
    font-size: 1.2rem;
    color: #f5b623;
}

.slider {
    position: relative;
    overflow: hidden;
    height: 80vh;
    background-color: #000;
}

.slider__inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider__item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slider__item.active {
    opacity: 1;
    z-index: 1;
}

.slider__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider__item-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 12px;
}

.slider__title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.slider__text {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.slider__btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #f5b623;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
}

.slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 3;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.5rem;
    border-radius: 50%;
    user-select: none;
}

.slider__arrow--left {
    left: 20px;
}

.slider__arrow--right {
    right: 20px;
}





.services {
    padding: 4rem 1rem;
    background-color: #fff;
    font-family: 'Figtree', sans-serif;
}

.services .container {
    max-width: 1200px;
    margin: 0 auto;
}

.services__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.services__title-box {
    max-width: 700px;
}

.services__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.services__title::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 2px;
    background-color: #f5b623;
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
}

.services__text {
    color: #555;
    font-size: 1rem;
    max-width: 500px;
    line-height: 1.6;
}

.services__items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 50px;
}

.services__item {
    position: relative;
    background-color: #fafafa;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    flex: 1 1 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
    padding-top: 3.5rem;
}

.services__item-sticker {
  position: absolute;
  top: 1rem;       /* відступ зверху картки */
  left: 50%;       /* центр по ширині */
  transform: translateX(-50%);
  font-size: 2.5rem;   /* розмір емодзі */
  line-height: 1;
  pointer-events: none;
}

.services__item:hover {
    transform: translateY(-5px);
}

.services__item-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.services__item-text {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.services__item-btn {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.services__item-link {
    color: #000;
    font-weight: bold;
    text-decoration: underline;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.services__item-link:hover {
    color: #f5b623;
}

.default-btn {
    background-color: #f5b623;
    color: #000;
    font-weight: bold;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

.default-btn:hover {
    background-color: #e0a81a;
}

.reservation-card:not(:last-child) {
  margin-bottom: 2rem;
}
.about {
    position: relative;
    background-image: url('../images/paintball-background.webp'); /* шляхи для Laravel */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 5rem 1rem;
    color: white;
}

.about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* затемнення */
    z-index: 0;
}

.about__inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    padding: 2rem;
}

.about__title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.about__text {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #e6e6e6;
}

.about__btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: bold;
    background-color: transparent;
    color: white;
    border: 2px solid #f5b623;
    border-radius: 4px;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.about__btn::after {
    content: '❯';
    background-color: #f5b623;
    color: black;
    padding: 0.5rem 0.75rem;
    margin-left: 1rem;
    display: inline-block;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.about__btn:hover {
    background-color: #f5b623;
    color: #000;
}

.company-info {
    background-color: #444;
    color: #fff;
    padding: 3rem 1rem;
}

.company-info__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.company-info__text {
    flex: 1 1 40%;
}

.company-info__title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.company-info__description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #dcdcdc;
}

.company-info__button {
    display: inline-flex;
    align-items: center;
    background-color: #f5b623;
    color: #000;
    font-weight: bold;
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.company-info__button i {
    margin-right: 0.75rem;
}

.company-info__contacts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.company-info__contacts li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.company-info__contacts i {
    color: #f5b623;
    font-size: 1.2rem;
}

.company-info__map {
    flex: 1 1 55%;
    min-width: 300px;
}

.company-info__map iframe {
    width: 100%;
    height: 250px;
    border: none;
    border-radius: 4px;
}

/* Footer copyright */
.company-info__copy {
  background-color: #333;       /* темніший фон під копірайт */
  padding: 1rem 0;              /* вертикальні відступи */
  text-align: center;           /* центрований текст */
}

.company-info__copy .copy__text {
  color: #aaa;                  /* світло-сірий колір тексту */
  font-size: 0.875rem;          /* трохи менший шрифт */
  margin: 0;                    /* прибрати зайві відступи */
}





/* контейнер всієї секції */
.features-section {
  background-color: #243e48;
  color: #ffffff;
  padding: 4rem 0;
  background: url('/images/fon-icon.webp') center/cover no-repeat;
  /* якщо малюнок не тягнеться автоматично на всю ширину: */
  background-size: cover;
  position: relative;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-color: rgba(0,0,0,0.6); /* чорний з 60% непрозорості */
  pointer-events: none;           /* щоб не блокувати кліки на контенті */
  z-index: 1;
}


/* внутрішній флекс-контейнер */
.features-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

/* кожна “картка” переваги */
.feature-card {
  flex: 1;
  text-align: center;
}

/* іконка в квадраті */
.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  border: 2px solid #f5b623;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: rgba(0,0,0,0.2);
}



/* сама галочка всередині */
.feature-icon i {
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1;
}

/* заголовок переваги */
.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* опис переваги */
.feature-desc {
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.85;
}