/* --------
    Menu
----------- */

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--text-header-col);
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
}

/* Burger Menu (only for small Screens) */
.burger-menu {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    will-change: transform;
    transition: transform 0.2s ease, color 0.2s ease;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    display: block;
    background: var(--text-header-col);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--bg-header-col);
    z-index: 2000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-menu-overlay.show {
    display: flex;
}

.mobile-menu-header {
    position: absolute;
    top: 0.2rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    color: var(--text-header-col);
    will-change: transform;
    transition: transform 0.2s ease, color 0.2s ease;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    text-align: center;
}

.mobile-nav-menu li {
    margin: 1rem 0;
}

.mobile-nav-menu li a {
    display: inline-block;
    color: var(--menu-marked-col);
    font-size: 1.5rem;
    text-decoration: none;
    will-change: transform;
    transition: transform 0.2s ease, color 0.2s ease;
}

/* Theme Toggle */

#theme-toggle {
    position: absolute;
    right: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text-header-col);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease;
}

/* Icon Switch */
.icon-sun {
    display: none;
}
.icon-moon {
    display: block;
}

body.dark-mode .icon-sun {
    display: block;
    animation: rotate-in 0.35s ease-out;
}

body.dark-mode .icon-moon {
    display: none;
}

/* Rotate Sun */
@keyframes rotate-in {
    from { transform: rotate(-90deg) scale(0.5); opacity: 0; }
    to { transform: rotate(0) scale(1); opacity: 1; }
}

/*---------------
  Opening Hours
----------------- */

.opening-hours {
    max-width: 550px;
    margin: 1.5rem auto 3rem;
    padding: 1.4rem 1.6rem;
    background: var(--oh-bg-col);
    border-radius: var(--corner-strength);
    box-shadow: 0 2px 8px var(--shadow-oh-col);
    font-size: 1rem;
}

.opening-hours .oh-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--lines-oh-col);
}

.opening-hours .oh-row:last-child {
    border-bottom: none;
}

.oh-day {
    font-weight: 600;
    color: var(--oh-day-text-col);
}

.oh-season {
    font-weight: normal;
    color: var(--oh-text-col);
}

.oh-time {
    color: var(--oh-text-col);
}

/*-----
  Map
------- */

.map-container {
    max-width: 800px;
    margin: 2rem auto;
    border-radius: var(--corner-strength);
    overflow: hidden;
    box-shadow: 0 2px 8px var(--shadow-map-col);
    background: var(--bg-map-col);
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: 0;
}

/* ---------
    Banner
------------ */

.banner {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* ---------------
    Highlight-box
------------------ */

.highlight-box {
    max-width: 800px;
    margin: 2rem auto 2rem;
    padding: 1rem 1rem;
    background: var(--highlight-box-bg-col);
    border-radius: var(--corner-strength);
    box-shadow: 0 2px 8px var(--shadow-highlight-box-col);
    color: var(--highlight-box-text-col);
    font-size: 1rem;
}