.sr-only {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  margin: -1px;
}

.container {
  min-width: 320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 12px;
}
@media screen and (min-width: 480px) {
  .container {
    min-width: 480px;
    padding: 0 16px;
  }
}
@media screen and (min-width: 640px) {
  .container {
    width: 640px;
    padding: 0 24px;
  }
}
@media screen and (min-width: 768px) {
  .container {
    width: 768px;
    padding: 0 32px;
  }
}
@media screen and (min-width: 960px) {
  .container {
    width: 960px;
    padding: 0 36px;
  }
}
@media screen and (min-width: 1024px) {
  .container {
    width: 1024px;
    padding: 0 40px;
  }
}
@media screen and (min-width: 1440px) {
  .container {
    width: 1440px;
    padding: 0 50px;
  }
}

.section {
  scroll-margin-top: 55px;
  padding: 40px 0;
}
@media screen and (min-width: 768px) {
  .section {
    padding: 60px 0;
  }
}
@media screen and (min-width: 1440px) {
  .section {
    padding: 80px 0;
  }
}

.section-title {
  margin-bottom: 16px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  font-family: "Sofia Sans", sans-serif;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .section-title {
    font-size: 36px;
  }
}
@media screen and (min-width: 1440px) {
  .section-title {
    font-size: 48px;
  }
}

.section-text {
  margin-bottom: 24px;
  color: #4f3b31;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .section-text {
    font-size: 20px;
  }
}
@media screen and (min-width: 1440px) {
  .section-text {
    max-width: 1200px;
    margin: 0 auto 24px;
    font-size: 24px;
  }
}

h2,
h3 {
  color: #fa9595;
  font-family: "Sofia Sans", sans-serif;
  font-weight: 700;
  line-height: 1;
}

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

html,
body {
  height: 100%;
  color: #4f3b31;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.3;
}

ul,
ol,
li {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

button,
input,
textarea {
  font: inherit;
  border: none;
  background: none;
  outline: none;
  display: block;
  cursor: pointer;
}

table {
  border-collapse: collapse;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgb(208, 235, 255);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  z-index: 3;
}

.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 32px;
}
@media screen and (min-width: 768px) {
  .nav .container {
    padding: 0.5rem 3rem;
  }
}
@media screen and (min-width: 1024px) {
  .nav .container {
    padding: 1rem 3rem;
  }
}

.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 4;
}

.burger-icon {
  width: 25px;
  height: 3px;
  background-color: #fa9595;
  transition: 0.3s;
}

.burger-menu:hover .burger-icon {
  background-color: #f86464;
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}

.nav-menu li {
  font-size: 1.4rem;
}

.nav-menu a {
  text-decoration: none;
  color: #4f3b31;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #fa9595;
}

