/* General */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f5f2;
    color: #4a2c2a;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Hero */
.hero {
    background: url('hero_coffee.jpg') no-repeat center/cover;
    padding: 80px 20px;
    color: white;
    font-size: 1.5em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Oferte */
.offers {
    margin: 40px 0;
}
.offer {
    display: inline-block;
    width: 300px;
    margin: 20px;
    padding: 20px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
}
.offer img {
    width: 100%;
    border-radius: 10px;
}
.offer p {
    margin-top: 10px;
    font-size: 1.2em;
}

/* Animație fade-in */
.fade-in {
    animation: fadeInUp 1s ease-out forwards;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* QR Info */
.qr-info {
    text-align: center;
    margin: 40px;
}

.qr-info p {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.qr-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}