:root {
    --bg-color: #050505;
    --accent-gold: #C5A059;
    --soft-gold: #E5C78B;
    --off-white: #F5F5F5;
    --text-white: #FFFFFF;
    --text-gray: #A0A0A0;
    --card-bg: #0D0D0D;
    --glow-gold: rgba(197, 160, 89, 0.3);
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 2rem;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--accent-gold);
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--accent-gold);
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
blockquote {
    font-family: 'Playfair Display', serif;
}

/* Hero Section */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 30%, rgba(197, 160, 89, 0.05) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

header.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    position: relative;
    background: radial-gradient(circle at center, rgba(197, 160, 89, 0.08) 0%, transparent 70%);
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-text-content {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    /* Anchored to the right side */
    align-items: center;
}

.hero-cinematic-portrait {
    max-width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.2s cubic-bezier(0.165, 0.84, 0.44, 1),
        transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: drop-shadow(0 0 30px rgba(197, 160, 89, 0.2));
}

.hero-cinematic-portrait.reveal {
    opacity: 1;
    transform: translateY(0);
}

.hero-quote-main {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.5rem;
    /* Reduced from clamp(1.5rem, 3vw, 2.5rem) */
    color: var(--soft-gold);
    margin-top: 1rem;
    /* Reduced from 2rem */
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid var(--accent-gold);
    opacity: 0;
    animation: fadeInUp 1s forwards 0.8s;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    /* Reduced from clamp(3rem, 10vw, 8rem) */
    color: var(--accent-gold);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    /* Reduced from 1rem */
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s forwards 0.2s;
}

.hero-subtitle {
    font-size: 0.9rem;
    /* Reduced from clamp(1rem, 2vw, 1.5rem) */
    text-transform: uppercase;
    letter-spacing: 0.5em;
    color: var(--text-gray);
    opacity: 0;
    animation: fadeInUp 1.2s forwards 0.5s;
}

/* Bio Section */
.section-padding {
    padding: 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bio-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.bio-image-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.profile-img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    padding: 10px;
    object-fit: cover;
    box-shadow: 0 0 30px var(--glow-gold);
    transition: var(--transition-smooth);
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: pulseGlow 3s infinite alternate;
}

.profile-img:hover {
    box-shadow: 0 0 70px var(--accent-gold);
    transform: scale(1.02);
}

.bio-content {
    flex: 1.5;
    min-width: 300px;
}

.bio-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
}

.bio-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

/* Timeline Section */
.timeline-section {
    background: linear-gradient(180deg, var(--bg-color) 0%, #0a0a0a 100%);
    position: relative;
}

.timeline-container {
    position: relative;
    padding: 4rem 0;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 1px;
    background: var(--accent-gold);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -0.5px;
    opacity: 0.3;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background: inherit;
    width: 50%;
    opacity: 0;
    transform: translateY(50px);
    transition: var(--transition-smooth);
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    right: -6px;
    background-color: var(--bg-color);
    border: 2px solid var(--accent-gold);
    top: 40px;
    border-radius: 50%;
    z-index: 1;
}

.right::after {
    left: -6px;
}

.timeline-card {
    padding: 2.5rem;
    background: var(--card-bg);
    border: 1px solid rgba(197, 160, 89, 0.1);
    border-radius: 20px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.timeline-card:hover {
    border-color: var(--soft-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px var(--glow-gold);
    transform: translateY(-5px);
}

.timeline-card .year {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--soft-gold);
    margin-bottom: 1rem;
    display: block;
}

.timeline-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    color: var(--off-white);
}

.timeline-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Quote Section */
.quote-section {
    background: var(--bg-color);
    text-align: center;
}

blockquote {
    font-size: clamp(2rem, 5vw, 4rem);
    font-style: italic;
    position: relative;
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

blockquote::before,
blockquote::after {
    content: '"';
    font-size: 8rem;
    color: var(--accent-gold);
    position: absolute;
    opacity: 0.2;
}

blockquote::before {
    top: 0;
    left: 0;
}

blockquote::after {
    bottom: 0;
    right: 0;
}

.quote-author {
    display: block;
    margin-top: 2rem;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--accent-gold);
    font-size: 1rem;
    font-weight: 600;
}

/* Footer */
footer {
    padding: 4rem 2rem;
    border-top: 1px solid rgba(197, 160, 89, 0.1);
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 20px var(--glow-gold);
        border-color: var(--accent-gold);
    }

    100% {
        box-shadow: 0 0 40px var(--accent-gold);
        border-color: var(--soft-gold);
    }
}

/* Responsive Adjustments */
@media screen and (max-width: 1024px) {
    .hero-container {
        gap: 2rem;
        padding: 0 5%;
    }

    .hero-title {
        font-size: 3.5rem;
    }
}

@media screen and (max-width: 768px) {
    .navbar {
        display: none;
    }

    header.hero-section {
        padding: 4rem 1.5rem;
        min-height: auto;
    }

    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 2rem;
    }

    .hero-text-content {
        align-items: center;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-quote-main {
        font-size: 1.2rem;
        padding-left: 0;
        border-left: none;
        border-top: 2px solid var(--accent-gold);
        padding-top: 1rem;
        margin-top: 1.5rem;
        max-width: 80%;
    }

    .hero-image-container {
        justify-content: center;
    }

    .hero-cinematic-portrait {
        max-height: 45vh;
    }

    .timeline-container::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item.right {
        left: 0%;
    }

    .timeline-item::after {
        left: 25px;
        top: 40px;
    }

    .bio-container {
        text-align: center;
        gap: 2rem;
    }

    .profile-img {
        width: 250px;
        height: 250px;
    }
}