/* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7; /* Light background */
    color: #333;
}

.container {
    width: 80%;
    margin: 0 auto;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px; /* Set a fixed height for the header */
    background-color: #122542; /* Moeller blue */
    color: white;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center; /* Center the nav links */
    align-items: center; /* Center items vertically */
    padding: 0 20px; /* Add some horizontal padding */
}


/* Navigation styling */
header nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center; /* Keep nav items centered */
    align-items: center;
    width: 100%; /* Ensure navigation spans across the remaining space */
}

header nav ul li {
    margin: 0 15px; /* Space between nav items */
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

/* Hero Section */
.hero {
    background: url('hero-image.jpg') no-repeat center center/cover;
    color: white;
    padding: 100px 0;
    text-align: center;
    background-color: #122542; /* Moeller blue */
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #F1C232;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Sections */
.section {
    padding: 50px 0;
    background-color: #fff;
}

.section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #003366; /* Moeller blue */
}

/* Episode List */
.episode-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.episode {
    width: 45%;
    margin-bottom: 20px;
    margin-left: 100px;
    background-color: #f4f4f4;
    padding: 100px 0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease; /* Smooth transition */
}

.episode:hover {
    background-color: #e2e2e2; /* Slight hover effect */
    transform: scale(1.05); /* Scale the element by 5% */
}


/* Footer */
footer {
    background-color: #003366; /* Moeller blue */
    color: white;
    padding: 20px 0;
    text-align: center;
    width: 100%; /* Ensure footer stretches across the screen */
}

footer ul {
    list-style-type: none;
    padding: 0;
}

footer ul li {
    display: inline;
    margin: 0 10px;
}

footer ul li a {
    color: white;
    text-decoration: none;
}
