body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: #f0f2f5;
    color: #333;
    scroll-behavior: smooth;
}

.menu-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #2980b9, #6dd5fa);
    text-align: center;
    animation: fadeIn 2s ease-in-out;
}

.menu-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: white;
    animation: slideUp 1.5s ease forwards;
}

.menu-content p {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: #ecf0f1;
    animation: slideUp 1.8s ease forwards;
}

.menu-content .btn {
    background-color: #34495e;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
    animation: slideUp 2s ease forwards;
}

.menu-content .btn:hover {
    background-color: #2c3e50;
    transform: scale(1.05);
}
@keyframes fadeIn { from {opacity:0;} to {opacity:1;} }
@keyframes slideUp { from {opacity:0; transform: translateY(50px);} to {opacity:1; transform: translateY(0);} }