/* Home page specific styles */

.home-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.welcome {
    width: 100%;
    max-width: 900px;
}

.welcome .page-title {
    font-size: 4.5em;
    text-shadow: 0 0 30px rgba(255, 192, 203, 0.3);
}

.menu-nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    max-width: 900px;
}

.menu-item {
    background: linear-gradient(
        135deg,
        rgba(192, 192, 192, 0.1),
        rgba(255, 192, 203, 0.1)
    );
    padding: 30px;
    border-radius: var(--ui-radius);
    border: var(--ui-border);
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
    color: #e8e8e8;
    backdrop-filter: blur(10px);
}

.menu-item:hover {
    border-color: #ffc0cb;
    transform: translateY(-5px);
    box-shadow:
        0 10px 40px rgba(255, 192, 203, 0.3),
        0 0 20px rgba(192, 192, 192, 0.2);
    background: linear-gradient(
        135deg,
        rgba(192, 192, 192, 0.15),
        rgba(255, 192, 203, 0.15)
    );
    color: #ffc0cb;
}

.menu-item h2 {
    margin: 0 0 10px 0;
    font-size: 2.5em;
    color: #ffc0cb;
    letter-spacing: 1px;
}

.menu-item p {
    margin: 0;
    color: #c0c0c0;
    font-size: 0.9em;
    font-weight: 300;
}

@media (max-width: 600px) {
    .welcome .page-title {
        font-size: 3em;
    }

    .menu-nav {
        gap: 20px;
    }
}
