/* CLEAN HEADER */
.header {
    width: 100%;
    background: #7a1f1f;
    padding: 15px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo img {
    height: 60px;
    width: auto;
}

.menu-toggle {
    width: 32px;
    height: 22px;
    cursor: pointer;
    position: relative;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
    content: "";
    position: absolute;
    width: 32px;
    height: 4px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

.menu-toggle span::before {
    top: -8px;
}
.menu-toggle span::after {
    top: 8px;
}

/* MOBILE MENU */
.mobile-menu {
    display: none;
    position: absolute;
    top: 70px;
    right: 15px;
    width: 180px;
    background: #ffefc2;
    border-radius: 10px;
    padding: 10px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.mobile-menu.open { display: block; }

.mobile-menu a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
}
.mobile-menu a:hover {
    background: #ffe993;
}
