body {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    background: #f7f5f0;
    color: #2e2e2e;
}

/* Header */
.header {
    text-align: center;
    padding: 40px 20px 20px;
    position: relative;
    z-index: 1;
    background-color: rgba(255,255,255,0.5);
}

.header h1 {
    font-family: "Playfair Display", serif;
    font-size: 2.2rem;
    margin: 0;
    z-index: 1;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../background.jpg"); /* optional */
    background-size: cover;
    background-position: center;
    filter: blur(6px) brightness(0.8);
    z-index: 0;
}

.subtitle {
    margin-top: 6px;
    font-size: 1.1rem;
    color: #555;
}

/* Menü */
.menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px 20px;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Fade-in helpers for card/menu items */
.card,
.menu-item {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 360ms ease, transform 360ms ease;
}

.card.is-visible,
.menu-item.is-visible {
    opacity: 1;
    transform: none;
}

.menu-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    align-items: center;
    gap: 16px;
    background: white;
    padding: 24px;
    border-radius: 16px;
    text-decoration: none;
    color: #2e2e2e;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.menu-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}

.icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #222;
    border-radius: 50%;
    background: rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.06);
}

.icon svg {
    width: 28px;
    height: 28px;
    display: block;
}

.menu-item h2 {
    margin: 0;
    font-size: 1.4rem;
    /* vertically center the h2 to match the icon's middle */
    display: inline-block;
    line-height: 56px;
}

.menu-item p {
    margin: 0;
    color: #555;
}