/* ---GLOBAL STYLES--- */

* {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
    word-break: break-word;
    scroll-behavior: smooth;
}

:root {
    --black: #121212;
    --pink: #ff8ec8;
}

body {
    background: var(--black);
}

img,
svg {
    max-width: 100%;
}

a {
    color: white;
    cursor: pointer;
    width: fit-content;
    display: inline-block;
    text-decoration: none;
    transition: .5s;
}

button {
    cursor: pointer;
}

i {
    cursor: pointer;
    transition: .5s;
}

section {
    width: 100%;
}

h1,
h2 {
    color: white;
    font-size: 1.5vw;
    line-height: 1;
}

p,
li {
    color: white;
    font-size: 1vw;
    font-weight: 400;
}

ul {
    list-style-position: inside;
}

@media (max-width: 996px) {
    h1,
    h2 {
        font-size: 5vw;
    }
    p,
    li {
        font-size: 3vw;
    }
}


/* ---HEADER STYLES--- */

header {
    position: relative;
    z-index: 99;
}

header .header_box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3vw;
    padding: 1vw;
    background: var(--black);
}

header a {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: .25vw;
    color: white;
    font-size: 1vw;
}

header a:hover {
    color: var(--pink);
}

header i {
    color: var(--pink);
    transition: none;
}

@media (max-width: 996px) {
    header .header_box {
        gap: 8vw;
        padding: 2vw;
    }
    header a {
        font-size: 3.5vw;
    }
}


/* ---MAIN STYLES--- */

.main_section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 55vw;
    overflow: hidden;
}

.main_section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.main_section .mobile_video {
    display: none;
}

@media (max-width: 996px) {
    .main_section .desktop_video {
        display: none;
    }
    .main_section .mobile_video {
        display: block;
    }
    .main_section {
        height: 180vw;
    }
}


/* ---MEMBER STYLES--- */

.coming_section {
    padding: 10%;
}

.coming_section .coming_box {
    display: flex;
    flex-direction: column;
    gap: 2vw;
}

.coming_section .coming_box h1 {
    position: relative;
    font-size: 5vw;
    text-align: center;
    line-height: .5;
}

.coming_section .coming_box h1 span {
    font-family: "Square Peg";
    color: var(--pink);
    position: absolute;
    font-size: 5vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 0 0 1vw #000000;
    animation: pulse 5s alternate infinite;
}

.coming_section .subtitle_box h2 {
    color: var(--pink);
    font-size: 1.5vw;
    text-align: center;
}

@media (max-width: 996px) {
    .coming_section {
        padding: 50% 5%;
    }
    .coming_section .coming_box {
        gap: 5vw;
    }
    .coming_section .coming_box h1 {
        font-size: 13vw;
    }
    .coming_section .coming_box h1 span {
        font-size: 13vw;
        text-shadow: 0 0 3vw #000000;
    }
    .coming_section .subtitle_box h2 {
        font-size: 5vw;
    }
}


/* ---MEMBER STYLES--- */

.member_section {
    padding: 5% 20%;
}

.member_section .member_box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5vw;
}

.member_section .info_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1vw;
}

.member_section .contact_box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.member_section .form_box {
    background: white;
    border-radius: 1vw;
    overflow: hidden;
}

.member_section .title_box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2vw;
    background: var(--pink);
}

.member_section .title_box h2 {
    position: relative;
    color: var(--black);
    font-size: 2vw;
    text-align: center;
}

.member_section .title_box h2::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 250%);
    width: 5vw;
    height: .3vw;
    border-radius: 1vw;
    background: var(--black);
}

.member_section .input_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1vw;
    padding: 2vw;
}

.member_section .input_box input {
    font-size: 1vw;
    width: 25vw;
    padding: .8vw;
    border: none;
    border-radius: .25vw;
    background: #00000009;
}

.member_section .input_box input:focus-visible {
    outline: none;
    background: #ff8ec810;
}

