/* Основни настройки */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* Фон с blur ефект */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('coffee2.jpg') no-repeat center center/cover;
    filter: blur(8px);
    z-index: -1;
}

/* Хедър */
header {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

/* Контейнер за бутоните */
.coffee-container {
    display: flex;
    justify-content: center;
    gap: 50px; /* Още по-голямо разстояние между бутоните */
    padding: 50px;
}

/* Стил на бутоните */
.coffee-button {
    width: 250px; /* Увеличен размер */
    height: 350px; /* По-високи бутони */
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

/* Фонови изображения (с поправени разширения) */
.coffee-button:nth-child(1) { background: url('newcoffeeworld.webp') no-repeat center center/cover; }
.coffee-button:nth-child(2) { background: url('alfrida.jpeg') no-repeat center center/cover; }
.coffee-button:nth-child(3) { background: url('lipite.webp') no-repeat center center/cover; }
.coffee-button:nth-child(4) { background: url('nirvana.jpg') no-repeat center center/cover; }

/* Ефект при ховър */
.coffee-button:hover {
    transform: scale(1.05);
}

/* Текст под бутоните */
.coffee-overlay {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    width: 100%;
    text-align: center;
    font-size: 20px;
    border-radius: 5px;
}
