/* Custom Styles & Animations */

/* Smooth Scrolling is handled by Tailwind 'scroll-smooth' on html */

/* Font Face: Trajan Pro */
@font-face {
    font-family: 'Trajan Pro';
    src: url('TrajanPro-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Trajan Pro';
    src: url('TrajanPro-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

/* Custom Class for Trajan Font */
.font-trajan {
    font-family: 'Trajan Pro', serif;
}


/* Fade In Up Animation (Hero) */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-100 {
    animation-delay: 0.1s;
    transition-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
    transition-delay: 0.2s;
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar Scroll Effect */
nav.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

/* Sticky Newsletter Animation */
#sticky-newsletter.visible {
    transform: translateY(0);
}