
@font-face {
    font-family: 'Season Mix';
    src: url('../fonts/SeasonMix-TRIAL-Heavy.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}



html {
  scroll-padding-top: 7rem;
  /* height: 100%; */
}

body {
    font-family: 'Season Mix', sans-serif;
    /* display: flex;
    flex-direction: column; */
    /* height: 100%; */
}

main{
    flex: 1;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


a {
  text-decoration: none;
  color: inherit;
}


h1{
    font-size: 2.1rem;
}

h2{
    font-size: 1.4rem;
}

h3{
    font-size: 1rem;
}




.suTitulo{
    color: red
}



.my-navbar{
    width: 100%;
    background-color: #990012;
    height: 7rem;
    /* padding-top: 20px; */
    padding-bottom: 5px;
    padding-left: 10rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    /* justify-content: space-evenly; */
    column-gap: 10%;
}



.my-navbar-items{
    margin-top: 20px;
    font-size: larger;
    color: white;
    display: flex;
    flex-direction: row;
    /* width: 100%; */
    justify-content: center;
    column-gap: 5rem;
    list-style-type: none;
    align-items: center;
}

.my-navbar-items li a {
    position: relative;
    display: inline-block;
}

.nav-active::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -40px; /* distancia respecto al texto */
    width: 170%;
    height: 4px;
    background-color: white;
    border-radius: 2px;
}



.navbar-logo{
    width: auto;
    height: 80px;
}



.navbar-shop-logo{
    width: auto;
    height: 55px;
    margin-left: 10%;
    cursor: pointer;
    display: none;
}




/* Contacto */



.main-section-contact{
    background-color: #f1edea ;
    height: calc(100vh - 7rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
}

.main-section-contact h1{
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.contact-body{
  display: flex;
  flex-direction: column;
  width: 70%;
  max-width: 1000px;
  gap: 2rem;
}

.contact-top{
    display: flex;
    gap: 2rem;

}


.contact-top div{
    display: flex;
    flex-direction: column;
    width: 50%;
}

.contact-input{
    height: 45px;
    border: 2px solid #dccdbd;
    border-radius: 6px;
    padding: 0 10px;
    background-color: transparent;
}

.contact-text{
    width: 100%;
    height: 200px;
    border: 2px solid #dccdbd;
    border-radius: 6px;
    padding: 10px;
    resize: none;
    background-color: transparent;
}


.contact-bottom{
   display: flex;
   flex-direction: column;
   gap: 0.5rem;
}


.send-button{
    width: 100px;
    height: 50px;
    color: white;
    background-color: #1b0e06;
    border: none;
    margin-top: 2rem;
    align-self: flex-start;
    cursor: pointer;
}



/* Footer */

footer {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    background-color: black;
    padding: 100px 0px;
}


.footer-main-menu {
   display: flex;
   flex-direction: column;
   color: white;
   gap: 1rem;
   margin-right: 80px;
}


#footer-logo {
    width: 200px;
    height: 200px;
}

.footer-socialmedia {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 1rem;
}


.footer-socialmedia img {
    width: 16px;
    height: 34px;
}

.footer-socialmedia a:first-child img {
      width: 34px;
}


/* Sidebar shopping cart */



.offcanvas {
    width: 380px;
    background-color: #f3efeb;
}

.offcanvas-header {
    border-bottom: 2px solid #d8c7b8;
}

.offcanvas-body {
    padding: 2rem;
}


@media (max-width: 768px) {

    .my-navbar {
        flex-direction: row;
        height: 70px;
        padding: 1rem;
        /* gap: 1rem; */
        justify-content: space-between;
        align-items: center;
    }

    
    .my-navbar-items {
       display: none;
    }


    .navbar-logo {
        height: 40px;
    }

    
    .navbar-shop-logo {
        /* height: 40px;
        margin-left: 0; */
        display: none;
    }

  
    .contact-body{
        width: 100%;
        padding: 1rem;
        gap: 1rem;
    }

    .contact-top{
      flex-direction: column;
      width: 100%;
    }

    .contact-top div{
        width: 100%;
    }

    .contact-input{
        width: 100%;
    }

    .main-section-contact{
        padding-bottom: 10rem;
    }

 
    .send-button{
        margin-bottom: 4rem;
    } 

    


        footer {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        padding: 50px 20px;
        text-align: center;
    }

    #footer-logo {
        width: 80px;
        height: auto;
    }

    .footer-main-menu {
        margin-right: 0;
    }

    .footer-socialmedia {
        flex-direction: row;
        gap: 1.5rem;
    }

    .footer-socialmedia img {
        width: auto;
        height: 20px;
    }

    #footer-insta{
        height: 25px !important;
    }

}





/* Dropdown store navbar item */

.nav-item.dropdown {
    position: relative;
}

.dropdown-menu {
    background-color: #cbb59c;
    border: none;
    padding: 10px 0;
    position: absolute;
    left: -50px !important;
    /* transform: translateX(-30px); */
    top: 40px !important;
    margin-top: 10px;
    min-width: 200px;
    opacity: 0.95;
    border-radius: 0px;
}

.dropdown-item {
    color: #1b0e06;
    /* font-size: 0.9rem; */
    padding: 10px 20px;
    text-align: center;
    height: 22px;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: transparent !important;
    color: inherit;
    text-decoration: underline;
}

