:root {
    --primary: #111111;
    --accent: #d4af37;
    --accent-light: #f1c40f;
    --text-dark: #1a1a1a;
    --text-muted: #555555;
    --bg-light: #ffffff;
    --bg-alt: #f9f9f9;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Outfit', sans-serif;
    --nav-height: 80px;
    --container-max: 1200px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: var(--nav-height);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    opacity: 0.7;
}

.nav-links a:hover, .nav-links a.active {
    opacity: 1;
    color: var(--accent);
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1);
}

.hero-content {
    max-width: var(--container-max);
    width: 100%;
    padding: 0 2rem;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.hero-title span {
    color: var(--accent);
    display: block;
    font-size: 1.3em;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.8;
}

/* Early Life Section */
.early-life {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.early-life-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 60px;
    align-items: start;
}

.early-life-title h2 {
    font-family: var(--font-serif);
    font-size: 5rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.early-life-details {
    font-size: 1.5rem;
    color: var(--text-dark);
    padding-top: 1rem;
    font-weight: 400;
}

.early-life-details p {
    margin-bottom: 0.5rem;
}

.early-life-visual {
    width: 100%;
    height: 400px;
    background: #eee;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.visual-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    background-image: 
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    border: 1px solid rgba(0,0,0,0.05);
}

.visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

/* Timeline Section */
.timeline-section {
    padding: 100px 0;
    background: var(--bg-alt);
}

.timeline-main-title {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    text-align: center;
    color: #1a365d; /* Darker blue from screenshot */
    margin-bottom: 100px;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: #e2e8f0;
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 100px 1fr;
    align-items: center;
    margin-bottom: 80px;
    width: 100%;
}

.timeline-content {
    padding: 0 2rem;
}

.timeline-item.left .timeline-content {
    grid-column: 1;
    text-align: right;
}

.timeline-item.right .timeline-content {
    grid-column: 3;
    text-align: left;
}

.timeline-indicator {
    grid-column: 2;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.timeline-year {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.timeline-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
}


.indicator-icon {
    width: 65px;
    height: 65px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    color: #3182ce;
    border: 4px solid #e2e8f0;
    transition: var(--transition);
}

.indicator-icon svg {
    width: 28px;
    height: 28px;
}

.timeline-item:hover .indicator-icon {
    transform: scale(1.1);
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 80px 0 40px;
}

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

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
}

.footer-links-grid {
    display: flex;
    gap: 4rem;
    flex: 2;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-col h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.5);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-col ul a:hover {
    opacity: 1;
    color: var(--accent);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    opacity: 0.6;
    flex-wrap: wrap;
    gap: 1rem;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    color: white;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 991px) {
    .early-life-grid {
        flex-direction: column;
        gap: 1rem;
    }
    .early-life-title h2 {
        font-size: 3rem;
    }
    .timeline-main-title {
        font-size: 3rem;
    }
    .footer-links-grid {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* Mobile menu needed */
    }
    .hero-content {
        text-align: center;
    }
    .timeline-line {
        left: 30px;
    }
    .timeline-item {
        display: flex;
        flex-direction: row !important;
        margin-bottom: 40px;
    }
    .timeline-content {
        width: 80%;
        text-align: left !important;
        padding-left: 1rem;
        order: 2;
    }
    .timeline-indicator {
        width: 60px;
        order: 1;
        grid-column: auto;
    }
    .timeline-year {
        font-size: 2.5rem;
    }
}
