@charset "utf-8";



body {
    margin: 0;
    font-family: Verdana, Geneva, sans-serif;
    background-color: #0b0c10;
    color: #f0f0f0;
}

header {
    background-color: #1f2833;
    text-align: center;
    padding: 20px;
}

h1 {
    margin: 0;
    color: #66fcf1;
}

nav {
    background-color: #45a29e;
    text-align: center;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    display: block;
    padding: 15px 25px;
    text-decoration: none;
    color: black;
    font-weight: bold;
}

nav ul li a:hover {
    background-color: #66fcf1;
}

main {
    padding: 20px;
}

section {
    margin-bottom: 30px;
}



.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.gallery img {
    width: 300px;
    height: auto;
    border-radius: 10px;
}



table {
    width: 100%;
    border-collapse: collapse;
}

table, th, td {
    border: 1px solid #66fcf1;
}

th, td {
    padding: 10px;
    text-align: center;
}



form {
    max-width: 600px;
    margin: auto;
}

input, select, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
}

input[type="submit"] {
    background-color: #45a29e;
    border: none;
    font-weight: bold;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #66fcf1;
}



@media (max-width: 768px) {

    nav ul li {
        display: block;
    }

    .gallery {
        flex-direction: column;
        align-items: center;
    }

    .gallery img {
        width: 90%;
    }
}


.gallery img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}


.crew-member {
    text-align: center;
}

.crew-member p {
    margin-top: 8px;
    font-weight: bold;
    color: #66fcf1;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none; 
}