@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&display=swap');

* {
    margin: 0px;
    font-family: "Fredoka";
    font-weight: 500;
}

header {
    margin: 0%;
    padding: 0%;
}

body {
    background-color: #1a1a1a;
}

main{
    margin: 0;
    padding: 0;
}

.nav_bar {
    position: fixed;
    width: 100%;
    display: flex;
    background-color: #1a1a1a;
    align-items: center;
    justify-content: flex-end;
    height: 80px;
}

.nav_logo {
    padding: 0 25px;
    margin-right: auto;
    cursor: pointer;
}

.nav_buttons ul{
    margin: 0px;
    padding: 0px 25px;
}

.nav_buttons li{
    background-color: transparent;
    display: inline-block;
}

.nav_buttons a{
    color: #f2f2f2;
    text-decoration: none;
    text-align: center;
    display: block;
    padding: 10px;
    background-color: transparent;
}

.nav_buttons li:hover{
    background-color: #f2f2f2;
    color: #1a1a1a;
    border-bottom: red;
}

.nav_buttons a:hover{
    background-color: #f2f2f2;
    color: #1a1a1a;
}


.bg-image {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.dark-left {
    background: linear-gradient(77deg, rgba(0, 0, 0, 0.6), transparent 85%);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
    right: 27%;
}

.dark-bottom {
    background: linear-gradient(
        180deg,
        hsla(0, 0%, 8%, 0) 0,
        hsla(0, 0%, 8%, 0.15) 15%,
        hsla(0, 0%, 8%, 0.35) 29%,
        hsla(0, 0%, 8%, 0.58) 44%,
        #141414 68%,
        #141414
    );

    position: absolute;
    bottom: -30px;
    width: 100%;
    height: 15vw;
    z-index: -1;
}

.billboard {
    position: absolute;
    width: 36%;
    left: 4%;
    bottom: 28%;
}

.billboard img {
    max-width: 125%;
}

.title {
    color: #f2f2f2;
    font-weight: 700;
    font-size: 1.6vw;
    margin: 1vw 0;
}

.description {
    color: #f2f2f2;
    font-size: 1.2vw;
}

.carousel-bullets {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-bullets .bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel-bullets .bullet.active {
    background-color: #ffffff;
}

.fade {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.fade.show {
    opacity: 1;
}

.short-movie {
    padding: 50%;
}

.short-movie-title {
    color: #f2f2f2;
    display: inline-block;
}

.column {
    display: flex;
    flex-direction: column;
}

.movie-section{
    padding: 60% 0 3%;
}

.short-movie {
    padding: 0 5%;
    gap: 0.5vw;
}

.content {
    width: 18vw;
    display: inline-block;
    margin-right: 10px;
}

.movie {
    height: 200px;
    position: relative;
    overflow: hidden;
}
  
.movie svg {
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    bottom: 0;
    width: 50%;
}
  
.movie img {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: auto;
    width: 50%;
    height: auto;
    background-size: cover;
    object-fit: cover;
    object-position: top center;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.movie img:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.about {
    padding: 200px 0 0;
}

.about-section {
    background-color: #111;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.about-header h2 {
    font-size: 2.2em;
    margin-bottom: 10px;
}

.about-header p {
    color: #aaa;
    font-size: 1em;
    margin-bottom: 40px;
}

.about-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.about-group {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    text-align: left;
}

.about-group h3 {
    color: #fff;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
    margin-bottom: 10px;
    text-align: center;
}

.about-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-group ul li {
    margin: 8px 0;
    color: #ccc;
    font-size: 0.95em;
    text-align: center;
}