/* ========================= */
/* CONFIGURACION GENERAL */
/* ========================= */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    background-color: #111111;
    color: white;
    font-family: Arial, sans-serif;
}

img{
    width: 100%;
    display: block;
}

a{
    text-decoration: none;
}


/* ========================= */
/* MENU */
/* ========================= */

.cajota{
    background-color: #000000;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1{
    color: #d4af37;
    font-size: 32px;
    letter-spacing: 2px;
}

.menu ul{
    display: flex;
    list-style: none;
}

.menu li{
    margin-left: 30px;
}

.menu a{
    color: white;
    font-size: 17px;
}

.menu a:hover{
    color: #d4af37;
}


/* ========================= */
/* INICIO */
/* ========================= */

.cajita{
    width: 90%;
    min-height: 550px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.texto{
    width: 50%;
}

.texto h2{
    color: #d4af37;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.texto p{
    color: #dddddd;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 30px;
}

.boton{
    display: inline-block;
    background-color: #d4af37;
    color: #000000;
    padding: 13px 28px;
    border-radius: 5px;
    font-weight: bold;
}

.boton:hover{
    background-color: white;
}

.foto{
    width: 42%;
}

.foto img{
    height: 450px;
    object-fit: contain;
}


/* ========================= */
/* PERFUMES */
/* ========================= */

.perfumes{
    width: 90%;
    margin: 80px auto;
    text-align: center;
}

.perfumes h2{
    color: #d4af37;
    font-size: 36px;
    margin-bottom: 15px;
}

.perfumes > p{
    color: #cccccc;
    margin-bottom: 40px;
}

.productos{
    display: flex;
    justify-content: space-between;
    gap: 25px;
}

.carta{
    width: 33%;
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 8px;
}

.carta img{
    width: 100%;
    height: 280px;
    object-fit: contain;
    background-color: white;
    border-radius: 5px;
    margin-bottom: 20px;
}

.carta h3{
    color: #d4af37;
    font-size: 23px;
    margin-bottom: 15px;
}

.carta p{
    color: #dddddd;
    line-height: 25px;
    margin-bottom: 15px;
}

.carta h4{
    font-size: 20px;
    margin-bottom: 20px;
}

.carta button{
    background-color: #d4af37;
    color: black;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

.carta button:hover{
    background-color: white;
}


/* ========================= */
/* COLECCION */
/* ========================= */

.coleccion{
    width: 90%;
    margin: 80px auto;
    text-align: center;
}

.coleccion h2{
    color: #d4af37;
    font-size: 36px;
    margin-bottom: 40px;
}

.cajitas{
    display: flex;
    justify-content: space-between;
    gap: 25px;
}

.cajita2{
    width: 33%;
    background-color: #1e1e1e;
    padding: 35px 25px;
    border-radius: 8px;
}

.cajita2 h3{
    color: #d4af37;
    font-size: 24px;
    margin-bottom: 15px;
}

.cajita2 p{
    color: #dddddd;
    line-height: 26px;
}


/* ========================= */
/* PROMOCIONES */
/* ========================= */

.promociones{
    width: 90%;
    margin: 80px auto;
    text-align: center;
}

.promociones h2{
    color: #d4af37;
    font-size: 36px;
    margin-bottom: 15px;
}

.promociones > p{
    color: #cccccc;
    margin-bottom: 40px;
}

.ofertas{
    display: flex;
    justify-content: space-between;
    gap: 25px;
}

.oferta{
    width: 50%;
    background-color: #1e1e1e;
    padding: 35px;
    border-radius: 8px;
}

.oferta h3{
    color: #d4af37;
    font-size: 24px;
    margin-bottom: 15px;
}

.oferta p{
    color: #dddddd;
    line-height: 25px;
    margin-bottom: 20px;
}

.oferta button{
    background-color: #d4af37;
    color: #000000;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

.oferta button:hover{
    background-color: white;
}


/* ========================= */
/* CONTACTO */
/* ========================= */

.contacto{
    width: 90%;
    margin: 80px auto;
    text-align: center;
}

.contacto h2{
    color: #d4af37;
    font-size: 36px;
    margin-bottom: 15px;
}

.contacto > p{
    color: #cccccc;
    margin-bottom: 35px;
}

.contacto form{
    width: 60%;
    margin: auto;
    background-color: #1e1e1e;
    padding: 30px;
    border-radius: 8px;
}

.contacto input{
    width: 100%;
    padding: 13px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
}

.contacto textarea{
    width: 100%;
    height: 130px;
    padding: 13px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    resize: none;
}

.contacto button{
    background-color: #d4af37;
    color: black;
    border: none;
    padding: 13px 30px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

.contacto button:hover{
    background-color: white;
}


/* ========================= */
/* PIE DE PAGINA */
/* ========================= */

.pie{
    background-color: #000000;
    text-align: center;
    padding: 45px 20px;
    margin-top: 80px;
}

.pie h2{
    color: #d4af37;
    font-size: 30px;
    margin-bottom: 15px;
}

.pie p{
    color: #cccccc;
    line-height: 25px;
    margin-bottom: 20px;
}

.redes{
    margin: 25px 0;
}

.redes i{
    color: #d4af37;
    font-size: 25px;
    margin: 0 12px;
}


/* ========================= */
/* DISEÑO PARA CELULAR */
/* ========================= */

@media(max-width: 800px){

    .cajota{
        flex-direction: column;
        padding: 20px;
    }

    .menu ul{
        flex-direction: column;
        text-align: center;
        margin-top: 20px;
    }

    .menu li{
        margin: 10px 0;
    }

    .cajita{
        flex-direction: column;
        text-align: center;
        padding: 50px 0;
    }

    .texto{
        width: 100%;
    }

    .texto h2{
        font-size: 36px;
    }

    .foto{
        width: 90%;
        margin-top: 40px;
    }

    .foto img{
        height: 350px;
    }

    .productos{
        flex-direction: column;
    }

    .carta{
        width: 100%;
        margin-bottom: 25px;
    }

    .cajitas{
        flex-direction: column;
    }

    .cajita2{
        width: 100%;
        margin-bottom: 20px;
    }

    .ofertas{
        flex-direction: column;
    }

    .oferta{
        width: 100%;
        margin-bottom: 20px;
    }

    .contacto form{
        width: 100%;
    }

}