* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

.font-merriweather {
    font-family: 'Merriweather', serif;
}

.font-poppins {
    font-family: 'Poppins', sans-serif;
}

#cookieBanner {
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    #mobileMenu {
        animation: fadeIn 0.3s ease-in;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
