@font-face {
    font-family: "Barlow";
    src: url('./fonts/Barlow-Regular.ttf');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Barlow Semibold";
    src: url('./fonts/Barlow-SemiBold.ttf');
    font-weight: 600;
    font-style: bold;
}

:root {
    --font-weight-bold: 600;
    --color-white: #ffffff;
    --color-black: #000000;
}

p {
    padding: 0;
    margin: 0;
}

a {
    color: var(--color-white);
}

@media only screen and (max-width: 768px) {
    .desktop {
        display: none;
    }
    .socials {
        display: block;
    }
}

@media only screen and (min-width: 768px) {
    .mobile {
        display: none;
    }
}

* { 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}


body {
    min-height: 100vh;
    padding: 0;
    margin: 0;
    background-color: var(--color-black);
    color: var(--color-white);
    font-family: "Barlow", Helvetica, sans-serif;
}

main {
    width: 100%;
    height: 100vh;
    background-image: url(./images/ram-dass.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: sticky;
    overflow-y: scroll;
}

h1 {
    font-size: 1.3rem;
    font-family: "Barlow Semibold", Helvetica, sans-serif;
    text-align: center;
    width: 100%;
    padding: 30px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,1)), to(rgba(0,0,0,0)));
    background: -o-linear-gradient(top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);    
}

lottie-player {
    width: 90%;
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
}

@media only screen and (max-height: 810px) {
    lottie-player.desktop {
        max-width: 1050px;
    }
}

.footer {
    width: 100%;
    padding: 30px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0,0,0,1)), to(rgba(0,0,0,0)));
    background: -o-linear-gradient(bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);    
}

.footer--invite {
    text-align: center;
    font-size: 1.3rem;
    margin: 20px 0;
}

.footer--socials {
    display: flex;
    justify-content: center;
    gap: .9rem;
    align-items: center;
    font-size: 1rem;
}

@media only screen and (max-width: 768px) {
    .footer--socials {
        display: block;
    }
}

.footer--ig {
    display: flex;
    align-items: center;
    column-gap: 1rem;
}

@media only screen and (max-width: 768px) {
    .footer--ig {
        flex-direction: row;
        justify-content: center;
        margin-bottom: 1rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
}

.footer--ig p a img {
    size: 11px;
}

.footer--legal {
    margin: 10px 0;
}

.footer--legal p {
    font-size: .9rem;
    text-align: center;
}

.footer--external-link {
    text-align: center;
}

#legal {
    text-align: right;
}

section .content {
    z-index: 1;
}

section.dark .content {
    position: relative;
    background-color: rgba(0, 0, 0, 0.9);
    height: 0;
    overflow: hidden;
    margin: 0;
}
section.dark .content.active {
    height: inherit;
    padding: 2.35rem;
    top: 100%;
}

section.dark h1, section.dark h3, section.dark p {
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}
section.dark::before, section.dark::after {
    display: none;
}
section.dark h1 {
    font-size: 1.9rem;
}
section.dark h3 {
    font-size: 1.4rem;
}
section.dark p, section.dark p a, section.dark ul, section.dark ol {
    font-size: .9rem;
}

section.dark ul {
    margin-top: 0.625rem;
    list-style: circle;
    padding-inline-start: 40px;
}
section.dark ul li {
    line-height: normal;
}

#mc_embed_signup {
    text-align: center;
}

#mc_embed_signup_scroll {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 3px;
    justify-content: center;
}

#mc_embed_signup input {
    background-color: var(--color-black);
    padding: 6px 12px;
    border: 1px solid white;
    color: var(--color-white);
    border-radius: 4px;
}

#mce-responses {
    display: flex;
    align-items: center;
}