@charset "UTF-8";
@font-face {
  font-family: "SpaceMono-Regular";
  src: url("/wp-content/themes/motaphoto/assets/fonts/SpaceMono-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Salon du Chocolat";
  src: url("/wp-content/themes/motaphoto/assets/fonts/Salon%20du%20Chocolat.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
.page-title {
  justify-self: center;
  margin-top: 6rem;
}

.page-content {
  justify-self: center;
  width: 80%;
  padding-bottom: 5rem;
  padding-top: 5rem;
}

body {
  font-family: "SpaceMono-Regular";
  margin: 0;
  height: 100%;
  min-height: 100vh;
}

.burger-button {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.burger-button span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #000;
  border-radius: 2px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: white;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
  transition: right 0.4s ease;
  z-index: 2000;
  display: flex;
  flex-direction: column;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #ccc;
}

.close-button {
  font-size: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-burger-content {
  background-color: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  gap: 50px;
}
.menu-burger-content li {
  list-style: none;
}
.menu-burger-content li a {
  text-decoration: none;
  font-size: 44px;
  color: rgb(0, 0, 0);
  font-weight: 400;
  transition: font-size 1s ease, opacity 1s ease;
}
.menu-burger-content li a:hover {
  opacity: 50%;
  font-size: 55px;
}

.mobile-add-photo {
  text-decoration: none;
  font-size: 44px;
  color: rgb(0, 0, 0);
  font-weight: 400;
  transition: font-size 1s ease, opacity 1s ease;
  display: block;
  text-align: center;
}

.mobile-add-photo:hover {
  opacity: 50%;
  font-size: 55px;
}

.mobile-nav-list {
  padding: 0;
  list-style: none;
}

.page {
  min-height: 70vh;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-title {
  font-family: "Salon du Chocolat", "SpaceMono-Regular", serif;
  font-size: 8vw;
  font-style: italic;
  font-weight: 400;
  text-align: center;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  flex-wrap: wrap;
  display: flex;
  max-width: 90vw;
  background: rgba(0, 0, 0, 0.5);
  padding: 30px 40px;
  border-radius: 10px;
}

.hero-title-h2 {
  font-family: "SpaceMono-Regular", serif;
  font-size: 3vw;
  font-weight: 400;
  text-align: center;
  color: #333;
  margin-left: 5%;
  margin-right: 5%;
  line-height: 1.6;
}

.filters {
  margin: 40px;
  text-align: center;
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 2rem;
  margin-bottom: 10px;
  gap: 20px;
}
.filters .select {
  padding: 10px 15px;
  border: 1px solid rgb(184, 187, 194);
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  border-radius: 8px;
  width: 260px;
  background-color: white;
}
.filters .photo-filters,
.filters .date-filter {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
}
.filters .btn-add-photo-filters {
  padding: 10px 15px;
  border: 1px solid rgb(184, 187, 194);
  font-family: "SpaceMono-Regular";
  font-size: 12px;
  text-transform: uppercase;
  border-radius: 8px;
  width: 260px;
  background-color: #849CAF;
  text-decoration: none;
  color: rgb(255, 255, 255);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}
.filters .btn-add-photo-filters:hover {
  background-color: #6a7d8f;
  opacity: 0.9;
}

.photo-list {
  margin: 40px auto;
  flex-direction: row;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.photo-list .container-photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin: 40px 2%;
}
.photo-list .container-photos .photo-block {
  width: 100%;
  grid-column: span 1;
  height: 280px;
}
.photo-list .container-photos .photo-block .container-photo-block {
  height: 280px;
}
.photo-list .container-photos .photo-block img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.load-more-container {
  text-align: center;
  margin: 30px 0;
}

.btn {
  width: 272px;
  font-family: "SpaceMono-Regular";
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: #d8d8d8;
  color: #111;
  transition: transform 1s, box-shadow 1s, opacity 1s ease;
}

#load-more:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.5);
  opacity: 0.7;
}

.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown .dropdown-toggle {
  padding: 0px 12px;
  border: 1px solid #ccc;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-left: 8%;
  padding-right: 8%;
  align-items: center;
}
.dropdown .dropdown-toggle .arrow-up {
  display: none;
  font-size: 25px;
  transition: opacity 1s ease;
}
.dropdown .dropdown-toggle .arrow-down {
  display: flex;
  font-size: 25px;
}
.dropdown .dropdown-content {
  position: absolute;
  left: 0;
  top: 100%;
  background: white;
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 2s ease;
  z-index: 10;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.dropdown .dropdown-content li {
  padding: 8px 12px;
  cursor: pointer;
  justify-content: flex-start;
  display: flex;
  padding-left: 55px;
  font-family: "poppins";
  font-weight: 500;
  font-size: 12px;
  min-height: 12px;
  text-transform: uppercase;
  position: relative;
}
.dropdown .dropdown-content li::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid #ccc;
  border-radius: 3px;
  margin-right: 25px;
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
}
.dropdown .dropdown-content .active {
  background-color: #BBB0CB;
  color: #ffffff;
}
.dropdown .dropdown-content .active::before {
  border-color: #ffffff;
  background-color: #ffffff;
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  color: #BBB0CB;
  font-size: 12px;
  font-weight: bold;
}
.dropdown .show {
  max-height: 300px;
  opacity: 1;
  width: 100%;
}
.dropdown .closing {
  max-height: 0;
  opacity: 0;
}

.dropdown-content li:hover {
  background: #E4E0F7;
}

.site-header {
  height: max-content;
  align-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}
.site-header .site-nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.site-header .site-nav .title-site {
  position: relative;
  left: 30%;
  max-width: 216px;
}
.site-header .site-nav .btn-container {
  display: flex;
  align-items: center;
  position: relative;
  gap: 70px;
  right: 5%;
}
.site-header .site-nav .btn-container .menu-item {
  display: inline-block;
}
.site-header .site-nav .btn-container .menu-item:not(:first-child) {
  display: none;
}
.site-header .site-nav .btn-container .menu-item a {
  background-color: transparent;
  border: none;
  font-weight: 400;
  font-size: 28px;
  font-family: "SpaceMono-Regular";
  text-decoration: none;
  color: rgb(0, 0, 0);
  padding: 0;
}
.site-header .site-nav .btn-container .menu-item a:hover {
  opacity: 50%;
}
.site-header .site-nav .btn-container .btn-add-photo {
  background-color: transparent;
  border: none;
  font-weight: 400;
  font-size: 28px;
  font-family: "SpaceMono-Regular";
  text-decoration: none;
  color: rgb(0, 0, 0);
  padding: 0;
}
.site-header .site-nav .btn-container .btn-add-photo:hover {
  opacity: 50%;
}

.site-footer {
  height: 40px;
  align-content: center;
  border-top: solid black 2px;
}
.site-footer .footer-container {
  display: flex;
  flex-direction: row;
  gap: 100px;
  position: relative;
  justify-content: center;
}
.site-footer .footer-container .btn-footer {
  background-color: transparent;
  border: none;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  font-family: "SpaceMono-Regular";
  text-decoration: auto;
  color: #000000;
}
.site-footer .footer-container .btn-footer:hover {
  opacity: 50%;
}

.upload-photo-container {
  display: flex;
  justify-content: center;
  padding: 4rem 2rem;
  background-color: #f9f9f9;
  min-height: 80vh;
}
.upload-photo-container .upload-photo-wrapper {
  background: white;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 100%;
}
.upload-photo-container .upload-photo-wrapper h1 {
  font-family: "Salon du Chocolat";
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #000;
}
.upload-photo-container .upload-photo-wrapper .photo-upload-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.upload-photo-container .upload-photo-wrapper .photo-upload-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.upload-photo-container .upload-photo-wrapper .photo-upload-form .form-group label {
  font-weight: 500;
  color: #333;
  font-size: 1rem;
}
.upload-photo-container .upload-photo-wrapper .photo-upload-form .form-group input[type=text],
.upload-photo-container .upload-photo-wrapper .photo-upload-form .form-group input[type=file],
.upload-photo-container .upload-photo-wrapper .photo-upload-form .form-group textarea,
.upload-photo-container .upload-photo-wrapper .photo-upload-form .form-group select {
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: "SpaceMono-Regular";
  font-size: 1rem;
  transition: border-color 0.3s;
}
.upload-photo-container .upload-photo-wrapper .photo-upload-form .form-group input[type=text]:focus,
.upload-photo-container .upload-photo-wrapper .photo-upload-form .form-group input[type=file]:focus,
.upload-photo-container .upload-photo-wrapper .photo-upload-form .form-group textarea:focus,
.upload-photo-container .upload-photo-wrapper .photo-upload-form .form-group select:focus {
  outline: none;
  border-color: #000;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.upload-photo-container .upload-photo-wrapper .photo-upload-form .form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.upload-photo-container .upload-photo-wrapper .photo-upload-form .form-group small {
  color: #999;
  font-size: 0.875rem;
}
.upload-photo-container .upload-photo-wrapper .photo-upload-form .btn-submit {
  padding: 1rem;
  background-color: #000;
  color: white;
  border: none;
  border-radius: 4px;
  font-family: "Salon du Chocolat";
  font-size: 1.2rem;
  cursor: pointer;
  transition: opacity 0.3s;
}
.upload-photo-container .upload-photo-wrapper .photo-upload-form .btn-submit:hover {
  opacity: 0.8;
}
.upload-photo-container .upload-photo-wrapper .upload-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 4px;
  text-align: center;
  display: none;
}
.upload-photo-container .upload-photo-wrapper .upload-message.success {
  display: block;
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.upload-photo-container .upload-photo-wrapper .upload-message.error {
  display: block;
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.upload-photo-container .upload-photo-wrapper .upload-message.warning {
  display: block;
  background-color: #fff3cd;
  color: #856404;
  border: 1px solid #ffeaa7;
}
.upload-photo-container .upload-photo-wrapper .preview-container {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background-color: #f5f5f5;
  border-radius: 8px;
}
.upload-photo-container .upload-photo-wrapper .preview-container .preview-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.upload-photo-container .upload-photo-wrapper .preview-container .preview-item .preview-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  background-color: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.upload-photo-container .upload-photo-wrapper .preview-container .preview-item .preview-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.upload-photo-container .upload-photo-wrapper .preview-container .preview-item .preview-image-wrapper .preview-index {
  position: absolute;
  top: 5px;
  right: 5px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: bold;
}
.upload-photo-container .upload-photo-wrapper .preview-container .preview-item .preview-filename {
  font-size: 0.875rem;
  color: #666;
  text-align: center;
  word-break: break-word;
  white-space: normal;
  max-width: 100%;
  margin: 0;
}

.preview-badge-video {
  position: absolute;
  top: 5px;
  left: 5px;
  background-color: rgba(231, 76, 60, 0.9);
  color: white;
  padding: 4px 8px;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
}

.preview-image-wrapper .preview-index {
  position: absolute;
  top: 5px;
  right: 5px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: bold;
  z-index: 2;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.modal .modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}
.modal .modal__content {
  background: #fff;
  border: solid black 4px;
  z-index: 1001;
  max-width: 75vw;
}
.modal .modal__content .modal__title {
  position: relative;
  top: 15px;
  padding-bottom: 50px;
  width: 100%;
}
.modal .modal__content .wpcf7 {
  display: flex;
  justify-content: center;
  font-family: "Poppins";
  width: 80%;
  justify-self: center;
}
.modal .modal__content .wpcf7 .wpcf7-form {
  display: flex;
  width: 65%;
  flex-direction: column;
}
.modal .modal__content .wpcf7 .wpcf7-form label {
  width: 100%;
  display: block;
}
.modal .modal__content .wpcf7 .wpcf7-form label span {
  width: 100%;
  display: block;
}
.modal .modal__content .wpcf7 input {
  padding-left: 3%;
  min-height: 40px;
  border-radius: 8px;
  border: 1px solid rgb(184, 187, 194);
  text-transform: uppercase;
  width: 96%;
}
.modal .modal__content .wpcf7 textarea {
  padding-left: 10px;
  padding-top: 10px;
}
.modal .modal__content .wpcf7 .wpcf7-textarea {
  border-radius: 8px;
  border: 1px solid rgb(184, 187, 194);
  resize: none;
  width: 96%;
}
.modal .modal__content .wpcf7 .wpcf7-submit {
  width: 100%;
  background-color: rgb(216, 216, 216);
  font-family: "SpaceMono-Regular";
  border: none;
  border-radius: 0;
  height: 70px;
}

.container-content {
  padding-left: 5%;
  padding-right: 5%;
}
.container-content .container-photos-infos {
  display: flex;
  position: relative;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  margin-top: 35px;
}
.container-content .container-photos-infos .photo-infos {
  position: relative;
  width: 50%;
  max-width: 50%;
  align-content: end;
  border-bottom: solid black 1px;
  padding-bottom: 50px;
  text-transform: uppercase;
}
.container-content .container-photos-infos .photo-infos .photo-title {
  font-size: 66px;
  font-style: italic;
  text-transform: uppercase;
  font-weight: 400;
  width: 50%;
  line-height: 1;
  margin-bottom: 25px;
}
.container-content .container-photos-infos .photo-main {
  display: flex;
  justify-content: end;
  align-items: flex-end;
  width: 100%;
  max-width: 50%;
  height: 100%;
  min-height: 400px;
}
.container-content .container-photos-infos .photo-main img {
  max-width: 100%;
  object-fit: contain;
}
.container-content .container-contact-next-prev {
  display: flex;
  position: relative;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: solid black 1px;
  height: 118px;
  align-items: center;
}
.container-content .container-contact-next-prev .container-btn-contact {
  position: relative;
  width: 50%;
  display: flex;
  flex-direction: row;
  gap: 100px;
}
.container-content .container-contact-next-prev .container-btn-contact p {
  font-family: "Poppins";
  font-weight: 300;
  font-size: 14px;
  flex-wrap: nowrap;
}
.container-content .container-contact-next-prev .container-btn-contact .btn {
  width: 272px;
  font-family: "SpaceMono-Regular";
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: #d8d8d8;
  color: #111;
  transition: transform 1s, box-shadow 1s, opacity 1s ease;
}
.container-content .container-contact-next-prev .container-btn-contact .btn__contact:hover {
  cursor: pointer;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.5);
  opacity: 0.7;
}
.container-content .container-contact-next-prev .container-next-prev {
  margin-right: 0px;
}
.container-content .container-contact-next-prev .photo-navigation a {
  position: relative;
  display: inline-block;
  top: 35px;
  position: relative;
}
.container-content .container-contact-next-prev .photo-navigation {
  display: flex;
  flex-direction: row;
  gap: 30px;
}
.container-content .container-contact-next-prev .photo-navigation .prev .preview {
  position: absolute;
  top: -70px;
  display: none;
}
.container-content .container-contact-next-prev .photo-navigation .next .preview {
  position: absolute;
  top: -70px;
  display: none;
  transform: translateX(-70%);
}
.container-content .container-contact-next-prev .photo-navigation a:hover .preview {
  display: block;
}
.container-content .container-contact-next-prev .photo-navigation a:hover .preview img {
  width: 81px;
  height: 71px;
  object-fit: contain;
}
.container-content .related-photos {
  margin-top: 50px;
}
.container-content .related-photos h2 {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 18px;
}
.container-content .related-photos .related-photos-list {
  display: flex;
  gap: 20px;
  height: auto;
  padding-bottom: 80px;
  padding-top: 40px;
}
.container-content .related-photos .related-photos-list .photo-block {
  flex: 1;
  text-align: center;
}
.container-content .related-photos .related-photos-list .photo-block .container-photo-block {
  height: 500px;
  width: 100%;
}
.container-content .related-photos .related-photos-list .photo-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: middle;
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox .lightbox__close {
  position: absolute;
  top: 30px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10001;
  padding: 10px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox .lightbox__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}
.lightbox .lightbox__content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  z-index: 10000;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.lightbox .lightbox__content .lightbox__media-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  width: 100%;
}
.lightbox .lightbox__content img,
.lightbox .lightbox__content video {
  max-width: 100%;
  max-height: 85vh;
  display: block;
  object-fit: contain;
}
.lightbox .lightbox__content .lightbox__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 20px 0 0 0;
  flex-wrap: wrap;
}
.lightbox .lightbox__content .lightbox__prev,
.lightbox .lightbox__content .lightbox__next {
  position: relative;
  transform: none;
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  background: transparent;
  font-size: 15px;
  font-family: "SpaceMono-Regular";
  text-transform: uppercase;
}

.photo-block {
  height: 100%;
}

.container-photo-block {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}
.container-photo-block img {
  display: block;
  width: 100%;
}
.container-photo-block .photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s;
}
.container-photo-block .photo-overlay .btn-lightbox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.container-photo-block .photo-overlay .btn-lightbox .btn-fullscreen {
  width: 80px !important;
  height: 80px !important;
  stroke: white;
  transition: transform 1s ease;
}
.container-photo-block .photo-overlay .btn-lightbox .btn-fullscreen:hover {
  transform: rotate(360deg);
}
.container-photo-block .photo-overlay .photo-title-vision {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #fff;
  text-transform: uppercase;
}
.container-photo-block .photo-overlay .photo-cat {
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: #fff;
  text-transform: uppercase;
}
.container-photo-block .photo-overlay .photo-eye {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center;
  transition: transform 1s ease;
}
.container-photo-block .photo-overlay .photo-eye:hover {
  animation: eye-spin 1s forwards;
}
.container-photo-block .photo-overlay .photo-eye img {
  width: 46px !important;
  height: auto !important;
}

.container-photo-block:hover .photo-overlay {
  opacity: 1;
}

/* Styles pour les vidéos */
.video-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 0, 0, 0.85);
  color: white;
  padding: 6px 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  z-index: 5;
}

