@font-face {
    font-family: 'Amsi-semi'; /* Specify a unique name for your font */
    src: url('fonts/AmsiProNarw-SemiBold.otf') format('opentype'), /* Font file path */
}

@font-face {
    font-family: 'Amsi-Black'; /* Specify a unique name for your font */
    src: url('fonts/AmsiProNarw-Black.otf') format('opentype'), /* Font file path */
}

@font-face {
    font-family: 'Amsi-Bold'; /* Specify a unique name for your font */
    src: url('fonts/AmsiProNarw-Bold.otf') format('opentype'), /* Font file path */
}

body {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: url(img/fondo-pared-ladrillo-rojo-marron-min2.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

/*navbar*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: left;
    align-items: center;
    width: 50%;
    max-width: 1100px;
}

.logo-container {
    margin: 5px 0;
    display: flex;
    align-items: center;
}

.logo-container a::before {
    content: '';
    position: absolute;
    top: 96%;
    left: auto;
    width: 70px;
    height: 4px;
    border-radius: 10px;
    background: #FFAB00;
}

.navbar {
    display: flex;
    align-items: center;
    margin-left: 0px;
}

.navbar a {
    font-family: 'Amsi-semi', sans-serif;
    position: relative;
    font-size: 32px;
    color: white;
    text-decoration: none;
    font-weight: 550;
    margin-left: 30px;
}

.navbar a:hover {
    transition: 0.3s;
    color: #FFAB00;
}

.navbar a::before {
    border-radius: 10px;
    content: '';
    position: absolute;
    top: 140%;
    left: 0;
    width: 0;
    height: 4px;
    background: #FFAB00;
    transition: 0.3s;
}

.navbar a:hover::before {
    width: 100%;
}


/*main content*/
.main-content{
    margin-top: 83.5px;
}

/*row*/
.row {
    margin: 20px 0;
    display: flex;
    justify-content: center; 
}
/*slider*/

.slider-container {
    width: 90%;
    max-width: 1200px;
    
}

.slide {
    border-radius: 10px;
    background: white;
    width: 100%;
    height: 400px;
    display: flex;
}

.column-left {
    width: 50%;
    display: flex;
    align-items: center;
    font-family: 'Amsi-Black', sans-serif;
    font-size: 32px;
    margin: 0 20px 0 30px;
}

.column-right {
    border-radius: 0 10px 10px 0;
    width: 50%;
    background-size: cover;
    background-position: center;
}



/*generic text*/

.text-container{
    background-color: rgba(0, 0, 0, 0.7);
    border: solid 2px rgb(247, 166, 0);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    text-align: center;
    width: 90%;
    max-width: 1200px;
}

.text-container p{
    margin-top: 5px;
    margin-bottom: 10px;
    font-family: 'Amsi-Black', sans-serif;
    font-size: 34px;
    color: rgb(247, 166, 0);
}

/*mini-menu*/

.mini-menu{
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    column-gap: 40px;
    row-gap: 20px;

}

.mini-menu-column-container {
    flex-grow: 1;
    flex-basis: 200px;
    background-color: white;
    height: 330px;
    border-radius: 10px;
    display: grid;
    justify-content: center;
}

.column-img-container {
    display: flex;
    justify-content: center;
    padding: 2vh;
}

.column-img {
    display: flex;
    border-radius: 50%;
    width: 230px;    
    height: 230px;
}

.column-sign-container {
    margin-bottom: 10px;
    display: flex;  
    justify-content: center;
    align-items: center;
}

.column-sign-container a {
    margin: 0;
    font-family: 'Amsi-semi',sans-serif;
    color: #000000;
    font-size: 25px;
    background: #FFAB00;
    border-radius: 15px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 5px;
    text-decoration: none;
    position: relative;
    transition: 0.3s;
}

.column-sign-container a:hover {
    position: relative;
    transition: 0.3s;
    background-color: #FFAB00;
    border-radius: 15px;
    padding-left: 13px;
    padding-right: 13px;
    padding-bottom: 8px;
    padding-top: 3px;
}


/*footer*/
footer {
    display: flex;
    margin-top: auto;
    background-color: rgb(247, 166, 0);
    justify-content: center;
    font-family: 'Amsi-semi', sans-serif;
}

.social-media{
    margin: 20px;
    display: flex;
    justify-content: space-around;
}

.copyright-container{
    padding-bottom: 20px;
}

/*responsive*/
@media (max-width: 900px) {
    .header-content{
        width: auto;
    }
    .slide{
        height: fit-content;
        flex-direction: column;
    }
    .column-left{
        font-size: 28px;
        width: fit-content;
    }
    .column-right{
        border-radius: 0 0 10px 10px;
        width: 100%;
        height: 300px;
    }
}