body {
    color: white;
    font-family: "Domine";
    margin: 0;
}

.navbar {
    align-items: center;
    background-color: rgb(85, 57, 38);
    box-shadow: 0 1px .2rem rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    position: sticky;
    text-shadow: 0 1px .2rem rgba(0, 0, 0, 0.7);
    top: 0;
    width: 100%;
    z-index: 999;
}

.navbar-container {
    align-items: center;
    display: flex;
    justify-content: space-between;
    max-width: 1600px;
    width: 100%;
}

.navbar-logo {
    color: white;
    font-size: 1.3rem;
    margin-left: 1rem;
}

.navbar-container .navbar-menu {
    display: flex;
    list-style: none;
    text-align: center;
}

.navbar-container .navbar-menu li a {
    border: 2px solid transparent;
    color: white;
    font-size: 1.3rem;
    padding: .9rem;
    text-decoration: none;
    transition: all 0.7s ease;
    white-space: nowrap;
}

.navbar-container .navbar-menu li a:hover, .navbar-container .navbar-menu li a.active {
    background-color: rgb(119, 84, 60); 
}

.navbar-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    display: none;
    padding: 10px;
}

.bar {
    background: white;
    display: block;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    width: 25px;
}
        
footer {
    align-items: center;
    background-color: rgb(85, 57, 38);
    box-shadow: 0 1px .2rem rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    font-size: 20px;
    justify-content: space-around;
    padding: 1rem;
    text-align: center;
    text-shadow: 0 1px .2rem rgba(0, 0, 0, 0.7);
}

#top {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-bottom: 3rem;
    width: 100%;
}

#tickets a {
    background-color: rgb(67, 114, 35);
    border-radius: 8px;
    box-shadow: 0 1px .2rem rgba(0, 0, 0, 0.7);
    padding: 1rem 2.5rem;
}

#tickets a:hover {
    background-color: rgb(95, 151, 58);
}

#tickets a:active {
    background-color: rgb(160, 197, 136);
}

#socials {
    align-items: center;
    display: flex;
    flex-direction: row;
}

#socials p {
    margin-right: -2rem;
}

#contact {
    align-items: center;
    display: flex;
    flex-direction: column;
}

#contact a {
    font-size: 1rem;
    padding: .2rem;
    text-decoration: underline;
}

#contact a:hover {
    background-color:rgb(119, 84, 60);
    border-radius: .2rem;
}

#bottom {
    color:rgb(172, 146, 128);
    font-size: .8rem;
}

#bottom a {
    color: rgb(172, 146, 128);
    text-decoration: underline;
}

footer a {
    color: white;
    text-decoration: none;
}

footer ul {
    display: flex;
    flex-direction: row;
    list-style-type: none;
}

footer .fa-brands {
    align-content: center;
    aspect-ratio: 1/1;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    margin: 0 .5rem;
    padding: .4rem;
    text-decoration: none;
}

footer .fa-brands:hover {
    background-color: rgb(134, 100, 77);
}

footer .fa-brands:active {
    background-color: rgb(160, 130, 110);
}

@media (max-width: 880px) {
    .navbar-container .navbar-menu {
        align-items: flex-start;
        background-color:rgb(85, 57, 38);
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
        display: none;
        flex-direction: column;
        gap: 1.7rem !important;
        height: 100vh;
        padding: 5rem 1.5rem;
        position: absolute;
        right: 0;
        top: 0;
        width: 250px;
    }

    .navbar-container .navbar-menu.active {
        display: flex;
    }

    .navbar-toggle {
        display: block;
        z-index: 999;
    }

    .navbar-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .navbar-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .navbar-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    #top {
        flex-direction: column;
    }

    #tickets {
        margin: 1rem 0;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 0 1rem;
    }

    .navbar-logo {
        font-size: 1.7rem;
    }

    .navbar-container .navbar-menu li a {
        font-size: 1.2rem;
        padding: 3px 15px;
    }
}