@import "lib/carousel-VGCE1II.css";
nav {
  background-color: #060606;
  height: 100px;
  color: white;
  display: flex;
  justify-content: space-around;
}
nav a {
  display: flex;
  justify-content: cnter;
}
nav a img {
  height: 69px;
  width: 69px;
  align-self: center;
}
@media (max-width: 768px) {
  nav a.logo {
    display: none;
  }
}
nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}
nav ul li {
  margin: 0 15px;
  line-height: 100px;
  display: block;
  color: white;
  font-weight: bold;
  position: relative;
  text-decoration: none;
  height: 100%;
}
nav ul li a {
  color: white;
  text-decoration: none;
}
nav ul li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 65%;
  height: 2px;
  width: 0;
  background: white;
  transition: width 0.3s ease;
}
nav ul li:hover:after, nav ul li.link__active:after {
  width: 100%;
}

footer {
  height: 500px;
  background-color: #060606;
  color: white;
  position: relative;
}
footer a {
  text-decoration: none;
  color: white;
}
footer a .main {
  display: grid;
  place-items: center;
  justify-content: space-around;
  padding-top: 100px;
}
footer a .main h5.label {
  font-size: 64px;
  text-align: center;
}
footer a .main img {
  margin-top: 5px;
  height: 46px;
  width: 46px;
  align-self: center;
}
footer .bottom {
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: 5px;
  width: 100%;
  padding: 0 50px;
}
@media (max-width: 768px) {
  footer .bottom {
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
  }
}
footer .bottom .links ul {
  display: flex;
  list-style: none;
  padding: 0;
  gap: 20px;
}
footer .bottom .links ul li {
  margin: 10px 0;
}
footer .bottom .links ul li a {
  color: white;
  text-decoration: none;
}
footer .bottom .links ul li a:hover {
  text-decoration: underline;
}

img.photo--show {
  height: 500px;
  width: 300px;
}

.price__block {
  border: 1px solid #060606;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 560px;
  height: 560px;
  padding: 40px;
}
@media (max-width: 768px) {
  .price__block {
    width: 100%;
    height: auto;
    padding: 20px;
    gap: 20px;
  }
}
.price__block--title {
  font-size: 64px;
}
.price__block--price {
  font-size: 36px;
}
.price__block--content .description ul {
  list-style-type: disc;
  margin-left: 20px;
  text-align: left;
  font-size: 18px;
}
.price__block--action {
  margin-top: 10px;
}
.price__block--action a {
  border: 1px solid #060606;
  padding: 10px 30px;
  text-decoration: none;
  color: #060606;
}
.price__block--action a:hover {
  background-color: #060606;
  color: white;
  transition: all 1s;
}

.home__banner {
  width: 100%;
  height: 100%;
  perspective: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: black;
}
.home__banner img {
  width: 100%;
  transition: transform 0.1s ease-out;
}
@media (max-width: 768px) {
  .home__banner img {
    height: 50vh;
    width: auto;
  }
}
.home__quote {
  height: 75vh;
  background-color: #060606;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home__quote p {
  font-family: "Photograph Signature";
  font-size: 8em;
  text-align: center;
}
@media (max-width: 768px) {
  .home__quote p {
    font-size: 4em;
    padding: 0 10px;
  }
}
.home__images {
  background-color: #E8E8E8;
}
.home__images .wrapper {
  padding-block: 50px;
}
.home__images .wrapper .splide {
  width: 100%;
  margin: 0 auto;
  padding: 1rem;
}
.home__images .wrapper .splide__slide {
  display: flex;
  justify-content: center;
}
.home__images .wrapper .splide ul {
  list-style: none;
}
.home__whoami {
  background-color: #060606;
  display: flex;
  color: white;
}
@media (max-width: 768px) {
  .home__whoami {
    flex-direction: column;
    text-align: center;
  }
  .home__whoami .left,
  .home__whoami .right {
    width: 100% !important;
    padding: 20px 0;
  }
  .home__whoami .right {
    padding: 0 20px;
  }
  .home__whoami .right h4 {
    font-size: 48px;
  }
}
.home__whoami .left {
  width: 50%;
}
.home__whoami .left img {
  width: 100%;
  height: auto;
}
.home__whoami .right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 50px;
  width: 50%;
}
.home__whoami .right h4 {
  font-size: 94px;
}

.prices {
  background-color: #E8E8E8;
  color: #060606;
  text-align: center;
}
.prices h1 {
  font-size: 94px;
}
.prices .body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  justify-items: center;
  margin: auto;
  padding: 2rem;
}
@media (max-width: 768px) {
  .prices .body {
    grid-template-columns: 1fr;
  }
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  gap: 75px 0;
  margin-block: 30px;
}

