/* K3GVC Venture Fund - Premium Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Premium Color Palette */
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --dark-gray: #2a2a2a;
    --purple-primary: #8b5cf6;
    --purple-secondary: #a855f7;
    --purple-gradient: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #c084fc 100%);
    --gold-primary: #fbbf24;
    --gold-secondary: #f59e0b;
    --gold-gradient: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    --white: #ffffff;
    --gray-light: #e5e7eb;
    --gray-medium: #6b7280;
    --gray-dark: #374151;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Borders */
    --border-radius: 0.5rem;
    --border-radius-lg: 1rem;
    --border-radius-xl: 1.5rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-purple: 0 0 30px rgba(139, 92, 246, 0.3);
    --shadow-gold: 0 0 30px rgba(251, 191, 36, 0.3);
}

/* Base Styles */
html {
    scroll-behavior: smooth;
    font-size: 14px;
}

body {
    font-family: var(--font-primary);
    background: var(--primary-black);
    color: var(--white);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Layout Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Header Styles */
.header {
    background: var(--secondary-black);
    border-bottom: 2px solid transparent;
    border-image: var(--purple-gradient) 1;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
}

.logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.site-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
    text-shadow: var(--shadow-gold);
}

.tagline {
    font-size: 0.9rem;
    color: var(--gray-light);
    font-weight: 300;
    letter-spacing: 0.5px;
}


.satire-note {    
    font-size: 0.6rem;
    color: rgb(221, 238, 30);
    font-style: italic;
    font-weight: 120;
    letter-spacing: 0.5px;
}

.satire_href {
    color: rgb(221, 238, 30);
    text-decoration: underline;
    font-weight: 500;
}

/* Navigation Styles */
.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-xl);
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-light);
    font-weight: 400;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: var(--spacing-xs) 0;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--gold-primary);
}

/* Section links styling */
.nav-link.section-link {
    font-size: 1rem;
    color: var(--gray-medium);
    font-weight: 300;
}

.nav-link.section-link::after {
    background: var(--purple-gradient);
}

.nav-link.section-link:hover {
    color: var(--purple-primary);
}

/* Navigation separator */
.nav-separator {
    color: var(--gray-dark);
    font-size: 1.2rem;
    margin: 0 var(--spacing-sm);
    opacity: 0.5;
}

/* Main Content */
.main-content {
    flex: 1;
    min-height: 80vh;
    padding: var(--spacing-2xl) 0;
}

/* Home Page Styles */
.hero-section {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.0rem;
    font-weight: 400;
    margin-bottom: var(--spacing-md);
    background: var(--purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.0rem;
    color: var(--gray-light);
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.7;
}


.company-intro {
    background: var(--secondary-black);
    border: 2px solid transparent;
    border-image: var(--purple-gradient) 1;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.company-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
}

.company-intro p {
    font-size: 0.9rem;
    color: var(--gray-light);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.company-intro p:last-child {
    margin-bottom: 0;
}

/* Founders Section */
.founders-section {
    margin-top: var(--spacing-2xl);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: var(--spacing-xl);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.founder-card {
    background: var(--secondary-black);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.founder-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--purple-gradient);
    border-radius: var(--border-radius-lg);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.founder-card:hover::before {
    opacity: 1;
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-purple);
}

.founder-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 3px solid var(--gold-primary);
    margin: 0 auto var(--spacing-sm);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-gold);
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.founder-card:hover .founder-photo img {
    transform: scale(1.1);
}

.founder-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--white);
}

.founder-title {
    font-size: 0.85rem;
    color: var(--purple-primary);
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-bio {
    font-size: 0.8rem;
    color: var(--gray-light);
    line-height: 1.5;
}

/* Investment Page Styles */
.investment-widget {
    background: var(--secondary-black);
    border: 2px solid transparent;
    border-image: var(--purple-gradient) 1;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-2xl);
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.investment-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
}

.widget-placeholder {
    opacity: 0.7;
}

.widget-placeholder h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-md);
    color: var(--purple-primary);
}

.widget-placeholder p {
    font-size: 0.8rem;
    color: var(--gray-light);
    margin-bottom: var(--spacing-md);
}

.coming-soon {
    display: inline-block;
    background: var(--purple-gradient);
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Footer Styles */
.footer {
    background: var(--secondary-black);
    border-top: 2px solid transparent;
    border-image: var(--purple-gradient) 1;
    padding: var(--spacing-lg) 0;
    margin-top: auto;
}

.footer-content {
    text-align: center;
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.footer-content p {
    margin-bottom: var(--spacing-sm);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.footer-link {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--purple-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .header-content {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: var(--spacing-md);
        align-items: center;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: var(--spacing-sm) 0;
    }
    
    .nav-separator {
        display: none;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .founders-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .founder-photo {
        width: 160px;
        height: 160px;
    }
    
    .founder-name {
        font-size: 1.1rem;
    }
    
    .founder-title {
        font-size: 0.8rem;
    }
    
    .founder-bio {
        font-size: 0.75rem;
    }
    
    .site-name {
        font-size: 1.5rem;
    }
    
    .main-content {
        padding: var(--spacing-lg) 0;
    }
    
    .company-intro,
    .investment-widget {
        padding: var(--spacing-lg);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .founder-photo {
        width: 140px;
        height: 140px;
    }
    
    .founder-name {
        font-size: 1rem;
    }
    
    .founder-title {
        font-size: 0.75rem;
    }
    
    .founder-bio {
        font-size: 0.7rem;
    }
    
    .founders-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .nav-menu {
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        display: block;
        width: 100%;
        padding: var(--spacing-md) 0;
        font-size: 1.1rem;
    }
}

/* Section anchor targets */
section[id] {
    scroll-margin-top: 100px; /* Account for fixed header */
}

section[id]:target {
    animation: highlightSection 2s ease-in-out;
}

@keyframes highlightSection {
    0% { 
        background: rgba(139, 92, 246, 0.1);
        transform: scale(1.01);
    }
    100% { 
        background: transparent;
        transform: scale(1);
    }
}
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}