.member_section .input_box button {
    color: white;
    width: 100%;
    font-size: 1vw;
    padding: .5vw;
    border: none;
    border-radius: .25vw;
    background: var(--pink);
    transition: .25s;
}

.member_section .input_box button:hover {
    background: #ff6db9;
}

@media (max-width: 996px) {
    .member_section {
        padding: 0% 10% 20% 10%;
    }
    .member_section .member_box {
        grid-template-columns: 1fr;
        gap: 5vw;
    }
    .member_section .info_box {
        gap: 3vw;
    }
    .member_section .info_box p {
        text-align: center;
    }
    .member_section .form_box {
        width: 100%;
        border-radius: 1vw;
    }
    .member_section .title_box {
        padding: 5vw;
    }
    .member_section .title_box h2 {
        font-size: 5vw;
    }
    .member_section .title_box h2::before {
        transform: translate(-50%, 300%);
        width: 10vw;
        height: .7vw;
    }
    .member_section .input_box {
        gap: 3vw;
    }
    .member_section .input_box input {
        font-size: 3vw;
        width: 100%;
        padding: 3vw;
    }
    .member_section .input_box button {
        font-size: 3vw;
        padding: 3vw;
    }
}


/* ---VIP STYLES--- */

.vip_section {
    padding: 10%;
}

.vip_section .vip_box {
    display: flex;
    flex-direction: column;
    gap: 2vw;
}

.vip_section .title_box,
.vip_section .button_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.vip_section .title_box h2 {
    color: var(--pink);
    font-size: 4vw;
    text-align: center;
}

.vip_section .title_box h2 span {
    color: white;
    font-size: 2vw;
}

.vip_section .button_box a {
    display: block;
    color: var(--black);
    font-size: 1vw;
    font-weight: bold;
    padding: 1vw 2vw;
    border: none;
    border-radius: .25vw;
    background: var(--pink);
    transition: .25s;
}

.vip_section .button_box a:hover {
    background: #ff6db9;
}

@media (max-width: 996px) {
    .vip_section {
        padding: 20% 10%;
    }
    .vip_section .vip_box {
        gap: 5vw;
    }
    .vip_section .title_box h2 {
        font-size: 8vw;
    }
    .vip_section .title_box h2 span {
        font-size: 5vw;
    }
    .vip_section .button_box a {
        font-size: 4vw;
        padding: 2vw 5vw;
    }
}


/* ---FOOTER STYLES--- */

footer {
    padding: 5% 0 0 0;
}

footer .footer_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3vw;
}

footer .logo_box {
    width: 10%;
}

footer .contact_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1vw;
}

footer .contact_box a {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: .25vw;
    color: white;
    font-size: 1vw;
}

footer .contact_box a:hover {
    color: var(--pink);
}

footer .contact_box i {
    color: var(--pink);
    transition: none;
}

footer .credits_box {
    display: flex;
    gap: 2vw;
    padding: 1vw;
}

footer .credits_box a {
    color: white;
    font-size: .7vw;
}

footer .credits_box a:hover {
    color: var(--pink);
}

@media (max-width: 996px) {
    footer {
        padding: 20% 0 5% 0;
    }
    footer .footer_box {
        gap: 10vw;
    }
    footer .logo_box {
        width: 30%;
    }
    footer .contact_box {
        gap: 5vw;
    }
    footer .contact_box a {
        font-size: 3.5vw;
        gap: 2vw;
    }
    footer .credits_box {
        flex-direction: column;
        align-items: center;
        gap: 4vw;
        padding: 1vw;
    }
    footer .credits_box a {
        font-size: 2.5vw;
    }
}


/* ---ANIMATIONS--- */

@keyframes pulse {
    from {
        transform: translate(-50%, -50%) scale(1) rotate(-3deg);
    }
    to {
        transform: translate(-50%, -50%) scale(.9) rotate(0);
    }
}