/* ========= GOOGLE FONT ========= */

@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');


/* ========= RESET ========= */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* ========= VARIABLES ========= */

:root{

    --dorado: #D6A66A;
    --cafe: #2B1E18;
    --beige: #F7E8D4;

}


/* ========= BODY ========= */

body{

    background-color: var(--beige);

    font-family: Arial, Helvetica, sans-serif;

}


/* ========= HEADER ========= */

header{

    width: 100%;

    min-height: 240px;

    padding: 16px 6%;

    display: flex;
    justify-content: flex-end;
    align-items: center;

    background-image: url("../img/logo/logo-header.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left top;

    position: relative;

    overflow: hidden;

}


/* ========= OVERLAY ========= */

header::before{

    content: "";

    position: absolute;

    inset: 0;

    background: rgba(20, 10, 5, 0.05);

}


/* ========= RIGHT SIDE ========= */

.header-right{

    position: relative;
    z-index: 2;

    width: 44%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;

}


/* ========= SLOGAN ========= */

.slogan{

    font-family: 'Marcellus', serif;

    font-size: 1.45rem;

    letter-spacing: 2px;
    line-height: 1.4;

    color: var(--dorado);

    margin-bottom: 42px;

    text-align: right;

}


/* ========= NAV ========= */
nav{

    margin-top: 18px;

}
nav ul{

    display: flex;
    justify-content: flex-end;
    align-items: center;

    gap: 12px;

    list-style: none;

}


/* ========= LINKS ========= */

nav a{

    text-decoration: none;

    color: var(--dorado);

    font-size: 0.82rem;

    letter-spacing: 1.2px;

    padding: 12px 18px;

    border: 1px solid rgba(214, 166, 106, 0.45);

    border-radius: 999px;

    transition: 0.35s ease;

    backdrop-filter: blur(4px);

    min-width: 105px;

    display: flex;
    justify-content: center;
    align-items: center;

}


/* ========= HOVER ========= */

nav a:hover{

    background-color: var(--dorado);

    color: var(--cafe);

    border-color: var(--dorado);

}
