/* Custom CSS for Avora Advisors - No Dependencies */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --zinc-50: #fafafa;
    --zinc-100: #f4f4f5;
    --zinc-200: #e4e4e7;
    --zinc-300: #d4d4d8;
    --zinc-400: #a1a1aa;
    --zinc-500: #71717a;
    --zinc-600: #52525b;
    --zinc-700: #3f3f46;
    --zinc-800: #27272a;
    --zinc-900: #18181b;
    --white: #ffffff;
    
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    --max-width: 1280px;
    --container-padding: 2rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--white);
    color: var(--zinc-900);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: var(--white);
    border-bottom: 1px solid var(--zinc-200);
    height: 80px;
    display: flex;
    align-items: center;
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    text-decoration: none;
    color: var(--zinc-900);
}

.logo span {
    color: var(--zinc-500);
    font-weight: 300;
    font-style: italic;
}

.nav-links {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--zinc-600);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-link:hover, .nav-link.active {
    color: var(--zinc-900);
}

/* Hero Section */
.hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    background-color: var(--zinc-900);
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

.hero-text {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    font-weight: 300;
    color: var(--zinc-200);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--white);
    color: var(--zinc-900);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: var(--zinc-100);
    transform: translateY(-1px);
}

/* Sections */
.section {
    padding: 6rem 0;
}

.section-bg-alt {
    background-color: var(--zinc-50);
}

.grid-2 {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: var(--zinc-100);
    color: var(--zinc-700);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--zinc-900);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.section-text {
    font-size: 1.25rem;
    color: var(--zinc-600);
    margin-bottom: 2rem;
}

.list-check {
    list-style: none;
}

.list-check li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--zinc-700);
}

.list-check i {
    margin-right: 0.75rem;
    color: var(--zinc-900);
}

.img-container {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/3;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Team Grid */
.team-grid {
    display: grid;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.team-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid var(--zinc-200);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-img {
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: opacity 0.2s;
}

.team-img:hover {
    opacity: 0.9;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--zinc-600);
    margin-bottom: 0.5rem;
}

.team-desc {
    font-size: 0.875rem;
    color: var(--zinc-600);
    margin-bottom: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    color: var(--zinc-900);
    font-weight: 600;
    text-decoration: none;
}

.social-link:hover {
    color: var(--zinc-700);
}

/* Fund Section */
.fund-banner {
    background-color: var(--zinc-900);
    color: var(--white);
    border-radius: 3rem;
    padding: 3rem;
}

@media (min-width: 1024px) {
    .fund-banner {
        padding: 5rem;
    }
}

.fund-stats {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .fund-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--zinc-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 700;
}

.fund-philosophy {
    background-color: var(--zinc-800);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid var(--zinc-700);
}

.philosophy-list {
    list-style: none;
    margin-top: 1.5rem;
}

.philosophy-item {
    margin-bottom: 1.5rem;
}

.philosophy-title {
    font-weight: 700;
    color: var(--zinc-100);
    margin-bottom: 0.25rem;
}

.philosophy-text {
    font-size: 0.875rem;
    color: var(--zinc-300);
}

/* Contact */
.contact-grid {
    display: grid;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 1.5rem;
    color: var(--zinc-500);
}

.contact-label {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-value {
    color: var(--zinc-600);
    font-style: normal;
}

.contact-value a {
    color: inherit;
    text-decoration: underline;
}

/* Footer */
.footer {
    padding: 3rem 0;
    border-top: 1px solid var(--zinc-200);
    text-align: center;
}

.footer-text {
    color: var(--zinc-500);
    font-size: 0.875rem;
}

/* Utilities */
.text-center { text-align: center; }
.mb-16 { margin-bottom: 4rem; }
.mt-10 { margin-top: 2.5rem; }