@media screen and (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    flex-direction: column;
    width: 200px;
    height: 100%;
    background: rgb(208, 235, 255);
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .nav-menu.active {
    transform: translateX(0);
  }
  .burger-menu {
    display: flex;
  }
  .burger-icon:nth-child(1) {
    transform-origin: top left;
  }
  .burger-icon:nth-child(2) {
    opacity: 1;
  }
  .burger-icon:nth-child(3) {
    transform-origin: bottom left;
  }
  .nav-menu li {
    margin: 1rem 0;
    text-align: center;
  }
  .burger-menu.active .burger-icon:nth-child(1) {
    transform: rotate(45deg);
  }
  .burger-menu.active .burger-icon:nth-child(2) {
    opacity: 0;
  }
  .burger-menu.active .burger-icon:nth-child(3) {
    transform: rotate(-45deg);
  }
}
.hero {
  position: relative;
  background: linear-gradient(270deg rgba(208, 235, 255, 0.922) 320px, #e7b6a8);
  background-color: #fff9f3;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: -30%;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
}

.hero-content {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(rgb(208, 235, 255), rgba(208, 235, 255, 0.866) 30%, rgba(231, 182, 168, 0.0588235294)), url("../assets/images/hero/hero-image.jpg") no-repeat center center/cover;
  overflow: hidden;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .hero-content {
    background: linear-gradient(135deg, rgb(208, 235, 255), rgb(208, 235, 255) 20%, rgba(231, 182, 168, 0.2901960784)), url("../assets/images/hero/hero-image.jpg") no-repeat center center/cover;
  }
}
@media screen and (min-width: 1024px) {
  .hero-content {
    background: linear-gradient(135deg, rgb(208, 235, 255), rgb(208, 235, 255) 20%, rgba(231, 182, 168, 0.2901960784)), url("../assets/images/hero/hero-image.jpg") no-repeat center center/cover;
  }
}

.hero-content .container {
  min-width: 320px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1440px) {
  .hero-content .container {
    max-width: 1440px;
    padding: 0 50px;
  }
}

.hero-title {
  position: relative;
  padding-top: 100px;
  margin-bottom: 48px;
  color: #de8384;
  text-shadow: 2px 2px 4px rgba(184, 135, 212, 0.2), 6px 6px 12px rgba(184, 135, 212, 0.6);
  font-family: "Comfortaa", cursive;
  line-height: 100%;
  font-size: 36px;
  font-weight: 900;
  text-align: center;
}
@media screen and (min-width: 480px) {
  .hero-title {
    font-size: 48px;
  }
}
@media screen and (min-width: 768px) {
  .hero-title {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    font-size: 76px;
  }
}
@media screen and (min-width: 1440px) {
  .hero-title {
    font-size: 96px;
  }
}

.hero-text {
  position: relative;
  display: block;
  padding: 20px;
  margin-bottom: 125px;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #4f3b31;
  text-shadow: 2px 2px 4px rgba(184, 135, 212, 0.2), 6px 6px 12px rgba(184, 135, 212, 0.6);
}
@media screen and (min-width: 480px) {
  .hero-text {
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) {
  .hero-text {
    text-align: left;
  }
}
@media screen and (min-width: 1440px) {
  .hero-text {
    margin-bottom: 125px;
    font-size: 24px;
  }
}

.hero-button {
  position: relative;
  padding: 14px 36px;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #fbc2eb 0%, #a6c1ee 100%);
  border: 3px solid #ffffff;
  border-radius: 32px;
  text-decoration: none;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(184, 135, 212, 0.2), 6px 6px 12px rgba(184, 135, 212, 0.8);
  cursor: pointer;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  box-shadow: 0px 4px 8px rgba(184, 135, 212, 0.6);
  transition: all 0.3s ease;
}
.hero-button:hover, .hero-button:focus {
  background: linear-gradient(135deg, #c8e7ff 0%, #ffd6e8 100%);
  box-shadow: 0 10px 24px rgba(255, 182, 193, 0.6) inset, 0 8px 16px rgba(255, 182, 193, 0.88);
  transform: translateY(-4px);
}
.hero-button:active {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 182, 193, 0.5);
}
@media screen and (min-width: 768px) {
  .hero-button {
    margin-right: auto;
    margin-left: 0;
    font-size: 24px;
  }
}
@media screen and (min-width: 1440px) {
  .hero-button {
    font-size: 28px;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(150px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-title,
.hero-text,
.hero-button {
  opacity: 0;
  animation: fadeInUp 1.2s ease-out forwards;
}

.hero-title {
  animation-delay: 0.3s;
}

.hero-text {
  animation-delay: 0.6s;
}

.hero-button {
  animation-delay: 0.9s;
}

.parallax-title-wrapper,
.parallax-text-wrapper {
  transition: transform 0.3s ease-out;
  will-change: transform;
}

.about {
  background-color: #FEF9F0;
}
.about .about-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 960px) {
  .about .about-info {
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 36px;
    text-align: left !important;
  }
}
.about .about-image {
  margin: 0 auto;
  border-radius: 48px;
}
@media screen and (min-width: 768px) {
  .about .about-image {
    width: 70%;
    height: auto;
  }
}
@media screen and (min-width: 960px) {
  .about .about-image {
    width: 40%;
    height: auto;
  }
}

.gallery {
  background: linear-gradient(to bottom, rgba(254, 249, 240, 0.9), rgba(208, 235, 255, 0.5));
}

.gallery .container {
  padding: 0 20px;
}

.gallery.big-gallery {
  margin-top: 40px;
  background: #fff9f3;
}

.mygallery {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  width: 80%;
  margin: 32px auto;
}
@media (min-width: 480px) {
  .mygallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
}
@media (min-width: 768px) {
  .mygallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 960px) {
  .mygallery {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1440px) {
  .mygallery {
    grid-template-columns: repeat(6, 1fr);
  }
}
.mygallery a {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}
.mygallery a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.mygallery a:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.mygallery a:hover img {
  transform: scale(1.05);
}

.little-gallery {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  width: 80%;
  margin: 32px auto;
}
@media (min-width: 480px) {
  .little-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
}
@media (min-width: 768px) {
  .little-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 960px) {
  .little-gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1440px) {
  .little-gallery {
    grid-template-columns: repeat(6, 1fr);
  }
}
.little-gallery a {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}
.little-gallery a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.little-gallery a:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.little-gallery a:hover img {
  transform: scale(1.05);
}
@media (min-width: 960px) {
  .little-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-button-wrapper {
  text-align: center;
  margin: 40px auto;
}

.gallery-button {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 480px;
  padding: 14px 32px;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(184, 135, 212, 0.2), 6px 6px 12px rgba(184, 135, 212, 0.8);
  background: linear-gradient(135deg, #fbc2eb 0%, #a6c1ee 100%);
  border-radius: 30px;
  border: 3px solid #fff;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(255, 182, 193, 0.4);
  transition: all 0.3s ease;
}
.gallery-button:hover {
  background: linear-gradient(135deg, #a6c1ee 0%, #fbc2eb 100%);
  box-shadow: 0 12px 24px rgba(255, 182, 193, 0.6) inset, 0 8px 16px rgba(255, 182, 193, 0.88);
  transform: translateY(-3px);
}
@media screen and (min-width: 480px) {
  .gallery-button {
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) {
  .gallery-button {
    font-size: 24px;
  }
}
@media screen and (min-width: 1440px) {
  .gallery-button {
    font-size: 28px;
  }
}

.filters {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  margin-bottom: 20px;
}
.filters .filter-button {
  background: none;
  border: 2px solid #a6c1ee;
  color: #a6c1ee;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filters .filter-button.active, .filters .filter-button:hover {
  background: linear-gradient(135deg, #fbc2eb 0%, #a6c1ee 100%);
  color: #fff;
}

.contacts {
  background-color: #fff9f3;
  padding: 60px 20px;
  text-align: center;
}
.contacts .social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.contacts .social-links .social-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #fbc2eb 0%, #a6c1ee 100%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contacts .social-links .social-icon span {
  font-size: 2rem;
  color: #ffffff;
  fill: #ffffff;
}
.contacts .social-links .social-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .contacts .social-links {
    gap: 20px;
  }
}

.footer {
  background-color: #fff9f3;
  color: #fa9595;
  padding: 20px 0;
  height: 55px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  text-align: center;
}

.copyright {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}/*# sourceMappingURL=main.css.map */