@import url("styles/section-with-list.css");
@import url("styles/gallery-preview.css");

:root {
    --ink: rgba(255,255,255,.87);
    --bg: #0A0613;
    --primary: #ff00e6;
    --secundary: #22f2fe;

    --gap: 18px;
    --radius: 18px;
}

body {
    font-family: Saira, system-ui, Avenir, Helvetica, Arial, sans-serif;
    line-height: 1.5;
    font-weight: 400;
    color: var(--ink);
    background: var(--bg);
    margin: 0;
    width: 100%;
}

main {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    max-width: 1600px;
}

h1 {
    margin: 0;
    font-size: 75px;
    font-weight: 900;
    padding: 30px 0 60px;
}

h2 {
    margin: 0;
    font-size: 75px;
    font-weight: 900;
    padding-bottom: 60px;
}

h3 {
    margin: 0;
    font-size: 30px;
    font-weight: 900;
    padding-bottom: 20px;
}

h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 900;
    padding-bottom: 30px;
}

p {
    margin: 0;
    font-size: 18px;
    padding-bottom: 30px;
}

p:last-child {
    padding-bottom: 0;
}

section {
    width: 100%;
    padding: 80px;
    box-sizing: border-box;
}

div.list > div:before {
    background-image: url("./static/icons/list-marker-white.svg");
    background-repeat: no-repeat;
    display: inline-block;
    content: " ";
    width: 20px;
    height: 20px;
    margin-right: 12px;
}

/*
    ********************************************
    Elements with secondary color
    ********************************************
 */
.secondary-color {
    color: var(--secundary);
    background: var(--bg);
}

.secondary-color > div.list > div:before {
    background-image: url("./static/icons/list-marker-sec.svg");
}

/*
    ********************************************
    Section with columns
    ********************************************
 */
section.columns {
    display: flex;
    gap: 20px;
}

/*
    ********************************************
    Elements with limited padding
    ********************************************
 */
.limited-padding {
    padding-top: 0;
    padding-bottom: 0;
}

/*
    ********************************************
    Section with single image
    ********************************************
 */
section.single-image {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/*
    ********************************************
    Video Title Slide
    ********************************************
 */
#section-video-title {
    padding: 0;
    width: 100%;
    position: relative;
}

#section-video-title > .video {
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#section-video-title > .video > video {
    object-fit: cover;
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

#section-video-title > .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.4;
}

#section-video-title > .content {
    position: relative;
    margin: 0 auto;
    text-align: center;
    padding: 90px 40px 140px;
}

/*
    ********************************************
    Section with corporate logos
    ********************************************
 */
#corpo-logos {
    padding-left: 30px;
    padding-right: 30px;
}

#corpo-logos img {
    width: 33%;
    transition: all 300ms ease-in-out;
}

#corpo-logos img:hover {
    transform: scale(1.1);
}

/*
    ********************************************
    Section with vibes
    ********************************************
 */
#vibe-slide-section {
    display: flex;
    padding: 0;
}

.vibe-slide {
    height: 800px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid #cccccc;
    overflow: hidden;

    flex: 1;
    transition: all 300ms ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.vibe-slide h2 {
    opacity: 0.7;
    transition: all 300ms ease-in-out;
}

.vibe-slide:hover h2 {
    opacity: 1;
}

.vibe-slide .onlyHover {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all 300ms ease-in-out;
    opacity: 0;
    margin: 0;
    width: 600px;
}

.vibe-slide:hover .onlyHover {
    opacity: 1;
}

.vibe-slide:hover {
    flex: 2;
}

.vibe-slide#overseers {
    background-image: url("./static/face-overseers.jpg");
}

.vibe-slide#digievo {
    background-image: url("./static/face-digievo.jpg");
}

.vibe-slide#dizorders {
    background-image: url("./static/face-dizorders.jpg");
}

.vibe-slide#hedonizers {
    background-image: url("./static/face-hedonizers.jpg");
}

.vibe-slide#swarm {
    background-image: url("./static/face-swarm.jpg");
}

/*
    ********************************************
    Section with sex
    ********************************************
 */
#section-sex ul {
    margin-bottom: 60px;
}


/*
    ********************************************
    Section with posters
    ********************************************
 */
#posters {
    display: flex;
    padding: 20px;
    gap: 20px;
}

#posters > div {
    flex: 1;
    overflow: hidden;
}

#posters > div > div {
    aspect-ratio: 1920 / 1080;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 300ms ease-in-out;
}

#posters > div:hover > div {
    transform: scale(1.1);
}

#posters > div:nth-child(1) > div {
    background-image: url("./static/ad01.jpg");
}

#posters > div:nth-child(2) > div {
    background-image: url("./static/ad02.jpg");
}

#posters > div:nth-child(3) > div {
    background-image: url("./static/ad03.jpg");
}


/*
    ********************************************
    Media
    ********************************************
 */

/*@media only screen and (max-width: 600px) {*/
/*    body {*/
/*        color: red;*/
/*    }*/
/*}*/

@media only screen and (max-width: 1200px) {
    h1 {
        font-size: 45px;
    }
    h2 {
        font-size: 30px;
    }
    h3 {
        font-size: 18px;
    }
    h4 {
        font-size: 18px;
    }
}

@media only screen and (max-width: 768px) {
    section {
        padding: 40px;
    }
    .columns {
        flex-direction: column;
    }
    #vibe-slide-section {
        flex-direction: column;
    }
    #vibe-slide-section > .vibe-slide {
        min-height: 450px;
    }
    #vibe-slide-section > .vibe-slide:hover {
        flex: 1;
    }
    #vibe-slide-section .onlyHover {
        opacity: 1;
        margin-bottom: 0;
    }
    #posters {
        flex-direction: column;
    }
    #corpo-logos img {
        width: 100%;
    }
}