/* Colors */

:root {
    --primary: white;
    --accent0: #ffe0b7;
    --accent1: #c5c4ca;
    --accent2: #18b3b9;
    --accent3: #9b2b27;
    --highlight: #f4ed47;
}


/* Body */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
}


/* Navbar */

.mobile-logo {
    display: none;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary);
    padding: 15px 30px;
    position: sticky;
    top: 15px;
    width: 80%;
    z-index: 1000;
    border-radius: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

.nav-center {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 1800px;
    position: relative;
    overflow: visible;
}

.nav-left,
.nav-right {
    display: flex;
    gap: 10%;
    flex: 1;
}

.nav-left {
    justify-content: flex-start;
}

.nav-right {
    justify-content: flex-end;
}

.nav-center li {
    position: relative;
}

.nav-center li a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 15px;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.nav-center li:not(.nav-logo):not(.btn-reservation):hover a,
.nav-center li.active:not(.btn-reservation) a {
    background-color: var(--accent2);
}

.nav-center .nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -35px;
    z-index: 10;
}

.nav-center .logo-wrapper {
    background-color: var(--primary);
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.nav-center .nav-logo img {
    height: 120px;
    display: block;
}

.btn-reservation a {
    background-color: var(--highlight);
    color: black;
    padding: 10px 15px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-reservation a:hover {
    background-color: #aea529;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    box-sizing: border-box;
    z-index: 1100;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: black;
    border-radius: 2px;
    transition: all 0.3s linear;
    transform-origin: 1px;
}


/* Seciton */

section {
    padding-top: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid #e0e0e0;
}

section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

section:nth-of-type(even) {
    background-color: #fafafa;
}


/* Footer */

.site-footer {
    background-color: #333;
    padding: 20px 20px 20px;
    color: #f8f8f8;
    font-size: 0.9rem;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    max-width: 60%;
    margin: 0 auto 20px;
    gap: 40px;
    flex-wrap: wrap;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--accent1);
}

.footer-column {
    flex: 1 1 200px;
    min-width: 150px;
}

.footer-column h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--primary);
    border-bottom: 2px solid var(--accent2);
    padding-bottom: 5px;
}

.footer-column p,
.footer-column a {
    margin: 7px 0;
    color: #c5c4ca;
    text-decoration: none;
}

.footer-column a:hover {
    text-decoration: underline;
}

.footer-bottom {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    font-size: 0.85rem;
    color: #c5c4ca;
}

.footer-bottom p {
    margin: 0;
}

/* Cookies Bar */

.cookie-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #222;
    color: #fff;
    padding: 15px;
    text-align: center;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 14px;
}

.cookie-bar.hidden {
    display: none !important;
}

.cookie-bar button {
    padding: 8px 16px;
    background: #4caf50;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 4px;
}

.cookie-bar button:hover {
    background: #45a049;
}

.cookie-bar a {
    color: #ff9800;
    text-decoration: underline;
}

.map-placeholder {
    width: 100%;
    height: 450px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 16px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
}

[data-map] iframe:not([src]) {
    display: none;
}

.map-info-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10%;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.cookie-bar .cookie-buttons button {
    padding: 8px 16px;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 4px;
}

#accept-cookies {
    background: #4caf50;
}

#accept-cookies:hover {
    background: #45a049;
}

#reject-cookies {
    background: #f44336;
}

#reject-cookies:hover {
    background: #d32f2f;
}



@media (max-width: 1600px) {

    .nav-left,
    .nav-right {
        gap: 5%;
    }

    .footer-columns {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 80%;
    }
}

@media (max-width: 1400px) {
    .mobile-logo {
        display: block;
        position: absolute;
        top: 10px;
        left: 20px;
        height: 50px;
        z-index: 1200;
    }

    .mobile-logo img {
        height: 50px;
        width: auto;
    }

    .navbar {
        padding: 0 30px;
        height: 70px;
    }

    .hamburger {
        display: flex;
        position: absolute;
        top: 20px;
        right: 30px;
        background: none;
        border: none;
        z-index: 1100;
    }

    .nav-center {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 1rem;
        background-color: var(--primary);
        position: fixed;
        top: 0;
        height: 100vh;
        width: 100%;
        max-width: none;
        padding: 0;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        box-shadow: -2px 0 12px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
        z-index: 1050;
    }

    .nav-center.open {
        transform: translateX(0);
    }

    .nav-left,
    .nav-right {
        display: contents;
    }

    .nav-center li {
        margin: 0.5rem 0;
    }

    .nav-center .nav-logo {
        display: none;
    }

    .btn-reservation a {
        display: block;
        text-align: center;
    }

    /* Footer Section */
    .footer-columns {
        max-width: 80%;
        gap: 0px;
    }

    .cookie-bar {
        display: block !important;
        text-align: center;
        left: -15px;
    }

    .cookie-bar p {
        margin: 0 auto 15px auto;
        max-width: 90%;
    }

    .cookie-buttons {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }

    .cookie-bar .cookie-buttons button {
        width: auto;
        min-width: 100px;
    }
}

@media (max-width: 550px) {
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.hamburger.open span:nth-child(1) {
    transform: rotate(37.5deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-37.5deg);
}