* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100%;
    color: #333;
}

/* Navbar */
.navbar {
    width: 100%;
    padding: 20px 50px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #007bff;
}

/* Hero Section */
.hero {
    background: url('../media/photos/poster.jpg') no-repeat center center/cover;
    height: 100vh;
    position: relative;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.6);
    height: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    /* space for navbar */
}

.overlay h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
}

.overlay p {
    font-size: 1.5em;
}

/* Main Section */
.intro {
    padding: 40px 20px;
    max-width: 800px;
    margin: auto;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #f4f4f4;
}