.contact {
  background-color: #060606;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.contact h1 {
  font-size: 6rem;
  margin-bottom: 2rem;
}
.contact form {
  width: 50%;
  text-align: center;
}
@media (max-width: 768px) {
  .contact form {
    width: 90%;
  }
}
.contact form .form-group {
  display: flex;
  flex-direction: column;
}
.contact form .form-group label {
  font-family: "Photograph Signature";
  font-size: 4rem;
}
.contact form .form-group input,
.contact form .form-group textarea {
  font-size: 2rem;
  padding: 1rem;
  margin-top: 1rem;
  border: 1px solid white;
  border-radius: 0.5rem;
}
.contact form button {
  margin-top: 2rem;
  padding: 1rem 2rem;
  font-size: 2rem;
  background-color: #E8E8E8;
  color: #060606;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  width: 50%;
  height: 80px;
}
@media (max-width: 768px) {
  .contact form button {
    width: 100%;
  }
}
.contact form button:hover {
  background-color: #cfcfcf;
}

.album--page {
  text-align: center;
}
.album--page h1 {
  margin-bottom: 10px;
}
.album--photos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-items: center;
  gap: 75px 0;
  margin-block: 30px;
}
.album--photos .photo-row {
  display: flex;
  flex-direction: column;
}
.album--photos .photo-row button {
  margin-top: 10px;
}
.album--download-btn {
  text-decoration: none;
  border: 2px solid;
  border-radius: 5px;
  background-color: #060606;
  color: white;
  padding: 10px 20px;
  margin-top: 20px;
}

.page--code {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  height: 75vh;
  background-image: url("../images/banner-_4V-aAs.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.page--code::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.page--code .form {
  z-index: 2;
}
.page--code .form form input {
  background: transparent;
  width: 100%;
  color: #E8E8E8;
  border: #E8E8E8 2px solid;
  height: 25px;
}
.page--code .form form input:focus {
  box-shadow: none;
  outline: none;
}
.page--code .form form button {
  margin-top: 10px;
  background-color: transparent;
  color: white;
  border: none;
  padding: 15px 32px;
  font-size: 16px;
  cursor: pointer;
}
.page--code .form h1,
.page--code .form form {
  z-index: 1;
  color: #E8E8E8;
}
.page--code .form h1 {
  font-size: 48px;
}

.admin-login {
  background-color: #060606;
  min-height: 100vh;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.admin-login .form {
  border: 2px solid white;
  border-radius: 10px;
  height: 55vh;
  width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.admin-login .form .login-header {
  font-size: 1.5rem;
}
.admin-login .form form {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  gap: 40px;
}
.admin-login .form form .form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.admin-login .form form .form-group label {
  font-size: 1.2rem;
}
.admin-login .form form .form-group input {
  padding: 10px;
  border: 1px solid white;
  border-radius: 5px;
  font-size: 1rem;
}
.admin-login .form form button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: white;
  color: #060606;
  font-size: 1rem;
  cursor: pointer;
}
.admin-login .form form button:hover {
  background-color: #e6e6e6;
}

.album__form {
  width: 90%;
}
.album__form .form-group {
  margin-bottom: 1.5rem;
}
.album__form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.album__form .form-group input {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}
.album__form .form-group input:focus {
  border-color: #060606;
  outline: none;
  box-shadow: 0 0 5px rgba(6, 6, 6, 0.5);
}
.album__form .form-group select {
  width: 100%;
  height: 200px;
}
.album__form .form-group #preview-container {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.album__form .form-group #preview-container .dz-success-mark, .album__form .form-group #preview-container .dz-error-mark {
  display: none;
}
.album__form .form-submit {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #060606;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.album__form .form-submit:hover {
  background-color: black;
}

.album--page table {
  margin-top: 10px;
  width: 100%;
  border-collapse: collapse;
}
.album--page table th, .album--page table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}

.photos--page {
  text-align: center;
}
.photos--page .photo {
  display: flex;
  flex-direction: column;
}
.photos--page .photo img {
  height: 500px;
  width: 300px;
  object-fit: cover;
}
.photos--page .photo .actions {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.photos--page .photo .actions a, .photos--page .photo .actions button {
  min-width: 150px;
  border: 1px solid #060606;
  color: #060606;
  background-color: #E8E8E8;
  text-decoration: none;
}
.photos--page .photo .actions a:hover, .photos--page .photo .actions button:hover {
  cursor: pointer;
}

.dropzone {
  border: 2px dashed #6aa7ff;
  background: #f4f8ff;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s;
}
.dropzone:hover {
  background: #e7f1ff;
}
.dropzone .dz-preview {
  margin-top: 15px;
}
.dropzone .dz-remove {
  color: #d33;
  cursor: pointer;
  display: block;
  margin-top: 10px;
}

@font-face {
  font-family: "Photograph Signature";
  src: url("../fonts/Photograph-Signature-8eaK3mJ.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "FuturaPT", sans-serif;
  src: url("../fonts/futura-pt/FuturaCyrillicLight-dCO_q-i.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "FuturaPT", sans-serif;
  src: url("../fonts/futura-pt/FuturaCyrillicBook-RJXo5Bp.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "FuturaPT", sans-serif;
  src: url("../fonts/futura-pt/FuturaCyrillicBold-DvbmHOS.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "FuturaPT", sans-serif;
}

.content {
  min-height: 75vh;
}

.admin-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Photograph Signature";
}

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