@font-face {
    font-family: "Vimala New";
    src: url("../../../fonts/VimalaNew.otf");
}
@font-face {
    font-family: "Old Goudy 2";
    src: url("../../../fonts/GOUDOSC-1.ttf");
}

/* FORM START */
input{
    outline: none;
    border: 0;
}
input, .dynamic-select{
    background-color: whitesmoke;
    padding: 0.2rem 0.4rem;
    border-radius: 0.3rem;
}
/* FORM END */

*, a{
    font-family: var(--font);
    font-size: 1rem;
    color:  var(--font-color);
}
body {
    background-color: var(--color-bg);
}
h1, h1 *{
    font-family: "Old Goudy";
    font-weight: 500;
    font-size: clamp(32px, 3vw, 64px);
}
h1 {
    letter-spacing: -0.05rem;
    margin-inline: 0.5rem;
    text-align: center;
}

h2, h2 *{
    font-family: "Roboto";
    font-size: clamp(24px, 4vw, 48px);
    font-weight: 600;
}
h2 {
    position: relative;
    letter-spacing: 0.05rem;
    margin: 1rem;
    margin-bottom: 2rem;
    text-align: center;
}

h3, h3 *{
    font-family: "Roboto";
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 600;
    text-align: center;
}
p, p *{
    font-family: "Roboto";
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 400;
}
p {
    margin: 0;
    text-align: center;
}
main {
    position: relative;
    overflow-x: hidden;
}
header {
    padding: 1rem;
}
i{
    color: var(--accent-color);
}
section {
    width: 90%;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
section > *:not(.section-pill){
    margin-bottom: 2rem;
}
section > :last-child {
    margin-bottom: 4rem;
}

/* SECTION DARK */
.section-dark {
    position: relative;
    background-color: var(--color-bg-dark);
    z-index: 0;
    padding-block: 3rem;
}
.section-dark *{
    --border-color: var(--color-bg);
    --font-color: var(--color-bg);
}
.section-dark h2{
    color: var(--accent-color);
}
.section-dark::before,
.section-dark::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 5%; 
    z-index: -1;
}

.section-dark::before {
    top: 0;
    background-image: linear-gradient(to bottom, var(--color-bg), var(--color-bg-dark));
}

.section-dark::after {
    bottom: 0;
    background-image: linear-gradient(to top, var(--color-bg), var(--color-bg-dark));
}
/* SECTION DARK END*/

.dynamic-selected .c_name{
    display: none;
}
.dynamic-select .fa-solid.fa-caret-down{
    display: none !important;
}
button {
    border: 0;
    background-color: transparent;
    cursor: pointer;
}

section:not(:first-of-type),footer {
    justify-content: center;
    margin-top: 4rem;
}

section:first-of-type {
    margin-top: 0.5rem;
}
footer {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-inline: 2rem;
    width: -webkit-fill-available;
    padding-block: 2rem;
}

footer::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.2rem;
    background: var(--accent-color-bg);
    z-index: 1000;
}

footer a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding-inline: 1rem;
    padding-block: 0.5rem;
    transition: all 0.2s;
    text-decoration: none;
    color: var(--font-color);
}
footer i {
    font-size: 2rem;
}
footer a:hover {
    background-color: var(--color-link-hover);
    box-shadow: 0px 0px 5px 5px var(--color-link-hover);
}

.pill {
    background-color: var(--pill-background);
    color: var(--pill-color);
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
    margin-left: 0.3rem;
}

.catchphrase{
    font-size: calc(1rem + 0.2vw);
    font-weight: 300;
    position: relative;
    padding: 1rem;
    padding-bottom: 1.5rem;
    text-align: center;
    color: var(--font-color-dark);
}

.catchphrase::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.2rem;
    background: var(--accent-color-bg);
    z-index: 1000;
}
.catch{
    overflow: hidden;
    position: relative;
}
.catch::before{
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background-color: var(--accent-color);
    opacity: .5;
    filter: blur(50px);
    border-radius: 100%;
    height: 300px;
    overflow: visible;
    width: 50%;
    left: 50%;
    top: 20%;
    transform: translate(-50%, 50%);
}
#header-logo{
    display: grid;
    place-items: center;
}
#header-logo img{
    width: calc(10rem + 12%);
}

