@import url('https://fonts.googleapis.com/css2?family=Gabarito:wght@400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Recoleta:wght@400;500;600;700&display=swap');


:root {
    --primary-color: #FF54BC;
    --secondary-color: #5856D6;
    --text-color: #000000;
    --background-color: #FFFFFF;
    --error-color: #FF3B30;
    --success-color: #34C759;
    --border-color: #E5E5EA;
    --input-background: transparent;
    --button-hover: #0056B3;
    --text-secondary: #8E8E93;
    --logo-min-width: 150px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all .4s ease;
}

html {
    font-size: 16px;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

#root, #__next {
    isolation: isolate;
}

body {
    font-family: 'Gabarito', sans-serif;
  
}

.grid-layout {
    display: grid;
    grid-template-columns: clamp(500px, 500px, 540px) auto;
    width: 100%;
    height: 100vh;
    position: relative;
    overflow-y: scroll;
    overflow-x: hidden;
   
}

.right-column{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/styles/assets/images/cover-2.webp);
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

.right-column::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.menu-icon{
    position: absolute;
    top: 2em;
    right: 2em;
    width: 2.5em;
    height: 2.5em;
    display: none;
}

@media (max-width: 1024px) {
    .menu-icon {
       /*display: block;*/
    }
}

/* Ensure columns are above the background images */
.left-column, .right-column {
    position: relative;
    z-index: 2;
}

.right-column {
    min-height: 100vh;
    padding: 2em;
    display: flex;
    flex-direction: column;
   
    justify-content: start;
    z-index:2;
}

.left-column {
    padding: 2em 2em 0 2em;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #101024;
    z-index: 1;
    justify-content: space-between;
}

.logo-container {
    position: relative;
    padding: 2em;
    z-index: 3;
}

.logo-container img{
    width: 15em;
}

.logo-container h2{
    color: #FFF;
    font-variant-numeric: lining-nums proportional-nums;
    font-feature-settings: 'dlig' on;
    font-family: Gabarito;
    font-size: 1.5em;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.015em;
    margin-top: 2em;
}

.left-column h3{
    color: #FFF;
    font-variant-numeric: lining-nums proportional-nums;
    font-feature-settings: 'dlig' on;
    font-family: Gabarito;
    font-size: 1.25em;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.0125em;
    
}

.left-column h4{
    color: #FFF;
    font-variant-numeric: lining-nums proportional-nums;
    font-feature-settings: 'dlig' on;
    font-family: Gabarito;
    font-size: 1.1em;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.01125em;
    margin-top: 1em;
    max-width: 22em;
   
}

.left-column p{
    font-size: 0.875em;
    color: #FFF;
    max-width: 10em;
    display: block;
   
}

.left-column form{
    margin-top: 2.5rem;
}

form input, button {
    border-radius: 6.25em;
    border: 1px solid #FFF;
    background: transparent;
    display: flex;
    min-width: 9em;
    width: 100%;
    height: 3rem;
    padding: 0.8125em 1.25em;
    align-items: center;
    gap: 0.625em;
    flex-shrink: 0;
    margin-top:1.2em;
    color: #fff;
}

form input:focus{
    outline: none;
    border: 2px solid #fff;
    transition: all .1s ease;
}

button {
    display: flex;
    justify-content: center;
    text-align: center;
    height: 3.5em;
    color: #FFF;
    font-variant-numeric: lining-nums proportional-nums;
    font-feature-settings: 'dlig' on;
    font-family: Gabarito;
    font-size: 1.25em;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.0125em;
    border: 1px solid #FFF;
    border: 2px solid var(--primary-color);
}

button:hover{
    background: var(--primary-color);
    color: #FFF;
    cursor: pointer;
}

div.social-links{
    margin-top:3em;
    display: flex;
    gap: 1em;
}

.social-links img{
    width: 2.5em;
    height: 2.5em;
}

div.contact-form-container{
  width: 100%; 
  max-width:30em;
  padding:2em;
  
}

div.footer-container{
    margin-top: 3em;
}

div.footer-container p{
    color: #FFF;
    font-variant-numeric: lining-nums proportional-nums;
    font-feature-settings: 'dlig' on;
    font-family: "Noto Sans";
    font-size: 0.875em;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.00875em;
}



@media (max-width: 768px) {
    body{
        font-size: 14px;
    }
    .left-column .logo-container {
        display: none;
    }

    .grid-layout {
        grid-template-columns: 1fr;
        height: 100vh;
        display: flex;
        flex-direction: column;
       
    }

    .left-column {
        height: fit-content;
        padding: .5em 0 0 0;
        order: 2;
        align-items: center;
    }
    

    .right-column {
        order: 1;
        min-height: auto;
        flex: 1;
        
    }

    .right-column::after{
        background-image: url(/styles/assets/images/gradient-overlay.webp);
        background-size: cover;
        background-size: 200%;
        background-repeat: no-repeat;
    }

    .logo-container{
       padding: 0;
    }

    .logo-container img{
        width: 160px;
    }

    .logo-container h2{
        margin-top: 1em;
    }

    .contact-form-container {
        padding: 1.5em;
    }

    .menu-icon {
        display: block;
    }
}


@media (min-width: 769px)  {
    .right-column .logo-container {
        display: none;
    }
}



