/* Custom CSS to complement Tailwind */

body {
    font-family: 'DM Sans', sans-serif;
}

.font-brand {
    font-family: 'Lora', serif;
}

/* Modal Styling */
#cookie-modal > div {
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Animations */
/* Existing animations with slight adjustments */
.animate-fade-in {
    animation: fadeIn 1s ease-in-out;
}

.animate-slide-up-delay {
    animation: slideUp 0.8s ease-out 0.2s backwards;
}

.animate-pulse-once {
    animation: pulse 1.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}


/* New Animations for Hero Section */
.animate-fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
}

.animate-scale-in {
    animation: scaleInElement 1s ease-out forwards 0.3s; /* Delay for image */
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleInElement {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Specific item fade-in for grid (optional, can be removed if not needed) */
.animate-fade-in-item {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}
.animate-fade-in-item.delay-100 { animation-delay: 0.1s; }
.animate-fade-in-item.delay-200 { animation-delay: 0.2s; }


/* Background Pattern */
.bg-pattern-dots {
    background-image: radial-gradient(#ffffff20 1px, transparent 1px);
    background-size: 20px 20px;
}