/* Modern Design Overrides "Bento Style" */
@import url('style.css');
/* Import base to keep variables, override where needed */

:root {
    /* Light Theme — Gold Accent */
    --bg-darker: #f3f4f6;
    --dark-surface: #ffffff;
    --dark-bg: #f9fafb;
    --border-subtle: #e5e7eb;
    --glass-surface: rgba(255, 255, 255, 0.9);
    --primary-gold: #c5a059;
    --secondary-gold: #a38243;
    --gold-gradient: linear-gradient(135deg, #c5a059 0%, #a38243 100%);
    --accent-glow: rgba(197, 160, 89, 0.08);
    --text-primary: #111827;
    --text-secondary: #6b7280;
}

body {
    background-color: var(--bg-darker);
    color: var(--text-primary);
    font-weight: 400;
    line-height: 1.6;
}

::selection {
    background: var(--primary-gold);
    color: #ffffff;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gold);
}

/* Typography Upgrades */
.text-display {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.text-eyebrow {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 6px 10px;
    background: rgba(197, 160, 89, 0.08);
    border-radius: 4px;
    border-right: 3px solid var(--primary-gold);
}

.role-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 18px;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.15) 0%, rgba(163, 130, 67, 0.08) 100%);
    color: var(--primary-gold);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.text-lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    font-weight: 400;
}

/* Standard Clean Grid System (Replacing Bento) */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.simple-card {
    background: var(--dark-surface);
    border: 1px solid var(--border-subtle);
    padding: 40px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.simple-card:hover {
    border-color: rgba(197, 160, 89, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(197, 160, 89, 0.05);
}

.simple-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-gold);
}

.bento-row-2 {
    grid-row: span 2;
}

/* Modern Clean Hero */
.hero-modern {
    height: 80vh;
    /* Slightly shorter for modern feel */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(249, 250, 251, 0.85), rgba(249, 250, 251, 0.95)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Subtle pattern instead of blurry mesh */
.hero-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#d1d5db 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    z-index: 1;
}

.hero-modern .container {
    z-index: 2;
    text-align: center;
}

/* Button Upgrades */
.btn {
    padding: 12px 28px;
    border-radius: 8px;
    /* Softer radius */
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
    text-transform: none;
}

.btn-primary {
    background: var(--primary-gold);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 6px -1px rgba(197, 160, 89, 0.2);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 8px -1px rgba(197, 160, 89, 0.3);
    background: #a38243;
    /* Darker gold */
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: #ffffff;
    border-color: var(--primary-gold);
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.navbar .container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
}

.nav-links li a {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    transition: background 0.18s, color 0.18s;
    white-space: nowrap;
}

.nav-links li a:hover {
    background: rgba(197, 160, 89, 0.08);
    color: var(--primary-gold);
}

.logo h1 {
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--primary-gold);
}

.nav-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.logo:hover .nav-logo {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-span-3,
    .bento-span-4 {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .text-display {
        font-size: 3rem;
    }

    .hero-modern {
        height: auto;
        padding: 120px 0 60px;
    }

    /* Mobile dropdown polished */
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        right: 0;
        left: 0;
        width: 100%;
        background: #ffffff;
        border-top: 2px solid var(--primary-gold);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.10);
        padding: 12px 0;
        z-index: 999;
        gap: 0;
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.22s ease;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a,
    .nav-links li a.btn {
        display: block;
        width: 100%;
        padding: 13px 24px;
        text-align: center;
        border-radius: 0;
        font-size: 1rem;
        color: var(--text-secondary);
        border: none;
        background: transparent;
        box-sizing: border-box;
    }

    .nav-links li a:hover {
        background: rgba(197, 160, 89, 0.08);
        color: var(--primary-gold);
    }

    .nav-links li a.btn-primary {
        margin: 8px 20px;
        width: calc(100% - 40px);
        border-radius: 8px;
        background: var(--primary-gold);
        color: #ffffff;
        text-align: center;
    }

    .nav-links li a.btn-outline {
        margin: 4px 20px;
        width: calc(100% - 40px);
        border-radius: 8px;
        border: 1px solid var(--primary-gold);
        color: var(--primary-gold);
    }

    .hamburger {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 8px;
        border: 1px solid var(--border-subtle);
        cursor: pointer;
        color: var(--primary-gold);
        font-size: 1.2rem;
        flex-shrink: 0;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}