
@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;
}

body {
     font-family: 'Season Mix', sans-serif;
}

* {
    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;
}


.navbar-logo{
    width: auto;
    height: 80px;
}



.navbar-shop-logo{
    width: auto;
    height: 55px;
    margin-left: 10%;
    cursor: pointer;
}




/* Menu */


/* CONTENEDOR PRINCIPAL */
.menu-section {
    display: flex;
    height: calc(100vh - 7rem); /* respeta navbar */
}

/* LADO IZQUIERDO */
.menu-left {
    width: 50%;
    background-color: #f1edea;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-content {
    width: 70%;
}

.menu-content h1 {
    margin-bottom: 2rem;
}

.menu-content h2 {
    margin-bottom: 1rem;
}

/* LISTA CON COLUMNAS */
.menu-list div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

/* TAMAÑOS */
.sizes {
    margin: 1.5rem 0;
    letter-spacing: 2px;
}

/* LISTA VERTICAL */
.menu-list-vertical p {
    margin-bottom: 5px;
}

/* LADO DERECHO */
.menu-right {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.menu-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY OSCURO */
.image-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

/* DOTS */
.slider-dots {
    position: absolute;
    bottom: 20px;
    right: 40px;
    display: flex;
    gap: 10px;
}

.slider-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid white;
    cursor: pointer;
}

.slider-dots .active {
    background-color: white;
}






/* 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;
}





/* Dropdown store navbar item */

.nav-item.dropdown {
    position: relative;
}

.dropdown-menu {
    background-color: #cbb59c; 
    border: none;
    padding: 10px 0;
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: 10px;
}

.dropdown-item {
    color: #1b0e06;
    font-size: 0.9rem;
    padding: 10px 20px;
}

.dropdown-item:hover {
    background-color: #b79f84;
    color: black;
    text-decoration: underline
}