/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
/* Set default font family and size */
body {
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Archivo', sans-serif;
}

/* Set background color */
body {
    background-color: #f5f5f5;
}

/* Set container styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Set header styles */
header {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    background: #FE000E;
    animation: appearfromtop 1s 1;
}

@keyframes appearfromtop {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}

/* Set navigation styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav li {}

nav a {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
}

/* Set hero section styles */
.hero {
    background-image: url('img/salsabg.svg');
    background-color: black;
    background-size: auto 1000px;
    background-position: bottom;
    background-repeat: no-repeat;
    overflow: hidden;
    position: relative;
    padding: 50px 0;
    min-height: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    color: #fff;
    text-align: center;
}

.hero_img {
    margin: 60px auto;
    display: block;
    transform: scale(0) rotate(-180deg);
    animation: zoomOut 2s 1 0.5s forwards;
}

@keyframes zoomOut {
    0% {
        transform: scale(0) rotate(-180deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}
.link_image{
    display: block;
    transition: ease all 0.5s;
}
.link_image:hover{
    transform: scale(1.1);
}
.salsa_shape_left{
    position: absolute;
    top:15%;
    left: -30%;
    pointer-events: none;
    width: 50%;
}
.salsa_shape_right{
    position: absolute;
    pointer-events: none;
    bottom: -200px;
    right: -15%;
    width: 50%;
}
.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 24px;
    margin-bottom: 40px;
}
.drawsvg{
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw 2s 1 0.5s forwards;
}

@keyframes draw {
    0% {
        stroke-dashoffset: 1000;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

.hero_button {
    background: linear-gradient(180deg,
            #aa8030 0%,
            #79540d 50%,
            #b38837 100%);
    border-radius: 20px;
    color: #ffffff;
    display: inline-block;
    font-family: Archivo;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 42px;
    font-weight: 700;
    margin-left: 4px;
    text-align: center;
    white-space: nowrap;
    padding: 22px 60px 28px 60px;
    transition: all 0.3s ease-in-out;
}
/* hero button hover */
.hero_button:hover {
    transform: scale(1.1);
}
.appearsalsa{
    animation: appearcool 1s 1;
}
@keyframes appearcool {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(0);
    }
}
.image_move{
    animation: move 2s infinite;
}
@keyframes move {
    0% {
        transform: rotate(0deg);
    }
    33%{
        transform: rotate(10deg);
    }
    66%{
        transform: rotate(-10deg);
    }
    100% {
        transform: rotate(0deg);
    }
}
.banner {
    color: white;
    background-color: #FE000E;
    width: 100%;
    display: block;
    text-align: center;
    font-size: 30px;
    padding: 50px 15%;
}

.banner_text {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 50px;
}

.encuentranos {
    background-color: #fff;
    width: 100%;
    display: block;
    text-align: center;
    font-size: 30px;
    padding: 50px 5%;
}

.encuentranos h2 {
    font-size: 28px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 50px;
}

.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    overflow: hidden;
    margin-bottom: 35px;
}


.col-1 {
    flex-basis: calc(100% - 20px);
    padding: 40px;
}

.col-7 {
    padding: 10px;
}

.salsa_footer {
    width: 100%;
    display: block;
    margin: 0 auto;
    max-width: 500px;
}
img{
    max-width: 100%;
}

/* Set footer styles */
footer {
    background-color: #FE000E;
    color: #fff;
    padding: 10px 5%;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-media {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

footer a {
    color: #fff;
    text-decoration: none;
}
/* Mobile styles */
@media only screen and (max-width: 600px) {
    /* Set container styles */
    .container {
        max-width: 100%;
        padding: 0 10px;
    }

    /* Set header styles */
    header {
        padding: 10px 0;
    }

    /* Set navigation styles */
    nav {
        padding: 0 10px;
    }

    nav ul {
        gap: 10px;
        font-size: 12px;
    }

    /* Set hero section styles */
    .hero {
        height: auto;
    }

    .hero h1 {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .hero p {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .hero_button {
        font-size: 24px;
        padding: 16px 40px 20px 40px;
    }

    /* Set banner styles */
    .banner {
        font-size: 24px;
        padding: 30px 10%;
    }
    .banner svg{
        width: 100%;
    }

    .banner_text {
        font-size: 16px;
        margin-bottom: 30px;
    }

    /* Set encuentranos styles */
    .encuentranos {
        font-size: 24px;
        padding: 30px 5%;
    }

    .encuentranos h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .row {
        flex-wrap: wrap;
        margin-bottom: 20px;
        justify-content: center;
    }

    .col-1 {
        padding: 20px;
    }

    .col-7 {
        flex-basis: 33%;
        padding: 10px;
    }

    .salsa_footer {
        max-width: 100%;
        margin: 0;
    }

    /* Set footer styles */
    footer {
        flex-direction: column;
        padding: 20px 10%;
    }

    .social-media {
        gap: 10px;
    }
}
