/* Menu Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f5f5f5;
    color: #000;
    line-height: 1.6;
}

.menu-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
}

.menu-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 20px;
    background: #fff;
    border: 1px solid #ddd;
}

.menu-header h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.menu-header p {
    font-size: 14px;
    color: #555;
}

.activity-menu {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
}

.activity-list {
    list-style: none;
}

.activity-item {
    margin-bottom: 15px;
}

.activity-item:last-child {
    margin-bottom: 0;
}

.activity-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border: 2px solid #01887c;
    text-decoration: none;
    color: #000;
    transition: all 0.2s;
}

.activity-item:not(.disabled) .activity-link:hover {
    background: #f0faf9;
    border-color: #016961;
}

.activity-item.disabled .activity-link {
    border-color: #ccc;
    background: #f9f9f9;
    cursor: not-allowed;
    opacity: 0.6;
}

.activity-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #01887c;
    color: #fff;
    font-family: 'Fredoka', sans-serif;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
}

.activity-item.disabled .activity-number {
    background: #999;
}

.activity-details h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #000;
}

.activity-details p {
    font-size: 13px;
    color: #666;
}

@media (max-width: 680px) {
    .menu-container {
        margin: 20px auto;
        padding: 10px;
    }

    .menu-header h1 {
        font-size: 24px;
    }

    .activity-link {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}
