/* BASIC RESET */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    background: linear-gradient(
        135deg,
        #fde2e4,
        #fadadd,
        #ffe5d9,
        #fff1e6
    );
}

/* HEADER */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.8);
}

/* TITLE */
.title {
    flex: 1;
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    color: #5a2a27;
}

/* MENU */
.menu-container {
    position: relative;
    z-index: 9999;
}

.menu-btn {
    background: #ffb4a2;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
}

/* DROPDOWN */
.dropdown {
    position: absolute;
    right: 0;
    top: 50px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    width: 160px;
    display: none;
}

.dropdown a {
    display: block;
    padding: 12px;
    text-decoration: none;
    color: #333;
    text-align: center;
}

.dropdown a:hover {
    background: #ffe5d9;
}

/* CONTENT */
.content {
    padding: 40px;
    text-align: center;
}

/* LOGO — BASE (DESKTOP) */
.logo {
    width: 40px;
    height: 40px;
    flex-shrink: 0;        /* prevents flexbox stretching */
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}


@media (max-width: 600px) {

    .logo {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
    }

    .title {
        font-size: 18px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .menu-btn {
        font-size: 24px;
        padding: 14px 20px;
    }
}

/* ===== SCROLLING NOTICE STRIP (FINAL & GUARANTEED) ===== */
.scroll-strip {
    width: 100%;
    background-color: #4b1f3a; /* dark maroon / purple */
    height: 36px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.scroll-marquee {
    width: 100%;
    color: #ffffff;
    font-size: 14px;
    line-height: 36px;
    background-color: #4b1f3a; /* FORCE background */
}


