/* Custom Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Slider Custom Styles */
#hero-slider {
    background-color: #f4f0ed; /* Default initial bg */
}

.slide-image {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

@media (min-width: 1024px) {
    .slide-image {
        width: 75%;
    }
}

.slide-image.active {
    opacity: 0.8;
}

@media (min-width: 1024px) {
    .slide-image.active {
        opacity: 1;
    }
}

.slide-mask {
    position: absolute;
    inset: 0;
    transition: opacity 1s ease-in-out;
    opacity: 0;
}

.slide-mask.active {
    opacity: 1;
}

/* Typography Tweaks */
h1, h2, h3, .font-serif {
    font-family: 'Georgia', serif;
}

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

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar for a premium feel */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #d71e28;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b31921;
}
