/* Custom Font Definitions */
@font-face {
    font-family: 'Cormorant Garamond';
    src: url('https://fonts.gstatic.com/s/cormorangaramond/v24/9BtBBy9QHT8XC7Q1u7ViXQ.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* Base Styles & Variables */
:root {
    --color-plum-dark: #2e1026;
    --color-plum-mid: #500724;
    --color-amber: #d97706;
    --color-amber-light: #fbbf24;
    --color-stone-950: #0c0a09;
    --color-stone-900: #1c1917;
}

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

h1, h2, h3, h4, .font-serif {
    font-family: 'Cormorant Garamond', serif;
}

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-stone-950);
}

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

::-webkit-scrollbar-thumb:hover {
    background: var(--color-amber);
}

/* Focus Styles for Accessibility */
a:focus, button:focus {
    outline: 2px solid var(--color-amber);
    outline-offset: 4px;
}

/* Mobile Menu Transitions */
#mobile-menu {
    transition: transform 0.3s ease-in-out;
}
