@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    /* Arka plan görseli URL'ini buraya ekledim */
    background: url('https://i.imgur.com/zmERzaE_d.webp?maxwidth=760&fidelity=grand') no-repeat center center/cover; 
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden; 
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); 
    backdrop-filter: blur(5px); 
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2; 
    padding: 20px;
    max-width: 600px; 
    width: 100%;
    box-sizing: border-box;
}

.top-logo {
    margin-bottom: 30px; /* Logo ile başlık arası boşluk */
}

.top-logo img {
    width: 120px; /* Logo boyutu */
    height: auto;
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.5)); /* Hafif bir gölge efekti */
}

.menu-header {
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.menu-header h1 {
    font-size: 2.5em;
    font-weight: 600;
    margin-bottom: 10px;
}

.menu-header p {
    font-size: 0.9em;
    opacity: 0.8;
}

.button-grid {
    display: flex;
    justify-content: center;
    gap: 30px; 
    flex-wrap: wrap; 
}

.menu-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 180px; 
    height: 180px; 
    background: rgba(255, 255, 255, 0.1); 
    border: 1px solid rgba(255, 255, 255, 0.2); 
    border-radius: 15px; 
    text-decoration: none;
    color: #fff;
    font-size: 1.2em;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px); 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
}

.menu-button i {
    font-size: 3.5em; 
    margin-bottom: 15px;
    color: #ffd700; 
}

.menu-button span {
    letter-spacing: 1px;
}

.menu-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px); 
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.footer-logo {
    margin-top: 60px;
    opacity: 0.7;
}

.footer-logo i {
    font-size: 2em;
    color: #ffd700; 
}

/* Responsive düzenlemeler */
@media (max-width: 500px) {
    .top-logo img {
        width: 100px;
    }

    .menu-header h1 {
        font-size: 2em;
    }

    .button-grid {
        flex-direction: column; 
        align-items: center;
        gap: 20px;
    }

    .menu-button {
        width: 150px;
        height: 150px;
        font-size: 1em;
    }

    .menu-button i {
        font-size: 3em;
        margin-bottom: 10px;
    }
}