/* ===== Primadona Krisan - Custom Styles ===== */

/* --- Base Styling --- */
:root {
    --color-primary: #1B4332;
    --color-accent: #D4AF37;
    --color-bg: #FAFAFA;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-bg);
    color: #333;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
.font-serif {
    font-family: 'Playfair Display', serif;
}

.font-heading {
    font-family: 'Montserrat', sans-serif;
}

/* --- Custom Utilities --- */
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.text-gold {
    color: var(--color-accent);
}

.bg-forest {
    background-color: var(--color-primary);
}

.vertical-rl {
    writing-mode: vertical-rl;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #1B4332;
    border-radius: 10px;
}

/* --- Animations --- */
@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fade-in 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-slide-up {
    animation: slide-up 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.4s;
}

/* --- Navbar States --- */
.navbar-scrolled {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.navbar-scrolled .nav-icon {
    color: #1B4332 !important;
}

.navbar-scrolled .nav-text {
    color: #1B4332 !important;
}

.navbar-scrolled .nav-link {
    color: #374151 !important;
}

.navbar-scrolled #mobile-toggle {
    color: #1B4332 !important;
}

.navbar-scrolled #lang-id-btn:not(.lang-active),
.navbar-scrolled #lang-en-btn:not(.lang-active) {
    color: #6B7280 !important;
}

/* --- Selection --- */
::selection {
    background-color: #D4AF37;
    color: white;
}