@font-face {
    font-family: 'Montserrat';
    src: url('./assets/fonts/Montserrat/static/Montserrat-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Montserrat', sans-serif;
}


@font-face {
    font-family: 'brillant';
    src: url('./assets/fonts/brillant.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'brillant', sans-serif;
    font-weight: 800;
}

.monserrat-font{
    font-family: 'Montserrat', sans-serif;
}



.foto{
    max-height: 800px;
    width: auto;
}

.foto-cartas{
    height: 750px;
    /* width: 500px; */
    width: auto;
}

html {
    scroll-behavior: smooth;
}        
.gallery {
    width: 100%;
    padding: 0 20px;
}

.products-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.row {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.row-top {
    justify-content: space-between;
}

.row-bottom {
    justify-content: center;
}
.product {
    flex: 0 0 auto;
    max-width: 300px;
    margin-right: 16px;
    transition: transform 0.3s ease;
}
.product.center {
    transform: none;
}
.product:hover {
    transform: scale(1.1);
    z-index: 10;
}


#banner-eslogan{
  padding: 0;
}

#eslogan, #eslogan-description {
    position: relative;
    z-index: 20;
}

#erik-picture {
    position: relative;
    left: -10%;
    top: 0;
    z-index: 10;
    border-top-right-radius: 25%;
    border-top-left-radius: 25%;
    width: 70%;
    height: auto;
    object-fit: cover;
    z-index: 10;
    padding-top: 20%;
    padding-bottom: 20%;
}

@media (max-width: 768px) {
    #erik-picture {
        left: 25%;
        width: 50%;
        padding-top: 10%;
        padding-bottom: 10%;
    }
}

#eslogan{
 z-index: 20;
}

#eslogan-description{
 z-index: 20;
}

.send-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #4b4073;
    color: #ebeaef;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 50;
}


  .brillant-bold {
    font-family: 'Brillant', sans-serif;
    text-shadow: 1px 1px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000;
  }

.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

#banner-historia {
  position: relative;
  min-height: 100vh;
  padding: 4rem 0;
  background-color: transparent;
}

#banner-historia::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(224, 206, 242, 0.7), rgba(224, 206, 242, 0.9));
  z-index: 1;
}

#banner-historia .container {
  position: relative;
  z-index: 2;
}

#retiro-fotos{
    display: flex;
    width: 900px;
    height: 530px;
}

#retiro-fotos img{
    width: 0px;
    flex-grow: 1;
    object-fit: cover;
    opacity: 0.8;
    transition: 0.5s ease;
}

#retiro-fotos img:hover{
    cursor: crosshair;
    width: 400px;
    opacity: 1;
    filter: contrast(120%);
}