@font-face {
    font-family: "In My Closet";
    src: url("../assets/fonts/Inmyc___.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "Super Pandora";
    src: url("../assets/fonts/Super Pandora.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "Super Mindset";
    src: url("../assets/fonts/Super Mindset.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

html {
    min-height: 100%;
    background: linear-gradient(180deg, #181818, #292929);
    background-repeat: no-repeat;
    background-attachment: fixed;
}

body {
    margin: 0;
    min-height: 100vh;
    background: transparent;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: #0707a1;
}

.festival-name {
    color: white;
    font-family: "In My Closet", sans-serif;
    font-size: 36px;
    letter-spacing: 3px;
}

.festival-date {
    color: white;
    font-family: "Super Mindset", sans-serif;
    font-size: 22px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-family: "Super Pandora", sans-serif;
    font-size: 24px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff7427;
}

.poster-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 0;

}

.poster {
    width: 500px;
    max-width: 90%;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.poster:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
}

.poster {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer {
    display: flex;
    justify-content: center;
    gap: 5px;
    padding: 50px 0;
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;

}

.copyright {
    margin-bottom: 15px;
    color: #ffffff;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 25px;
}

.social-links a {
    color: white;
    font-size: 32px;
    transition: 0.25s;
}

.social-links a:hover {
    color: #ff7427;
    transform: scale(1.15);
}

.about-header {
    text-align: center;
    color: white;
}

.about-section {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    color: white;
}