/* High Fidelity Refinements for Heavenly Theme Missions */

:root {
    --primary-blue: #002B5B;
    --accent-gold: #C5A045;
    --bg-cream: #FDFBF7;
    --htm-serif: 'Playfair Display', serif;
    --htm-sans: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-cream);
    color: #1A1A1A;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1, h2, h3, h4, .font-serif {
    font-family: var(--htm-serif);
}

/* Custom transitions and interactive states */
button, a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

button:active {
    transform: scale(0.96);
}

/* Glassmorphism subtle effects */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Smooth Image reveals */
img {
    transition: transform 0.6s ease-out, filter 0.6s ease-out;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-cream);
}
::-webkit-scrollbar-thumb {
    background: #e2e2e2;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* Layout Utilities */
.section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Hero Typography Animation */
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-title {
    animation: slideDown 1s ease-out forwards;
}

/* Checkbox/Input customization */
input[type="checkbox"] {
    @apply rounded border-gray-300 text-htm-gold focus:ring-htm-gold;
}

input[type="text"], select {
    @apply border-transparent focus:border-htm-gold focus:ring-htm-gold;
}

/* Role Badge */
.role-badge {
    @apply px-3 py-1 rounded-full text-[10px] font-black uppercase tracking-widest;
}

/* Card Hover Effects */
.card-hover {
    @apply hover:shadow-2xl hover:-translate-y-2 transition-all duration-300;
}