/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(40%);
    z-index: -1;
}

.hero-content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 2rem;
}

.hero-title h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Times New Roman', serif;
}

.hero-title p {
    color: var(--white);
    font-size: clamp(1rem, 2vw, 1.25rem);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
}

.hero-text {
    max-width: min(600px, 90%);
    background: rgba(0, 0, 0, 0.75);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: justify;
    font-family: 'Times New Roman', serif;
}

.hero-text p {
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-text p:last-child {
    margin-bottom: 0;
}

/* Content Section */
.content {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.biography {
    display: flex;
    gap: 2.5rem;
}

.biography img {
    width: auto;
    height: 350px; /* Fixed height */
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.bio-text h2,
.quotes h2 {
    margin-bottom: 2rem;
    color: var(--dark);
}

.bio-text p,
.quotes blockquote {
    text-align: justify;
    text-justify: inter-word;
}

.quotes blockquote {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    border-left: 4px solid #D4A048;
    font-style: italic;
    background: rgba(212, 160, 72, 0.05);
    border-radius: 0 10px 10px 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .content {
        padding: 4rem 5%;
        gap: 3rem;
    }

    .biography img {
        height: 300px;
    }
}

@media (max-width: 991px) {
    .hero-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 2rem;
    }

    .content {
        grid-template-columns: 1fr;
        padding: 3rem 5%;
    }

    .biography {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }

    .biography img {
        height: 350px;
    }

    .quotes blockquote {
        font-size: 1rem;
        padding: 1.25rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 1rem;
    }

    .hero-text {
        padding: 1.5rem;
    }

    .biography img {
        height: 250px;
    }

    .content {
        padding: 2rem 5%;
    }
}

@media (max-width: 480px) {
    .hero-title h1 {
        margin-bottom: 1rem;
    }

    .hero-text {
        padding: 1.25rem;
    }

    .hero-text p {
        margin-bottom: 1rem;
    }

    .biography img {
        height: 200px;
    }

    .content {
        padding: 2rem 1rem;
    }

    .quotes blockquote {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
}