/* GENERAL */
body {
    margin: 0;
    background-color: #000;
    color: white;
    font-family: Arial, sans-serif;
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #f4a259; /* pale orange, adjust later */
    color: black;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    z-index: 1000;
}

header .logo {
    font-size: 1.3rem;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: black;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* MAIN CONTENT */
main {
    padding-top: 100px; /* space so content isn't under header */
}

/* VIDEO ROW */
.video-row {
    display: flex;
    justify-content: center;
    gap: 40px; /* spacing between videos */
    margin: 40px 0;
}

.video-box video {
    width: 300px;
    height: auto;
    border: 2px solid #f4a259;
}

/* SECTIONS */
section {
    margin: 40px auto;
    width: 80%;
    max-width: 900px;
}

h2 {
    color: #f4a259;
    margin-bottom: 10px;
}

.contact p, .about p, .news p {
    line-height: 1.5;
}