@font-face {
    font-family: "Acumin Pro";
    src: url("../assets/fonts/Acumin-RPro.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Acumin T Pro";
    src: url("../assets/fonts/Acumin-TPro.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: "Acumin Pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    background-color: black;
    color: #cbc5d3;
}

.hero {
    position: relative;
    text-align: center;
    width: 100%;
}

.intro {
    position: relative;
    text-align: center;
    width: 100%;
    display: block;
    margin: 0 auto; /* Centers the image */


    margin-top: 80px;
    margin-bottom: 80px;
}

.intro p {

    font-family: "acumin-pro", sans-serif;
    font-weight: 200;
    font-style: normal;
    letter-spacing: -0.06rem;
    font-size: 1.1rem;
    transform: scaleY(1.3); /* Adjust the number to stretch vertically */
    display: inline-block;
    line-height: 1em;
    margin-bottom: 0px;
}

.hero-img {
    width: 100%;
    max-width: 1040px;
    height: auto;
    display: block;
    margin: 0 auto; /* Centers the image */
}

.content {
    background-color: black;
    padding: 0 5%;
    max-width: 1040px;
    display: block;
    margin: 0 auto; /* Centers the image */
}

.screener {
    background-color: rgb(0, 0, 0);
    padding: 0;
    width: 90%;
    display: block;
    margin: 0 auto; /* Centers the element horizontally */
    height: 100vh; /* Makes the element's height fill the viewport */
    display: flex;
    justify-content: center; /* Centers content horizontally */
    align-items: center; /* Centers content vertically */
}


.description {
    width: 100%;
    max-width: 1040px;
    display: block;
    margin: 0 auto; /* Centers the image */
}

.description img {
    width: 100%;
}

.logo {
    margin: 60px 0;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 132px;
}


.festivals {
    margin: 66px 0 58px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    max-width: calc(4 * 200px + 3 * 8px);
    margin-left: auto;
    margin-right: auto;
    row-gap: 20px !important;
}

.festivals img {
    width: 200px;
    height: auto;
}


.section {
    width: 100%;
    padding: 20px 0;
}

.content .section:last-child {
    padding-bottom: 0;
}

.section video, .section img {
    max-width: 100%;
    border-radius: 5px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .content {
        padding: 0 20px!important;
    }

    .logo img {
        width: 200px;
    }

    .section {
        padding: 10px 0;
    }

    .hero-img {
        height: auto;
    }
}
