/* Extracted from base.html on 2025-10-15 */
.lang-dropdown {
    position: relative;
    display: inline-block;
}
.lang-dropdown-trigger {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 2em;
    color: #617461;
    vertical-align: middle;
}
.lang-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background: #fffdfa;
    min-width: 80px;
    box-shadow: 0 2px 8px rgba(180, 140, 100, 0.08);
    border-radius: 12px;
    z-index: 100;
    padding: 1em;
}
.lang-dropdown:hover .lang-dropdown-content,
.lang-dropdown:focus-within .lang-dropdown-content {
    display: block;
}
.lang-dropdown-content form {
    margin: 0;
    padding: 0 12px;
}
.lang-dropdown-content button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    font-size: 1em;
}
.lang-dropdown-content .fi {
    font-size: 2em;
    margin-right: 8px;
}
.lang-button {
    font-size: 1.5em;
}
.menu-bar a {
    text-decoration: none;
    display: flex;
    align-items: center;
}
body {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    background: #f8f6f2;
    margin: 0;
    padding: 0;
}
.menu-bar {
    background: #fffdfa;
    border-bottom: 2px solid #b7c7b7;
    box-shadow: 0 2px 8px rgba(180, 140, 100, 0.08);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    position: sticky;
    top: 0;
    z-index: 100;
}
.menu-logo {
    height: 56px;
    max-width: 200px;
    object-fit: contain;
    display: block;
}
.menu-btn {
    background: #b7c7b7;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 28px;
    font-size: 1.5em;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(166,124,82,0.08);
    transition: background 0.2s;
    letter-spacing: 1px;
}
.menu-btn:hover {
    background: #7c8a7c;
    color: #fff;
}
.floral-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    height: auto;
    opacity: 0.7;
    pointer-events: none;
}
.ui {
    max-width: 900px;
    margin: 0 auto;
}
.script {
    font-family: 'Dancing Script', cursive;
    font-size: 1.3rem;
    color: #7c8a7c;
    margin-bottom: 18px;
    text-align: center;
}
.menu-item {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-weight: bold;
    font-size: 2em;
    text-decoration: none;
    color: #617461;
}
.nav-bar{
    display: flex;
    flex-direction: row;
    gap: 4em;
    align-items: center;
}

/* Burger menu - hidden by default on desktop */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-menu span {
    width: 30px;
    height: 3px;
    background: #617461;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger-menu.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile responsive styles for menu bar */
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .menu-bar {
        height: 60px;
        padding: 12px 16px;
        flex-direction: row;
        justify-content: space-between;
        position: sticky;
        top: 0;
    }
    
    .menu-logo {
        height: 40px;
    }
    
    .nav-bar {
        position: fixed;
        top: 0px;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: calc(100vh - 60px);
        background: #fffdfa;
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1rem;
        box-shadow: -2px 0 8px rgba(180, 140, 100, 0.15);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        padding-top: 75px;
    }
    
    .nav-bar.active {
        right: 0;
    }
    
    .menu-item {
        font-size: 1.5em;
    }
    
    .menu-btn {
        font-size: 1.3em;
        padding: 12px 24px;
        width: 100%;
    }
    
    .lang-dropdown {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .lang-dropdown-trigger {
        font-size: 1.5em;
    }
    
    .lang-dropdown-content {
        position: relative;
        box-shadow: none;
        margin-top: 0.5rem;
        left: auto;
        right: auto;
    }
}

@media (max-width: 480px) {
    .menu-bar {
        padding: 10px 12px;
        height: 4em;
        position: sticky;
        top: 0;
    }
    
    .nav-bar {
        padding-top: 75px;
        height: calc(100vh - 55px);
        width: 80%;
    }
    
    .menu-logo {
        height: 35px;
    }
    
    .menu-item {
        font-size: 1.3em;
    }
    
    .menu-btn {
        font-size: 1.2em;
        padding: 10px 20px;
    }
}

