:root {
    --primary-color: hsl(30, 45%, 25%); /* Dark Wood #5c3f23 */
    --secondary-color: hsl(30, 35%, 65%); /* Light Wood */
    --transparent-secondary-color: hsla(30, 35%, 65%, 0.9); /* Light Wood */
    --accent-color: hsl(45, 60%, 50%); /* Golden Yellow */
    --neutral-dark: hsl(30, 10%, 40%); /* Stone Gray */
    --neutral-light: hsl(30, 20%, 85%); /* Sand Beige #e0d8d1 */
    --highlight-color: hsl(75, 30%, 40%); /* Olive Green */
    --contrast-accent-color: hsl(190, 70%, 40%); /* Turquoise Blue (Contrasting Accent) */
    --transparent-color: hsla(0, 0, 0, 0.5);
}

body {
    background: url(../img/wallpaper.jpeg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    background-attachment: fixed;
    font-family: Arial, sans-serif;
    color: var(--neutral-dark);
    margin: 0;
    padding: 0;
    padding-bottom: 100px;
    min-height: 100vh;
}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    gap: 20px;
    width: 100%;
}

ul, li {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.slider {
    margin: 0 auto;
    position: relative;
    width: 100%;
    max-width: 800px;
    height: auto;
    overflow: hidden;
}

ul.slider li {
    display: none;
    width: 100%;
    height: auto;
    text-align: center;
}

ul.slider li:first-child {
    display: block;
}

ul.slider li video {
    display: block;
    margin: 0 auto;
    object-fit: cover;
    width: 100%;
    height: auto;
}

ul.menu-galeria {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.menu-galeria li {
    display: inline-block;
}

.menu-galeria li a {
    display: inline-block;
    color: var(--secondary-color);
    text-decoration: none;
    background-color: var(--primary-color);
    padding: 10px;
    width: 20px;
    height: 20px;
    font-size: 20px;
    border-radius: 100%;
}

@media (max-width: 768px) {
    ul.slider {
        width: 100%;
        max-width: none;
        height: auto;
        overflow: hidden;
    }

    ul.slider li video {
        width: 100%;
        height: auto;
        max-height: 100%;
    }
}
