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

body{
    margin: 0;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    background-color: #000;
}

header{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;

    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;

    background: transparent;
    padding-bottom: 30px;
}

nav{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 45px;
    margin-top: 0;
}

nav a{
    text-decoration: none;
    color: white;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 15px;
    text-transform: uppercase;
    font-family: Arial, Helvetica, sans-serif;
}

nav a:hover{
    color: #c98b35;
}

.hero{
    width: 100%;
    height: 100vh;

    background-image:
    linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.15)),
    url("backgroundkake.png");
    background-size: cover;
    background-position: 50% 35%;
    background-repeat: no-repeat;
    position: relative;

}
.hero h1{
        color: white !important;
        position: relative;
        z-index: 2000;
    }

.contenido{
    color: white;
    text-align: left;
}

.contenido h1{
    font-size: 60px;
    margin-bottom: 15px;
}

.contenido p{
    font-size: 24px;
    margin-bottom: 20px;
}

.botones{
    position: absolute;
    top: 160px;
    left: 80px;

    display: flex;
    gap: 20px;
}

.btn{
    text-decoration: none;
    color: black;
    padding: 25px 35px;
    font-size: 22px;
    font-weight: bold;
    border-radius: 10px;
}

.dorado{
    background-color: #c98b35;
}

.dorado2{
    background-color: #c98b35;
}

.btn:hover{
    opacity: 0.85;
}
.construction-box{
    position: absolute;
    top: 120px;
    left: 60px;
    z-index: 2000;
    color: white;
    max-width: 520px;
}

.small-title{
    font-size: 15px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #d6a35d;
    font-weight: 700;
    margin-bottom: 12px;
}

.construction-box h1{
    font-size: 58px;
    font-family: Georgia, serif;
    font-weight: 500;
    margin-bottom: 15px;
}

.subtitle{
    font-size: 20px;
    line-height: 1.4;
    color: #f3f3f3;
}

/* =================== */
/* VERSION PARA CELULARES */
/* =================== */

@media (max-width: 950px) {

    .hero{
        height: 100vh;
        background-image:
        linear-gradient(rgba(0,0,0,0.08), rgba(0,0,0,0.08)),
        url("backgroundmobilekake.png");
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        background-color: #000;
    }

    .hero h1{
        color: white !important;
    }

    header{
        height: 100vh;
        align-items: flex-end;
        justify-content: center;
        padding-bottom: 35px;
        position: absolute;
        top: 0;
        left: 0;
    }

    nav{
        position: absolute;
        top: 75%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: grid;
        grid-template-columns: repeat(2, auto);
        column-gap: 70px;
        row-gap: 45px;
        width: auto;
        padding: 0;
        overflow: visible;
        text-align: center;
    }

    nav a{
        font-size: 14px;
        letter-spacing: 3px;
        white-space: nowrap;
        color: black;
    }

    .botones{
        top: 120px;
        left: 25px;
        flex-direction: column;
    }

    .btn{
        padding: 15px 25px;
        font-size: 16px;
    }

    .construction-box{
    top: 80px;
    left: 25px;
    max-width: 330px;
}

.construction-box h1{
    font-size: 38px;
}

.subtitle{
    font-size: 16px;
}
}