@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Aboreto&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap");
.nav-header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
  position: relative;
  width: 100%;
  padding: 16px 30px 0;
  box-shadow: 0 0 12px 4px rgba(132, 132, 132, 0.4);
}
.nav-header .logo {
  background-image: url(/uploads/photos/logo/logo-black.png);
  width: 240px;
  height: 92px;
  background-repeat: no-repeat;
  background-size: contain;
}
.nav-header .logo a {
  display: block;
  width: 100%;
  height: 100%;
}
.nav-header .nav {
  display: flex;
  gap: 40px;
}
.nav-header .nav__link {
  font-family: "Aboreto", serif;
  font-size: 16px;
  position: relative;
  list-style: none;
  padding: 20px;
  min-width: fit-content;
}
.nav-header .nav__link::after {
  content: "";
  position: absolute;
  bottom: 16px;
  left: 0;
  width: 0;
  height: 1px;
  background: #34495e;
  transition: width 0.3s ease;
}
.nav-header .nav__link:hover::after, .nav-header .nav__link.active::after {
  width: 100%;
}
.nav-header .nav__link a {
  text-decoration: none;
  color: #3e3c46;
}

.nav-header.front {
  box-shadow: none;
  position: absolute;
}
.nav-header.front .logo {
  background-image: url(/uploads/photos/logo/logo-white.png);
}
.nav-header.front .nav__link a {
  color: #ffffff;
}
.nav-header.front .nav__link::after {
  background: #ffffff;
}
.nav-header.front .mobile-menu-toggle {
  color: white;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #34495e;
  z-index: 1001;
  position: relative;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block !important;
  }
  .nav-desktop {
    display: none;
  }
  .nav-mobile-hidden {
    display: none;
  }
  .nav-header .logo {
    width: 200px;
    height: 100px;
  }
  .nav-header.is-open {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    background-color: rgb(122, 122, 122);
    height: 100vh;
  }
  .nav-header.is-open .mobile-menu-toggle {
    color: white;
  }
  .nav-header.is-open .logo {
    background-image: url(/uploads/photos/logo/logo-white.png);
  }
  .nav-header.is-open .nav {
    flex-direction: column;
    gap: 6px;
  }
  .nav-header.is-open .nav__link a {
    color: white;
    font-size: 24px;
  }
  .nav-header.is-open .nav-mobile-hidden {
    display: block;
  }
}
/* Стили для dropdown меню */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropdown-toggle i {
  font-size: 12px;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 146px;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

.dropdown-content a {
  display: block;
  padding: 12px 20px;
  text-decoration: none;
  transition: background-color var(--transition-base);
  font-size: 16px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.35);
  margin-bottom: 14px;
  background-color: rgba(251, 253, 255, 0.5607843137);
}

.dropdown-content a:hover {
  background-color: rgb(217, 217, 217);
  color: #3e3c46 !important;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

/* Мобильные стили для dropdown */
@media (max-width: 768px) {
  .dropdown-content {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background-color: transparent;
    padding: 0;
    margin-top: 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
  }
  .dropdown-content.show {
    max-height: fit-content;
  }
  .nav-header.is-open .dropdown-content a {
    color: var(--text-white) !important;
    padding: 10px 20px;
    font-size: 18px;
    border-left: 2px solid transparent;
    transition: all var(--transition-base);
  }
  .nav-header.is-open .dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-left-color: var(--text-white);
  }
  .dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}
.footer {
  box-shadow: 0 0 12px 4px rgba(132, 132, 132, 0.4);
}
.footer .nav-footer {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
  position: relative;
  padding-top: 30px;
}
.footer .nav-footer .logo-footer {
  width: 150px;
}
.footer .nav-footer .nav {
  display: flex;
  gap: 40px;
}
.footer .nav-footer .nav__link {
  font-family: "Aboreto", serif;
  font-size: 16px;
  position: relative;
  list-style: none;
  padding: 20px;
}
.footer .nav-footer .nav__link a {
  text-decoration: none;
  color: #3e3c46;
}

.footer__social {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: row;
  width: 50%;
  margin: 0 auto;
  padding: 12px 20px;
}
.footer__social-link {
  color: #34495e;
  font-size: 21px;
  opacity: 0.6;
}
.footer__social-link:hover {
  opacity: 1;
}

.footer__copyright {
  text-align: center;
  padding: 20px;
}

