/* =========================================
   1. IMPORTS & VARIABLES
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Playfair+Display:wght@400;700&display=swap');

:root {
    /* Brand Colors - Lions Club Inspired */
    --primary-color: #00338D;    /* Deep Royal Blue */
    --secondary-color: #FDB913;  /* Iconic Gold */
    --accent-color: #0055ff;     /* Vibrant Blue for Digital/Web */
    
    /* Neumorphism & Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    
    /* Neutrals */
    --dark-bg: #0f172a;
    --text-main: #334155;
    --text-light: #f8fafc;
    --section-bg: #f1f5f9;
    
    /* Spacing & Transition */
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius-lg: 16px;
}

/* =========================================
   2. GLOBAL RESET & TYPOGRAPHY
   ========================================= */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    transition: var(--transition-fast);
}

/* =========================================
   3. NAVIGATION & HEADER
   ========================================= */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    padding: 1rem 0;
}

.nav-link {
    font-weight: 500;
    color: var(--text-main) !important;
    margin: 0 10px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* =========================================
   4. COMPONENT: BUTTONS
   ========================================= */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 51, 141, 0.3);
    transition: var(--transition-fast);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 51, 141, 0.4);
    color: white;
}

.btn-outline-custom {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
}

.btn-outline-custom:hover {
    background-color: var(--primary-color);
    color: white;
}

/* =========================================
   5. COMPONENT: CARDS & GLASSMORPHISM
   ========================================= */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--glass-shadow);
    padding: 2rem;
    height: 100%;
    transition: var(--transition-fast);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    border-color: var(--secondary-color);
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(253, 185, 19, 0.15); /* Gold with opacity */
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* =========================================
   6. UTILITIES & SECTIONS
   ========================================= */
.section-padding {
    padding: 80px 0;
}

.bg-light-custom {
    background-color: var(--section-bg);
}

.text-gradient {
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-section {
    position: relative;
    padding: 120px 0 80px 0;
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.7)), url('https://source.unsplash.com/1600x900/?netherlands,community');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Custom Table Styling for "Data Simulation" */
.custom-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
    margin-top: 20px;
}

.custom-table th {
    background-color: var(--primary-color);
    color: white;
    padding: 15px;
    font-family: 'Playfair Display', serif;
}

.custom-table td {
    background-color: white;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.custom-table tr td:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    font-weight: 600;
}

.custom-table tr td:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* =========================================
   7. ANIMATIONS
   ========================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-up {
    animation-name: fadeInUp;
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }