@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
}

h1, h2, h3, h4, h5, h6, .playfair {
    font-family: 'Playfair Display', serif;
}

.glass-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 3px solid #d4af37; /* Adventist Gold */
    box-shadow: 0 4px 12px rgba(15, 28, 63, 0.08);
}

.card-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 25px -5px rgba(15, 28, 63, 0.1), 0 10px 10px -5px rgba(15, 28, 63, 0.04);
}

/* Custom SDA creative curve for hero */
.sda-curve {
    clip-path: polygon(0 0, 100% 0, 100% 88%, 0% 100%);
}

.sda-curve-reverse {
    clip-path: polygon(0 0, 100% 12%, 100% 100%, 0% 100%);
}

/* Custom Scrollbar for sleek UI */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #0f1c3f; /* Adventist Navy */
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #1e3a8a;
}
