/* Minimalist Custom CSS */

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar for a more editorial feel */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #F5F5F0;
}

::-webkit-scrollbar-thumb {
    background: #1A1A1A;
}

::-webkit-scrollbar-thumb:hover {
    background: #8C1C13;
}

/* Reveal Animation Keyframes used in Hero */
@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-up-element {
    animation: slideUpFade 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes imageReveal {
    0% {
        transform: scale(1.1);
        clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
    }

    100% {
        transform: scale(1);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }
}

.element-reveal {
    animation: imageReveal 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

/* Accordion Specific Styling overrides if needed */
.accordion-content {
    /* Transitions are handled via tailwind max-h utility and JS */
}