:root {
  --primary-green: #008f39;
  --primary-yellow: #ffde00;
  --light-yellow: #fff5cc;
  --dark-green: #006b2b;
  --light-gray: #f8f8f8;
  --medium-gray: #e0e0e0;
  --dark-gray: #333333;
}


body {
  font-family: 'Roboto', sans-serif;
  background-color: #fceef3;
}

.cuColBe {
  fill: #FFFECE;
  stroke: #FFFECE;
  
}

svg {
  display: block;
  margin: 0;
  padding: 0;
  line-height: 0;
}
section {
  scroll-margin-top: 66px; 
}

.bgPink {
  background-color: #fceef3;
}
.bgYellow {
  background-color: #fff5cc;
}


#services {
  margin-top: -5px;
}




h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
}

.hero {
  background-image: url('../images/9.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 56px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.hero .content {
  position: relative;
  z-index: 1;
  color: white;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
}

.btn-primary:hover {
  background-color: var(--dark-green);
}

.navbar-brand img {
  height: 40px;
}

footer {
  background-color: var(--dark-green);
  color: white;
  padding: 40px 0;
}

footer a {
  color: white;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* устранение зазора между волной и секцией */

/* #gallery,
#about,
#booking,
#faq {
  margin-top: -10px;
} */


/* Скрыть navbar при прокрутке */
.navbar.hidden {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
}

/* Оставить только бургер */


.navbar.show-toggle .navbar-nav {
  display: none;
}

@media (max-width: 991.98px) {
  /* Скрытое состояние collapse */
  .collapse:not(.show) {
    display: block;
    height: 0;
    overflow: hidden;
    transition: height 1s ease;
  }

  /* Показанное состояние collapse */
  .collapse.show {
    height: auto;
    animation: slideDown 1s ease forwards;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10%);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
