:root {
    --brand-red: #cc0204;
    --text-dark: #333;
    --text-light: #f2f2f2;
    --bg-light: #f9f9f9;
    --bg-dark: #181d25;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-size: 1em;
    line-height: 1.6em;
}

#frontpage {


}

header .hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    color: var(--text-light);
    padding: 2rem;
    width: 80%;
    max-width: 1600px;
    min-height: 450px;
    margin: auto;
}

header::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 450px;
    background-image: url('/assets/bg-stor.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: 50%;
    filter: brightness(0.5);
    z-index: -1;
}

.hero h1 {
    margin: 0;
    font-size: 2.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

.booking-btn {
    display: inline-block;
    background-color: var(--bg-light);
    color: var(--brand-red);

    text-decoration: none;
    font-weight: bold;
    min-width: 120px;
    height: 30px;
    line-height: 33px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 5px;
    text-align: center;
    max-width: 150px;

    box-shadow: 1px 2px 5px #000;
    border: 1px solid rgba(0,0,0,0);
}

.booking-btn:hover {
    background-color: var(--brand-red);
    color: var(--bg-light);
    box-shadow: none;
    border: 1px solid #000;
}

#menu {
    width: 100%;
    background-color: var(--brand-red);
}
#menu_mobile {
    width: 100%;
    background-color: var(--brand-red);
}

nav {
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-align: center;
    min-height: 50px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 80%;
    max-width: 1600px;
    margin: auto;
    justify-content: space-between;
}

nav a {
    display: block;
    color: #fff;
    margin: 0 1rem;
    text-decoration: none;
    font-weight: bold;
    min-width: 120px;
    height: 30px;
    line-height: 33px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(0,0,0,0);
}

nav a:hover {
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0,0,0, 0.2);
}

nav .logo {
    display: block;
    color: #fff;
    margin: 0 1rem;
    text-decoration: none;
    font-weight: bold;
    min-width: 120px;
    height: 30px;
    line-height: 33px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 5px;
}

main {
    padding: 2rem;
    width: 80%;
    max-width: 1600px;
    margin: auto;
    background-color: var(--bg-light);
}

.price-list {
    list-style: none;
    padding: 0;
}

.price-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #ccc;
}

footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 1rem;
}

footer a {
    color: #fff;
}

footer .footer-info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 80%;
    max-width: 1600px;
    margin: auto;
    flex-wrap: wrap;
}

section .price_list tr td+td,
section .price_list tr td+td+td {
    padding-left: 10px;
    text-align: right;
}

section table.price_list td {
    border: none;
    padding-right: 5px;
    padding-left: 5px;
}

section .price_list tr:nth-child(odd) {
    background-color: rgba(0,0,0,0.1);
}

/*DISABLE BURGER/MOBILE MENU*/
#menu_mobile {
    display: none;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    nav a {
        display: block;
        margin: 0.5rem 0;
    }

    main {
        padding: 1rem;
    }
    #menu nav {
        flex-direction: column;
    }

    /*DISABLE DESKTOP MENU*/
    #menu {
        display: none;
    }

    /*ENABLE BURRGER/MOBILE MENU*/
    #menu_mobile {
        display: flex;
    }
}