.button-cta {
    position: relative;
    text-align: center;
    
    font-family: 'Lexend';
    font-size: 1.25rem;
    font-weight: 500;
    
    display: inline-flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 0.6rem;
    padding-inline: 1.5rem;
    background-color: var(--accent-color);
    background: var(--gradient-buttons);
    border-radius: 0.5rem;
    transition: all 0.5s;
    margin-block: 2rem;
    cursor: pointer;
    box-shadow: 0px 0px 6px 1px inset var(--color-bg);

    /* outline: 3px solid var(--border-color); */
    white-space: nowrap;
}
.section-dark .button-cta{
    box-shadow: 0px 0px 6px 1px inset var(--color-bg-dark);
}
.button-cta, .button-cta i{
    color: var(--font-color-buttons);
}
.button-cta i.delta-icon{
    background-color: var(--font-color-buttons);
    width: 1rem;
    height: 1rem;
}
.button-cta:hover {
    scale: 1.05;
    box-shadow: 0px 0px 0px 0px inset transparent;
    /* outline: 4px solid var(--border-color); */
}
section .button-cta{
    max-width: 85%;
}
.span-cta{
    font-size: 1.25rem;
    font-family: var(--span-cta-font);
    text-align: center;
    display: flex;
    gap: 0.5rem;
}
@media screen and (max-width: 400px) {
    section .button-cta{
        max-width: 90%;
    }
    .span-cta{
        font-size: 1rem;
    }
}
section .button-cta, .modal-content button[type="submit"]{
    font-size: clamp(16px, 3vw, 24px);
}

@media screen and (max-width: 800px) {
}

@media screen and (min-width: 1200px) {
    section {
        width: 70%;
    }
    .catchphrase::after {
        width: 70%;
        transform: translate(20%, 0);
    }
    header {
        width: 100%;
    }
}
.brand-border{
    border: 0;
    background-image: var(--accent-bg-image);
    padding: 0.25rem;
    border: var(--border);
    border-radius: 1rem;
}
.brand-bg{
    border-radius: 1rem;
    background-color: var(--color-bg);
}
.section-pill{
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    margin-top: 2rem;
    border-radius: 1rem;
    background: linear-gradient(90deg, rgb(28, 28, 28) 10%, var(--color-bg) 100%);
    outline: 1px solid var(--border-color);
}
.section-dark .section-pill{
    background: linear-gradient(90deg, rgb(28, 28, 28) 10%, var(--color-bg-dark) 100%);
}
.button-cta::after{
    border-radius: 0.4rem;
}

/* VSL GRID */
.vsl-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: calc(1rem + 0.5%);
    width: calc(12rem + 60%);
    max-width: 90%;
}
.vsl-grid-item {
    /* box-shadow: 0 0px 10px var(--border-color); */
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1rem;
    font-family: "Roboto";
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
    min-height: 30svh;
    background-size: cover;
    background-position: center;
}
@media screen and (max-width: 600px){
    .vsl-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}
/* VSL GRID END */

/* LOGO INLINE */
.logo-inline-container{
    position: relative;
    width: 100%;
    display: grid;
    place-items: center;
    margin-top: 2rem;
}
.logo-inline-container::after{
    content: '';
    position: absolute;
    width: calc(18rem + 70%);
    max-width: 90%;
    height: 1px;
    background-color: var(--border-color);
    opacity: 0.5;
    translate: 0 -50%;
}
.logo-inline{
    width: calc(8rem + 30%);
    background-color: var(--color-bg);
    padding-inline: calc(1rem + 2%);
    z-index: 999;
}
.section-dark .logo-inline{
    background-color: var(--color-bg-dark);
}
/* LOGO INLINE END */

/* VIDEO STORY */
.video-story {
    display: grid;
    --gap: calc(1rem + 10vw);

    grid-template-columns: 
        calc(45% - (var(--gap) / 2)) 
        calc(55% - (var(--gap) / 2));

    gap: var(--gap);
    width: calc(12rem + 70%);
    max-width: 90%;
    align-items: center;
    margin-bottom: 3rem;
}

@media screen and (min-width: 801px){
    .video-story:nth-child(even) {
        grid-template-columns: 
            calc(55% - (var(--gap) / 2)) 
            calc(45% - (var(--gap) / 2));
    }
    .video-story:nth-child(even) > .video-story-text {
        order: 2;
    }
    .video-story:nth-child(even) > .video-story-video {
        order: 1;
    }
}

.video-story-text {
    font-family: "Roboto", sans-serif;
}
.video-story-text *{
    text-align: left;
}

.video-story-video iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 0.5rem;
}

@media screen and (max-width: 800px) {
    .video-story{
        grid-template-columns: repeat(1, 1fr) !important;
    }
}
/* VIDEO STORY END */

.section-bg{
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    #section-profile{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        margin: 1rem;
        gap: 1rem;
        width: calc(12rem + 70%);
        max-width: 90%;
    }
    #section-profile-selfie{
        scale: 0.75;
        border-radius: 1rem;
    }
    #section-profile-logo{
        width: 65%;
    }
    #section-profile p{
        text-align: left;
    }
    @media screen and (max-width: 800px){
        #section-profile{
            grid-template-columns: 1fr;
        }
    }

    #section-custom{
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 1rem;
        width: calc(12rem + 70%);
        max-width: 90%;
        align-items: flex-start;
    }
    @media screen and (max-width: 800px) {
        #section-custom{
            grid-template-columns: 1fr;
        }
    }