.video-badge .video-icon {
  width: 16px;
  height: 16px;
  display: block;
}

@keyframes eye-spin {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  25% {
    transform: translate(-50%, -50%) scale(1.2);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2) rotateX(90deg);
  }
  55% {
    transform: translate(-50%, -50%) scale(1.2) rotateX(90deg);
  }
  75% {
    transform: translate(-50%, -50%) scale(1.2);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}
@media screen and (max-width: 1024px) {
  .hero {
    height: 80vh;
  }
  .photo-list .container-photos {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 40px 2%;
  }
  .photo-list .container-photos .photo-block {
    height: 240px;
  }
  .photo-list .container-photos .photo-block .container-photo-block {
    height: 240px;
  }
  .photo-list .container-photos .photo-block img {
    height: 240px;
  }
  .filters {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    justify-self: center;
  }
  .filters .photo-filters {
    flex-direction: column;
    gap: 12px;
  }
  .filters .photo-filters .dropdown {
    width: 100%;
  }
  .filters .select {
    width: 35vw;
  }
  .filters .btn-add-photo-filters {
    width: 35vw;
  }
  .photo-title-vision, .photo-cat {
    font-size: 12px;
  }
  .container-photo-block {
    max-height: 50vh;
    height: 40vh;
  }
}
@media screen and (max-width: 768px) {
  .select {
    width: 50vw !important;
  }
  .btn-add-photo-filters {
    width: 50vw !important;
  }
  #mobile-menu {
    display: flex;
    flex-direction: column;
    z-index: 10;
  }
  .title-site {
    max-width: 120px !important;
    left: 0 !important;
  }
  .title-site-burger {
    position: relative;
    left: 7%;
    max-width: 216px;
  }
  .burger-button {
    display: flex;
    position: relative;
    right: 3vw;
  }
  .btn-container {
    display: none !important;
  }
  .active {
    right: 0;
  }
  .footer-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    padding-top: 30px;
    padding-bottom: 40px;
    justify-self: center;
  }
  .wpcf7-form {
    width: 70% !important;
  }
  .container-content {
    padding-left: 0;
    padding-right: 0;
  }
  .container-content .container-photos-infos {
    flex-direction: column-reverse !important;
    border-bottom: solid black 1px;
  }
  .container-content .container-photos-infos .photo-infos {
    justify-self: center;
    position: relative !important;
    width: 80% !important;
    max-width: 100vw !important;
    align-self: center;
    border-bottom: 0;
  }
  .container-content .container-photos-infos .photo-infos .photo-title {
    justify-self: start;
    font-size: 50px;
  }
  .container-content .container-photos-infos .photo-infos p {
    justify-self: start;
  }
  .container-content .container-photos-infos .photo-main {
    max-width: 85%;
    align-self: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .container-content .container-photos-infos .photo-main img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
  }
  .container-content .container-contact-next-prev {
    align-items: center;
    height: auto;
  }
  .container-content .container-contact-next-prev .container-btn-contact {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .container-content .container-contact-next-prev .container-btn-contact p {
    align-self: center;
  }
  .container-content .container-contact-next-prev .container-btn-contact .btn__contact {
    align-self: center;
  }
  .container-content .related-photos {
    width: 85%;
    justify-self: center;
  }
  .container-content .related-photos h2 {
    justify-self: center;
  }
  .container-content .related-photos .related-photos-list {
    flex-direction: column;
    gap: 40px;
  }
  .container-content .related-photos .related-photos-list .container-photo-block {
    height: 50vh;
  }
  .container-content .container-next-prev {
    display: none;
  }
  .container-photo-block {
    max-height: 50vh;
    height: 30vh;
  }
}
@media screen and (max-width: 425px) {
  .hero {
    height: 50vh;
  }
  .container-photos {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    width: 100%;
    gap: 15px;
  }
  .container-photos .photo-block {
    height: auto;
    max-height: 35vh;
    display: flex;
    justify-self: center;
    width: 100%;
    grid-column: span 1;
  }
  .container-photos .photo-block .container-photo-block {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
  }
  .container-photos .photo-block img {
    width: 100% !important;
    object-fit: cover;
    display: block;
  }
  .lightbox .lightbox__close {
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
  }
  .lightbox .lightbox__content .lightbox__controls {
    gap: 10px;
    padding: 15px 0 0 0;
  }
  .lightbox .lightbox__content .lightbox__prev,
  .lightbox .lightbox__content .lightbox__next {
    position: relative;
    transform: none;
    color: #fff;
    border: none;
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    font-family: "SpaceMono-Regular";
    text-transform: uppercase;
    z-index: auto;
  }
  .select {
    width: 65vw !important;
  }
  .btn-add-photo-filters {
    width: 65vw !important;
  }
  .related-photos-list {
    flex-direction: column;
    gap: 40px;
  }
  .related-photos-list .container-photo-block {
    height: 30vh !important;
  }
  .related-photos-list .photo-block img {
    height: 30vh !important;
  }
  .photo-title-vision, .photo-cat {
    font-size: 15px;
  }
}

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