/* ==========================================================================
   Aventine Labs - Corporate Styling Sheet
   Color Palette: Charcoal Slate, Silver Gray, and Warm Gold Accent
   ========================================================================== */

:root {
    --bg-dark: #07090e;
    --bg-surface: #0f131a;
    --bg-glass: rgba(15, 19, 26, 0.7);
    --border-color: rgba(197, 168, 128, 0.2);
    --border-glow: rgba(197, 168, 128, 0.4);
    
    --color-text-primary: #f3f4f6;
    --color-text-muted: #9ca3af;
    --color-gold: #c5a880;
    --color-gold-hover: #dfc59f;
    --color-navy-glow: rgba(59, 130, 246, 0.15);
    --color-blue-glow: rgba(6, 182, 212, 0.15);

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
}

body {
    font-family: var(--font-body);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #1f2937;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

/* Typography elements */
h1, h2, h3, h4 {
    font-weight: 600;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    background: rgba(197, 168, 128, 0.05);
    margin-bottom: 1.5rem;
}

/* Header Styling */
.app-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    height: 70px;
}

.header-container {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: var(--font-body);
    font-weight: 800;
    letter-spacing: 0.2em;
    color: #ffffff;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 2px;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40%;
    height: 2px;
    background-color: var(--color-gold);
    transition: var(--transition-smooth);
}

.logo-link:hover .logo-text::after {
    width: 100%;
}

.main-nav {
    display: flex;
    gap: 2.5rem;
}

.nav-item {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    padding: 0.5rem 0;
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-gold);
    transition: var(--transition-smooth);
}

.nav-item:hover {
    color: var(--color-gold-hover);
}

.nav-item:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    min-height: 90vh;
    padding-top: 70px;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(circle at 80% 20%, rgba(197, 168, 128, 0.04) 0%, transparent 60%),
                radial-gradient(circle at 10% 80%, rgba(31, 41, 55, 0.2) 0%, transparent 50%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 30%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--color-text-muted);
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

/* Buttons */
.cta-group {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--color-gold);
    color: var(--bg-dark);
    box-shadow: 0 4px 14px rgba(197, 168, 128, 0.25);
    border: 1px solid var(--color-gold);
}

.btn-primary:hover {
    background: var(--color-gold-hover);
    border-color: var(--color-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 168, 128, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text-primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Sections General */
.story-section, .ventures-section, .compliance-section {
    padding: 8rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.section-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 3.5rem;
    line-height: 1.2;
}

/* Story Section */
.story-content {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.story-text {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    font-weight: 300;
    text-align: justify;
}

.story-text strong {
    color: var(--color-text-primary);
    font-weight: 600;
}

.paragraph-highlight {
    font-size: 1.3rem;
    line-height: 1.5;
    color: var(--color-text-primary);
    border-left: 2px solid var(--color-gold);
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.paragraph-accent {
    font-style: italic;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-gold);
}

/* Ventures Section */
.ventures-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.venture-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.card-glow-blue, .card-glow-navy {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0;
    transition: var(--transition-smooth);
}

.card-glow-blue { background: #06b6d4; }
.card-glow-navy { background: #3b82f6; }

.venture-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 1px 1px var(--color-gold) inset;
}

.venture-card:hover .card-glow-blue,
.venture-card:hover .card-glow-navy {
    opacity: 0.7;
}

.venture-name {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: #ffffff;
}

.venture-description {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-weight: 300;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.venture-link {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
}

.venture-card:hover .venture-link {
    color: #ffffff;
}

/* Compliance Section */
.compliance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.compliance-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    padding: 2rem;
}

.compliance-card h4 {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.75rem;
}

.compliance-card p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 300;
    line-height: 1.6;
}

/* Footer Styling */
.app-footer {
    background: #040508;
    padding: 6rem 0 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.footer-info h5 {
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.office-address {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.contact-email {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 1.5rem;
}

.contact-email a {
    color: var(--color-gold);
    font-weight: 600;
    border-bottom: 1px solid transparent;
}

.contact-email a:hover {
    color: #ffffff;
    border-color: #ffffff;
}

.footer-copyright {
    font-size: 0.75rem;
    color: #4b5563;
    font-weight: 300;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
}

/* Responsive Adaptations */
@media (max-width: 900px) {
    .ventures-grid {
        grid-template-columns: 1fr;
    }
    
    .compliance-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.75rem;
    }
    
    .main-nav {
        display: none; /* simple burger menus are best in separate JS, keep it minimal for corporate footprint */
    }
    
    .story-text {
        text-align: left;
    }
}
