/* General Styles */
body {
    margin: 0;
    font-family: 'Century Gothic', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    text-align: center; /* Center text globally */
}

h1, h2 {
    margin: 0;
    padding: 20px;
    font-variant: small-caps; /* Small caps for text */
    text-transform: uppercase; /* Capitalize text */
}

p {
    margin: 20px;
}

/* Sticky Header with Large Background */
#banner {
    background-color: #000;
    padding: 20px 0; /* Adjust padding to ensure proper alignment */
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    display: flex; /* Use flexbox to center content */
    flex-direction: column; /* Align text in a column format */
    justify-content: center; /* Center the banner text horizontally */
    align-items: center; /* Center the banner text vertically */
}

/* Banner Text Styling */
#banner h1 {
    font-size: 48px;
    color: white;
    text-transform: capitalize; /* First letter capitalized, rest in small caps */
    font-variant: small-caps; /* Small caps for the rest of the text */
    font-weight: 300; /* Thinner text */
    text-align: center; /* Center the text */
    margin: 0; /* Remove any margins that could cause shifts */
    line-height: 1.2; /* Standard line height to avoid any vertical offsets */
}

/* Styling for "MegaloVision" */
.megalo-vision {
    font-weight: ; /* Heavier weight for MegaloVision */
}

/* Styling for "Films" */
.films {
    font-weight: 100; /* Lightest weight for Films */
    font-size: 24px; /* Smaller size for contrast */
    display: flex;
    align-items: center;
    justify-content: center; /* Center the content */
    gap: 10px;
    text-transform: uppercase; /* Ensure Films is in all caps */
}

/* Stylish Lines */
.line {
    display: inline-block;
    width: 50px;
    height: 2px;
    background-color: white;
}
/* Fade-in Effect */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
