/* ============================================
   Home Page Styles - FC Oppenwehe II
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #b32d06 0%, #8a2205 100%);
    min-height: 100vh;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header {
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

.logo {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

h1 {
    font-size: 2.5em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2em;
    opacity: 0.9;
}

.menu-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    padding: 30px;
    max-width: 500px;
    width: 100%;
}

.menu-item {
    display: block;
    padding: 20px 25px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: none;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-size: 1.1em;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(179, 45, 6, 0.1), transparent);
    transition: left 0.5s;
}

.menu-item:hover::before {
    left: 100%;
}

.menu-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(179, 45, 6, 0.3);
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.menu-item:active {
    transform: translateY(0);
}

.menu-icon {
    margin-right: 12px;
    font-size: 1.3em;
}

.menu-description {
    display: block;
    font-size: 0.85em;
    font-weight: normal;
    color: #666;
    margin-top: 5px;
}

@media (max-width: 600px) {
    h1 {
        font-size: 2em;
    }

    .logo {
        width: 100px;
        height: 100px;
    }

    .menu-container {
        padding: 20px;
    }

    .menu-item {
        padding: 15px 20px;
        font-size: 1em;
    }
}

footer {
    margin-top: 40px;
    text-align: center;
    color: white;
    opacity: 0.8;
    font-size: 0.9em;
}