@media (max-width: 768px) {
  .footer .nav-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .footer .nav-footer .nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: unset;
  }
}
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  background-repeat: no-repeat;
  text-align: center;
  position: relative;
  z-index: -1;
}
.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.hero__title {
  font-size: 64px;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.about-intro {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 30px 50px;
}
@media (max-width: 768px) {
  .about-intro {
    padding: 40px 30px;
  }
}
.about-intro__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 30px;
  padding-bottom: 30px;
}
.about-intro__text {
  text-align: right;
}
.about-intro__text h2 {
  font-style: italic;
  font-size: 32px;
  font-weight: 600;
  color: #3e3c46;
  text-align: center;
  margin-bottom: 30px;
}
.about-intro__text .description {
  font-size: 16px;
  line-height: 1.6;
  color: #3e3c46;
  margin: 10px 0 10px;
  text-align: left;
}
.about-intro__image img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
}
.about-intro .button-main.centered {
  display: block;
  margin: 0 auto;
  width: fit-content;
}

.portfolio {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 30px 50px;
}
@media (max-width: 768px) {
  .portfolio {
    padding: 40px 30px;
  }
}
.portfolio h2 {
  font-size: 36px;
  font-weight: 600;
  color: #3e3c46;
  text-align: center;
  margin-bottom: 30px;
}
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 1024px) {
  .portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .portfolio__grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 1fr);
  }
}
.portfolio__item {
  min-height: 300px;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  position: relative;
  cursor: pointer;
}
.portfolio__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.portfolio__item:hover::before {
  opacity: 1;
}
.portfolio__item:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}
.portfolio__item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.portfolio__item-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
}
.portfolio__item-content:hover {
  opacity: 1;
}
.portfolio__item-title {
  display: inline-block;
  padding: 12px 30px;
  border: none;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Crimson Text", serif;
  text-transform: uppercase;
  font-size: 36px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  margin-bottom: 30px;
  backdrop-filter: blur(3px);
  box-shadow: 0 0 12px 4px rgba(255, 255, 255, 0.4);
  padding: 14px;
  width: 80%;
  margin: 0 auto 30px;
}
.portfolio__item-title:hover {
  transform: translateY(-2px);
}
.portfolio__item-description {
  margin: 0 0 20px !important;
  font-size: 24px;
  line-height: 1.6;
  color: #ffffff;
  margin: 10px 0 10px;
  width: 80%;
  height: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .about-intro__wrapper {
    flex-direction: column;
  }
  .hero__title {
    font-size: 40px;
  }
  .portfolio h2 {
    font-size: 32px;
  }
  .portfolio__item-title {
    font-size: 22px;
  }
  .portfolio__item-description {
    font-size: 20px;
  }
}
.about-story {
  background-color: #ECE3DA;
}
.about-story__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 30px 50px;
}
@media (max-width: 768px) {
  .about-story__wrapper {
    padding: 40px 30px;
  }
}
.about-story__wrapper .image-block {
  max-width: 500px;
  height: auto;
  padding: 20px;
  width: 50%;
}
.about-story__wrapper .image-block img {
  width: 100%;
  aspect-ratio: 5/7;
  object-fit: cover;
  object-position: bottom;
}
.about-story__wrapper .content-block {
  background-color: white;
  padding: 40px;
  width: 50%;
}
.about-story__wrapper .content-block h2 {
  font-size: 32px;
  font-weight: 600;
  color: #3e3c46;
  text-align: center;
  margin-bottom: 30px;
}
.about-story__wrapper .content-block p {
  font-size: 18px;
  line-height: 1.6;
  color: #3e3c46;
  margin: 10px 0 10px;
}

.about-contact {
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: center;
  background-position-y: 30%;
  position: relative;
  width: 100%;
  aspect-ratio: 12/4;
  overflow: hidden;
  margin-bottom: 40px;
}
.about-contact__button {
  max-width: 860px;
  margin: 18% auto;
  padding-left: 30px;
}

.instagram {
  background-color: #ece3da;
  padding: 50px 30px 50px;
}
@media (max-width: 768px) {
  .instagram {
    padding: 40px 30px;
  }
}
.instagram__title {
  font-size: 21px;
  font-weight: 600;
  color: #3e3c46;
  text-align: center;
  margin-bottom: 30px;
}
.instagram .flex-button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.instagram__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}
.instagram__grid .grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.instagram__button {
  position: absolute;
  display: inline-block;
  padding: 12px 30px;
  border: none;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Crimson Text", serif;
  text-transform: uppercase;
  font-size: 36px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  margin-bottom: 30px;
  backdrop-filter: blur(3px);
  box-shadow: 0 0 12px 4px rgba(255, 255, 255, 0.4);
  padding: 14px;
  font-size: 21px;
  padding: 4px 14px;
  background-color: rgba(54, 54, 54, 0.1607843137);
}
.instagram__button:hover {
  transform: translateY(-2px);
}

.instagram.black {
  background-color: #1B1B1B;
}
.instagram.black .white {
  color: #fff;
}

