@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
    --primary: #0f172a;
    /* Midnight Navy */
    --secondary: #b45309;
    /* Deep Gold */
    --accent: #f59e0b;
    /* Amber */
    --surface: #f8fafc;
    --text: #1e293b;
    --heading: #0f172a;
}

body {
    font-family: 'Inter', sans-serif;
    color: #e2e8f0;
    /* Lighter text for dark bg */
    background-color: #020617;
    /* Deepest Midnight */
    overflow-x: hidden;
}

h1,
h2,
h3,
.heading-font {
    font-family: 'Playfair Display', serif;
}

.bg-midnight {
    background-color: var(--primary);
}

.text-gold {
    color: var(--secondary);
}

.border-gold {
    border-color: var(--secondary);
}

.glass-nav {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.btn-premium {
    @apply px-8 py-4 bg-amber-600 text-white font-bold rounded-full shadow-xl hover:bg-amber-700 hover:scale-105 transition-all duration-300 uppercase tracking-widest text-xs;
}

.card-hover {
    @apply transition-all duration-500 hover:-translate-y-2 hover:shadow-2xl;
}

.section-padding {
    @apply py-24 px-4 sm:px-6 lg:px-8;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}