/** 
 * Plutus Capital NJ LLC - Global Investment & Strategic Advisory
 * Theme: Dark Blue, Finance, Global, Modern
 */

/* =========================================================================
   1. CSS VARIABLES & RESET
   ========================================================================= */
:root {
    /* Colors */
    --bg-dark: #040d1a;
    --bg-card: rgba(13, 27, 42, 0.6);
    --bg-nav: rgba(4, 13, 26, 0.85);
    
    --text-main: #f0f4f8;
    --text-muted: #94a3b8;
    
    --accent-blue: #0077e6;
    --accent-glow: #00c3ff;
    --border-glass: rgba(255, 255, 255, 0.08);

    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Spacing & Utilities */
    --nav-height: 100px;
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* =========================================================================
   2. TYPOGRAPHY & UTILITIES
   ========================================================================= */
h1, h2, h3, h4, h5 {
    line-height: 1.2;
    font-weight: 600;
}

.text-center { text-align: center; }
.relative { position: relative; }
.z-10 { z-index: 10; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-8 { margin-top: 3rem; }
.pt-4 { padding-top: 1.5rem; }
.pt-8 { padding-top: 3rem; }
.pb-4 { padding-bottom: 1.5rem; }

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-short);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 100px 0;
    position: relative;
}

.dark-bg {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #061121 100%);
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.grid-3-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.align-center {
    align-items: center;
}

/* Base Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 4px;
    transition: var(--transition-smooth);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue), #0056b3);
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 119, 230, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 195, 255, 0.4);
    background: linear-gradient(135deg, #0088ff, #0066cc);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #fff;
}

.lg-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* =========================================================================
   3. COMPONENTS
   ========================================================================= */

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: transparent;
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: var(--bg-nav);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-img {
    height: 72px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-fast);
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
}

.logo-accent {
    color: var(--accent-glow);
    font-weight: 300;
    margin-left: 4px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: #fff;
}

.nav-btn {
    border: 1px solid var(--accent-blue);
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    color: #fff;
}

.nav-btn:hover {
    background: var(--accent-blue);
}

/* Mobile Nav */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: var(--bg-nav);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
    flex-direction: column;
    padding: 1rem 2rem;
    display: none;
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.mobile-menu.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

.mobile-link {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-glass);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    color: var(--text-main);
}

/* Section Tags & Titles */
.section-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 119, 230, 0.1);
    border: 1px solid rgba(0, 119, 230, 0.3);
    color: var(--accent-glow);
    border-radius: 50px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.center-tag {
    margin: 0 auto 1.5rem auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #fff, var(--text-muted));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 1rem auto;
    font-weight: 300;
}

/* =========================================================================
   4. SECTIONS
   ========================================================================= */

/* Hero */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--nav-height);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/hero_background.png') center/cover no-repeat;
    z-index: -2;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(4, 13, 26, 0.9) 0%, rgba(10, 25, 47, 0.7) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    animation: fadeUp 1s ease forwards;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.reveal-text {
    display: block;
}

.highlight {
    background: linear-gradient(90deg, #00c3ff, #0077e6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* Leadership */
.leadership-image-wrapper {
    position: relative;
    padding-right: 2rem;
    padding-bottom: 2rem;
}

.image-border-deco {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 80%;
    height: 80%;
    border: 1px solid var(--accent-blue);
    z-index: -1;
    transform: translate(-1rem, -1rem);
    transition: transform var(--transition-smooth);
}

.leadership-image-wrapper:hover .image-border-deco {
    transform: translate(0, 0);
}

.leadership-img {
    width: 100%;
    max-width: 450px;
    border-radius: 4px;
    filter: grayscale(20%) contrast(1.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    display: block;
}

.leadership-role {
    font-size: 1.2rem;
    color: var(--accent-glow);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.body-text {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Expertise */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 195, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(0, 119, 230, 0.05);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--accent-glow);
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #fff;
}

.card-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Investment Focus */
.focus-section {
    position: relative;
    overflow: hidden;
}

.focus-list {
    margin-top: 3rem;
}

.focus-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-glass);
}

.focus-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.focus-item-icon {
    font-size: 2rem;
    color: var(--accent-blue);
    background: rgba(0, 119, 230, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.focus-item-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.focus-item-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.focus-visual {
    position: relative;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* This takes the abstract visual and puts it as background */
.focus-img-wrapper {
    width: 100%;
    height: 100%;
    background: url('assets/global_network.png') center/cover no-repeat;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    position: relative;
    z-index: 2;
}

.abstract-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 195, 255, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    filter: blur(40px);
}

/* Global Perspective */
.global-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.global-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/hero_background.png') center/cover fixed;
    opacity: 0.15;
    z-index: 1;
}

.global-text {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-muted);
}

.city-metrics {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.city {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.city-divider {
    width: 6px;
    height: 6px;
    background: var(--accent-glow);
    border-radius: 50%;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(180deg, #061121 0%, var(--bg-dark) 100%);
    border-top: 1px solid var(--border-glass);
}

.contact-text {
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-glass);
}

.footer-brand .logo-text {
    font-family: 'Playfair Display', 'Cinzel', 'Times New Roman', serif;
    font-size: 1.6rem;
    color: #C5A059;
    font-weight: 700;
    letter-spacing: 2px;
}

.footer-brand .logo-accent {
    color: #C5A059;
    font-weight: 400;
    margin-left: 6px;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.disclaimer {
    color: rgba(148, 163, 184, 0.6);
    font-size: 0.75rem;
}


/* =========================================================================
   5. ANIMATIONS & RESPONSIVE
   ========================================================================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .grid-2-col, .grid-3-col {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }

    .focus-visual {
        order: -1;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 60px 0;
    }

    .city-metrics {
        gap: 1rem;
    }

    .city {
        font-size: 1rem;
    }

    .city-divider {
        display: none;
    }
}

/* 
 * Desktop-only enlarged typography 
 * Scales up key elements on screens wider than 1024px
 */
@media (min-width: 1024px) {
    html {
        font-size: 18px;
    }

    .nav-link, .mobile-link {
        font-size: 1.05rem;
    }

    .section-tag {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .lead-text {
        font-size: 1.35rem;
    }

    .hero-title {
        font-size: 5rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .body-text, .card-text, .focus-item-content p {
        font-size: 1.15rem;
    }

    .card-title, .focus-item-content h4, .city {
        font-size: 1.4rem;
    }

    .footer-brand .logo-text {
        font-size: 2rem;
    }

    .copyright {
        font-size: 1rem;
    }

    .disclaimer {
        font-size: 0.85rem;
    }
}
