/* Globales */

.transparent-60 {
  opacity: 0.6;
}

i {
  margin-right: 0.5rem;
  color: #688274;
}

button i {
  margin-right: 0.5rem;
  color: white;
}

.bg-beige-opacity-20 {
  background-color: #b3a18d;
  opacity: 0.40;
}

.text-shadow {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 0, 0, 0.3);
}
.text-shadow-diffuse {
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
/* Principales */

header {
  position: sticky;
  top: 0;
  z-index: 10;
}

footer {
  position: relative;
  bottom: 0;
  width: 100%;
}
footer i{
  color: white;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #dbdfdf;
  overflow: auto;
  position: relative;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 150px); /* Ajusta el valor según la altura de header y footer */
}

/* Fuentes */
.fleur-de-leah-regular {
  font-family: "Fleur De Leah", cursive;
  font-weight: 400;
  font-style: normal;
}

.quicksand-regular {
  font-family: "Quicksand", serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}

h1, h2 {
  font-family: "Fleur De Leah", serif;
  opacity: 0.8;
  color: #8E8D8A;
  font-weight: normal;
}
h2 {
  font-size: 3rem !important;
}

label, p, input, tr, th, td {
  font-family: "Quicksand", serif;
  color: #61605d;
}

/* Flolan */
.flolan {
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(to right, #3b82f6, #ec4899, #9333ea); /* Degradado a mano */
}

/* Container */
.container {
  background-color: rgb(255, 255, 255);
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  width: 24rem;
  z-index: 10;
  opacity: 0.85;
  margin-bottom: 0; /* Sin margen inferior */

}
@media (max-width: 720px) {
  .container {
    margin-top: 2rem; /* Reduce el margen superior */
  }
}

.container-backoffice {
  background-color: rgb(255, 255, 255);
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 10;
  opacity: 0.85;
}

@media (min-width: 1024px) {
  .container-backoffice {
    padding: 3rem;
  }
}
.container h2, .container-backoffice h2 {
  font-size: 4rem;
  color: #64625f;
  margin-bottom: 1.5rem;
  text-align: center;
}

.container form, .container-backoffice form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.container label, .container-backoffice label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #5f5d5d;
  margin-bottom: 0.25rem;
  font-family: "Quicksand", serif;
}

.container input, .container-backoffice input {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #EAE7DC;
  border-radius: 0.25rem;
  outline: none;
  transition: border-color 0.3s;
}

.container input:focus, .container-backoffice input:focus {
  border-color: #b3a18d;
}

.container .password-container, .container-backoffice .password-container {
  position: relative;
}

.container .password-container button , .container-backoffice .password-container button {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
}

.container button, .container-backoffice button {
  background-color: #98afae;
  color: white;
  padding: 0.5rem;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.container button:hover, .container-backoffice button:hover {
  background-color: #748d82;
}
.circle-bg {
  background-color: #b3a18d;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.content {
  position: relative;
  overflow: hidden; /* Evita que los elementos salgan del contenedor */
}
.leaves {
  position: absolute;
  background-color: #eeeced;
  opacity: 0.4;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Evita que las hojas interfieran con otros elementos */
}

@keyframes fallLeaf {
  0% {
    opacity: 0;
    transform: translate(0, 0) rotate(20deg);
  }
  10% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    opacity: 0;
    transform: translate(0, 75vh) rotate(50deg); /* Ajusta el valor de translate para que las hojas caigan más abajo */
  }
}

.bg-white-opacity-20 {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Home */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.gallery-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 0.25rem;
}
