
/* ===== PREMIUM GLOBAL STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@300;400;500;600&display=swap');

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background: #0f172a;
    color: #f8fafc;
    scroll-behavior: smooth;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}

header {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(12px);
    padding: 20px 60px;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

nav a {
    color: #e2e8f0;
    margin-left: 30px;
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background: #f59e0b;
    left: 0;
    bottom: -6px;
    transition: 0.3s;
}

nav a:hover::after {
    width: 100%;
}

.hero {
    padding: 160px 40px;
    text-align: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.hero h1 {
    font-size: 64px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 22px;
    color: #cbd5e1;
}

.btn {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 40px;
    border-radius: 50px;
    background: linear-gradient(90deg,#f59e0b,#f97316);
    color: #111 !important;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(249,115,22,0.4);
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(249,115,22,0.6);
}

.section {
    padding: 120px 60px;
    max-width: 1300px;
    margin: auto;
}

.card {
    background: #1e293b;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
    transition: 0.4s;
}

.card:hover {
    transform: translateY(-10px);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 40px;
}

footer {
    background: #020617;
    padding: 60px;
    text-align: center;
    color: #94a3b8;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ===== HARD BUTTON TEXT FIX ===== */
.btn, button, a.btn { color:#111111 !important; }
.btn *, button *, a.btn * { color:#111111 !important; }
a.bg-white, .bg-white { color:#111111 !important; }
