@import url('./contact-forms.css');
@import url('./footer.css');

/* VARIABLES */
:root {
    --main-bg-color: #F3EEEB;
    --crema: #F3EEEB;
    --nude: #CAAC94;
    --arena: #DDD6C6;
    --beige: #E3D7C7;
    --negro: #1D1D1D;
}
  

body {
    /* RESET */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* background-color: var(--crema); */
    /* FONTS */
    font-family: 'Lato', sans-serif;
}

/* CUSTOM FONTS */
@font-face {
    font-family: 'QTAgateType';
    src: url('../assets/fonts/QTAgateType.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'QTAgateType-Bold';
    src: url('../assets/fonts/QTAgateType-Bold.otf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'QTAgateType-Italic';
    src: url('../assets/fonts/QTAgateType-Italic.otf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Lato-Light';
    src: url('../assets/fonts/Lato-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/* ASIDE   A DEPLACER PLUS TARD */ 
#languages-btns {
    display: flex;
    justify-content: end;
    margin-right: 1em;
    margin-top: 0.5em;
    font-family: 'QTAgateType';
}

#languages-btns ul {
    display: flex;
    gap: 0.3em;
    list-style: none;
    padding: 0;
    margin: 0;
}

#languages-btns li {
    border: 1px solid #333;
    padding: 0.5em;
    color: #333;
    width: 21px;
    text-align: center;
}

#languages-btns li:hover {
    background-color: #333;
    color: #FFF;
    cursor: pointer;
}

/* INDEX.PHP */
.banner {
    background-image: url('../assets/images/portfolio/bride-background-contact-form-resized.jpg');
    background-size: cover;
    background-position: top 50% center; 
    background-repeat: no-repeat; 
    height: 550px;
    width: 100%;
    position: relative;
}

#main-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 7%;
    z-index: 1;
    width: 25vw!important;
    height: auto;
    min-width: 500px;
}


.container {
    margin: auto;
    width: 1200px;
}

.flex {
    display: flex;
    justify-content: space-around;
    gap: 5em;
}

#welcome-msg {
    width: 60%;
    margin:0;
    max-width: 600px;
}

#welcome-msg h2 {
    font-weight: 100;
    font-family: 'QTAgateType';
    font-size: 2.3em;
}

#welcome-msg h3 {
    font-family: 'Lato-Light';
    font-size: 1.2em;
    font-weight: 300!important;
    line-height: 1.5;
}

#form-container-section{
    width: 30%;
    margin-top: 1em;
    margin-bottom: 1em;
}

.echodebug {
    background-image: linear-gradient(120deg, #f6d365 0%, #fda085 100%);
    padding: 10px;
    border-radius: 10px;
    margin: 10px;
}

@media (max-width: 1200px) {
    .container {
        width: 90%;
        margin: 0 auto;
    }

    #main-logo {
        min-width: 300px;
        width: 50vw!important;
    }
}

@media (max-width: 768px) {
    .flex {
        flex-direction: column;
        gap: 2em;
    }

    #welcome-msg {
        width: 100%;
        text-align: center;
    }

    #form-container-section {
        width: 100%;
        margin: 0 auto;
    }

    #welcome-msg h2 {
        font-size: 1.8em;
    }

    #welcome-msg h3 {
        font-size: 1.1em;
    }

    .banner {
        height: 400px;
    }
}

@media (max-width: 480px) {
    #main-logo {
        min-width: 250px;
        width: 80vw!important;
    }

    #welcome-msg h2 {
        font-size: 1.5em;
    }

    #welcome-msg h3 {
        font-size: 1em;
    }

    .banner {
        height: 300px;
    }
}