@charset "UTF-8";
@import "../node_modules/bootstrap-icons/font/bootstrap-icons.css";
body {
  font-size: 14px;
  color: #666666;
  background-color: #ffffff;
}

a {
  color: grey;
}

.logo {
  width: 200px;
  position: absolute;
}

.navbar-dark {
  background: rgb(206, 206, 206);
  background: linear-gradient(90deg, rgb(206, 206, 206) 0%, rgb(244, 244, 244) 70%, rgb(255, 255, 255) 100%);
}

.menu {
  margin-left: 260px;
}

.nav-link {
  color: #666666;
}

.nav-link:hover {
  color: #302d2d;
}

.background {
  background-image: url("../photo/pirati.jpg"); /* Sostituisci con il link alla tua immagine */
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px; /* Margini orizzontali */
  margin-top: 50px; /* Margine superiore */
  margin-bottom: 50px; /* Margine inferiore */
  min-height: calc(95vh - 95px); /* Imposta l'altezza ridotta per lasciare spazio ai margini */
  box-sizing: border-box; /* Include il padding nel calcolo dell'altezza totale */
}

.quoteBresson {
  font-size: 19.6px;
  margin-top: 70vh;
  color: #ffffff; /* Colore del testo sopra l'immagine */
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  background-color: rgba(0, 0, 0, 0.5); /* Sfondo semitrasparente per migliorare la leggibilità */
  padding: 20px;
}
.quoteBresson a {
  color: #ff0000;
  text-decoration: none;
  margin-right: 2px;
  display: flex;
  justify-content: end;
}

.copyright {
  text-align: center;
  color: #666666;
  font-size: 12px;
  border-top: 1px solid #fff;
  margin-top: 20px;
}

.image-container {
  width: 140px;
  height: 140px;
  overflow: hidden; /* Nasconde la parte che esce dal cerchio */
  position: relative;
  margin: 0 auto;
}

.image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* Assicura che l'immagine riempia il cerchio senza distorcerla */
}

.rounded-circle {
  border-radius: 50%; /* Crea un cerchio */
}

.elementHp {
  display: grid;
  grid-template-columns: fit-content(500px) fit-content(150px);
  height: 200px;
}

/* Media query per dispositivi mobili */
@media (max-width: 767px) {
  .background {
    background-position: top;
    margin-top: 10px;
  }
}
.imgHp {
  width: 500px;
  box-shadow: 5px 5px #f4f4f4;
}


li {
  list-style-type: none;
}

#gallery img {
  width: 300px;
  height: 300px;
  -o-object-fit: contain;
     object-fit: contain;
  cursor: pointer;
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
  padding: 0.5rem;
}

#photo {
  max-width: 600px;
  padding: 0.5rem;
  border: none;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
}

#details input[type=radio] {
  display: inline-block;
  margin-right: 1rem;
}

.dropdown-menu {
  margin-top: 5px !important;
  transform: translate(23px, 23px) !important;
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
  border: none;
}

/**/
.preview-container {
  text-align: center;
  margin-top: 40px;
}

/* Contesto 3D */
.scene {
  perspective: 1200px;
  display: inline-block;
}

/* Cornice legno 3D */
.canvas-frame {
  position: relative;
  display: inline-block;
  padding: 20px;
  /* background: linear-gradient(25deg, #815225, #835a39, #533619); */
  border: 12px solid #ffffff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(0, 0, 0, 0.4);
  transform: rotateY(25deg) rotateX(4deg);
  transform-style: preserve-3d;
  transition: transform 0.4s ease;
}

/* Effetto venature */
.canvas-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0px, rgba(0, 0, 0, 0.05) 2px, transparent 4px);
}

/* Tela interna */
.canvas-inner {
  position: relative;
  background: white;
  width: 200px;
  overflow: hidden;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.25);
}

/* Foto */
#previewImage {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#titlePhoto {
  font-style: italic;
}

.loading-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px; /* puoi regolare */
}

.loader-box-horizontal {
  width: 130px;
  height: 80px;
  border: 1px solid black;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: -3333;
}

.loader-box {
  width: 130px;
  height: 80px;
  border: 1px solid black;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(339deg);
}

.loader-circle {
  width: 40px;
  height: 40px;
  border: 1px solid red;
  border-radius: 50%;
  border-top: 1px solid transparent;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.footer-link {
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #000;
}

.social-icon {
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
}

.social-icon .bi-instagram:hover {
  color: #E1306C;
}

.social-icon .bi-facebook:hover {
  color: #1877F2;
}/*# sourceMappingURL=main.css.map */
.language-switch {
  display: inline-flex;
  border: 1px solid #dee2e6;
  border-radius: 50px;
  overflow: hidden;
  font-size: 12px;
}

.lang-btn {
  border: none;
  background: transparent;
  padding: 4px 10px;
  cursor: pointer;
  color: #6c757d;
  transition: all 0.2s ease;
}

.lang-btn:hover {
  background-color: #f1f1f1;
}

.lang-btn.active {
  background-color: #212529;
  color: white;
}