@font-face {
    font-family: 'Eastwood';
    src: url('Eastwood.ttf');
}

@font-face {
    font-family: 'Vogue';
    src: url('Classyvogueregular.ttf');
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    color: black;
}

.background {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: black;
    background-image: url("Images/Background.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    filter: brightness(0.6);
    z-index: -1;
}

.content-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.content {
    max-width: 90%;
    width: 100%;
}

h1 {
    font-family: 'Eastwood', serif;
    font-weight: normal;
    color: white;
    margin-top: 0;
    font-size: 5.2vw; /* Responsive font size */
    max-width: 100%;
    word-wrap: break-word;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    flex-wrap: wrap;
    gap: 20px;
}

nav ul li {
    margin: 10px;
}

nav ul li a {
    font-family: 'Vogue';
    font-size: 1.3em;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    padding-bottom: 5px;
}

nav a:hover {
    color: #181818;
    border-bottom: 3px solid #181818;
}

footer {
    position: fixed;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-size: 0.8em;
    color: #181818;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 10vw;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }
}

/* Subtle Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.content {
    animation: fadeIn 1.5s ease-out;
}
