* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: Arial, sans-serif;
background-color: #000;
color: #fff;
}

/* NAVIGATION */
header {
padding: 20px 0;
background: rgba(0, 0, 0, 0.9);
}

.nav-buttons {
display: flex;
justify-content: center;
gap: 30px;
list-style: none;
}

.nav-buttons a {
padding: 12px 30px;
border-radius: 25px;
border: 2px solid gold;
text-decoration: none;
color: white;
font-weight: bold;
transition: 0.3s;
}

.nav-buttons a:hover,
.nav-buttons a.active {
background: gold;
color: black;
}

/* HERO */
.hero {
height: 90vh;
background-image:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("../Images/imageshero.jpg");

background-size: cover;
background-position: center;
background-repeat: no-repeat;

display: flex;
align-items: center;
justify-content: center;
}


.hero-content {
text-align: center;
}

.hero h1 {
font-size: 4.5rem;
letter-spacing: 4px;
}

.tagline {
color: gold;
font-size: 1.5rem;
margin: 15px 0 30px;
}

.hero-buttons {
    display: flex;
gap: 20px;
justify-content: center;
}

.btn {
padding: 15px 35px;
border-radius: 30px;
font-weight: bold;
text-decoration: none;
}

.primary {
background: gold;
color: black;
}

.secondary {
border: 2px solid white;
color: white;
}

/* ABOUT */
.about {
padding: 80px 20px;
background: #111;
text-align: center;
}

.about h2 {
color: gold;
margin-bottom: 20px;
}

/* CAST */
.cast {
padding: 80px 20px;
}

.cast h2 {
text-align: center;
color: gold;
margin-bottom: 40px;
}

.cast-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}

.cast-card {
background: #111;
padding: 20px;
text-align: center;
border-radius: 10px;
}

.cast-card img {
width: 100%;
border-radius: 10px;
}

.cast-card h3 a {
color: gold;
text-decoration: none;
}

.role {
font-style: italic;
color: #ccc;
}

/* FOOTER */
footer {
padding: 25px;
text-align: center;
}

footer img {
width: 120px;
margin-top: 10px;
}
