/* Burger Button Styles */
.burger-button {
    display: none; /* Hidden by default on larger screens */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001; /* Ensure it's above other content */
}

.burger-icon {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff; /* White color for the burger lines */
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Responsive Navigation Styles */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }

    .burger-button {
        display: block; /* Show burger button on small screens */
    }

    .nav ul {
        display: none; /* Hide navigation by default on small screens */
        flex-direction: column;
        width: 100%;
        text-align: center;
        background: #7b003e; /* Background for the mobile menu */
        position: absolute;
        top: 100%; /* Position below the header */
        left: 0;
        padding: 1rem 0;
    }

    .nav.active ul {
        display: flex; /* Show navigation when active */
    }

    .nav ul li {
        margin: 10px 0;
    }

    .nav a {
        padding: 10px 0;
    }
}

/* Fixes for lint warnings */
/* Removed vertical-align: middle from img, video, etc. as it's often ignored or causes issues */
audio, canvas, embed, iframe, img, object, svg, video {
    display: block;
}

/* Added standard appearance properties for form elements */
button, input[type="button"], input[type="reset"], input[type="submit"] {
    -webkit-appearance: button;
    appearance: button;
    background-color: initial;
    background-image: none;
}

[type="search"] {
    -webkit-appearance: textfield;
    appearance: textfield;
    outline-offset: -2px;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    appearance: button;
    font: inherit;
}