@media (max-width: 768px) {
  .about-story__wrapper {
    flex-direction: column;
  }
  .about-story__wrapper .content-block {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .instagram__grid {
    gap: unset;
  }
  .instagram__button {
    position: relative;
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .about-story__wrapper .image-block {
    width: 100%;
  }
  .about-contact__button .button-main {
    padding: 4px;
    font-size: 14px;
  }
}
.contact-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 80vh;
}

.contact-info {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 30px 50px;
}
@media (max-width: 768px) {
  .contact-info {
    padding: 40px 30px;
  }
}
.contact-info__title {
  font-size: 36px;
  font-weight: 600;
  color: #3e3c46;
  text-align: center;
  margin-bottom: 30px;
}
.contact-info__content {
  font-size: 18px;
  line-height: 1.6;
  color: #3e3c46;
  margin: 10px 0 10px;
  text-align: center;
}

.contact-form {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 30px 50px;
}
@media (max-width: 768px) {
  .contact-form {
    padding: 40px 30px;
  }
}
.contact-form__title {
  font-size: 21px;
  font-weight: 600;
  color: #3e3c46;
  text-align: center;
  margin-bottom: 30px;
}
.contact-form .container {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 40px 0;
  width: 60%;
  justify-content: center;
}
.contact-form .form-group {
  margin-bottom: 1.5rem;
}
.contact-form .form-group .form-label {
  font-size: 20px;
  line-height: 1.6;
  color: #3e3c46;
  margin: 10px 0 10px;
}
.contact-form .form-group .form-input,
.contact-form .form-group .form-select,
.contact-form .form-group .form-textarea {
  padding: 6px;
  font-size: 16px;
  line-height: 1.6;
  color: #3e3c46;
  margin: 10px 0 10px;
  width: 100%;
}

@media (max-width: 480px) {
  .contact-form .container {
    width: 100%;
  }
}
.button-main {
  display: inline-block;
  padding: 12px 30px;
  border: none;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Crimson Text", serif;
  text-transform: uppercase;
  background: transparent;
  color: #3e3c46;
  border: 1px solid #3e3c46;
}
.button-main:hover {
  transform: scale(1.05);
}

.gallery-hero {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  width: 100%;
  aspect-ratio: 12/6;
  overflow: hidden;
  margin-bottom: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-hero__title {
  position: absolute;
  font-size: 48px;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  margin-bottom: 30px;
  bottom: 0;
  padding-left: 40px;
  font-family: "Aboreto", serif;
  text-transform: uppercase;
  margin-bottom: 0;
}

.gallery {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 30px 50px;
}
@media (max-width: 768px) {
  .gallery {
    padding: 40px 30px;
  }
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 1024px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 1fr);
  }
}
.gallery__grid .grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 768px) {
  .gallery-hero__title {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .gallery-hero__title {
    font-size: 28px;
  }
}
.login-form {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 40px 0;
  width: 36%;
  justify-content: center;
}
.login-form h1 {
  font-size: 36px;
  font-weight: 600;
  color: #3e3c46;
  text-align: center;
  margin-bottom: 30px;
  font-family: "Aboreto", serif;
  font-weight: 400;
}
.login-form label {
  font-size: 20px;
  line-height: 1.6;
  color: #3e3c46;
  margin: 10px 0 10px;
}
.login-form input {
  padding: 10px;
  margin: 0 0 40px !important;
  font-size: 16px;
  line-height: 1.6;
  color: #3e3c46;
  margin: 10px 0 10px;
}
.login-form button {
  width: fit-content;
}

@media (max-width: 480px) {
  .login-form {
    width: 50%;
  }
}
.client-hero {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  width: 100%;
  height: 78vh;
  aspect-ratio: 12/6;
  overflow: hidden;
  margin: 20px auto;
}
.client-hero__cover {
  backdrop-filter: blur(6px);
  box-shadow: 0 0 12px 4px rgba(255, 255, 255, 0.4);
  bottom: 0;
  width: 100%;
  position: absolute;
  margin-bottom: 30px;
}
.client-hero__cover h1 {
  font-size: 38px;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
  margin-bottom: 0;
}
.client-hero__cover p {
  font-size: 18px;
  line-height: 1.6;
  color: #ffffff;
  margin: 10px 0 10px;
  font-weight: 400;
  padding-left: 40px;
}

.gallery form {
  margin-bottom: 30px;
  text-align: center;
}
.gallery .flex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}
.gallery .flex__item {
  position: relative;
  margin-bottom: 20px;
  width: 350px;
  height: 350px;
}
.gallery .flex__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.gallery .flex__item input {
  position: absolute;
  bottom: 16px;
  right: 16px;
}

.no-photos {
  height: 60vh;
  font-size: 32px;
  padding: 40px;
}

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

body {
  font-family: "Crimson Text", serif;
  font-size: 16px;
  line-height: 1.6;
  color: #3e3c46;
  background: white;
  overflow-x: hidden;
}

h1.error {
  height: 100vh;
  width: 70%;
  margin: 50px auto 0;
}

/*# sourceMappingURL=app.css.map */
