.hero {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    padding: 0 80px;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    backdrop-filter: blur(2px);
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-title-container {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 25px;
}

.hero-title {
    font-size: clamp(40px, 10vw, 140px);
    font-weight: 700;
    color: var(--color-ubam-white-pure);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.hero-subtitle {
    font-family: "Oleo Script", serif;
    font-size: 30px;
    font-weight: 400;
    color: var(--color-ubam-white-pure);
    margin-bottom: 40px;
    line-height: 1.7;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid white;
}

.hero-description {
    font-size: 18px;
    color: var(--color-ubam-white);
    margin-bottom: 40px;
    line-height: 1.7;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-weight: 400;
}

.oxford-logo,
.cei-logo {
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    animation: hero-pulse 3s ease-in-out infinite;
}

.oxford-logo {
    width: 120px;
}

.cei-logo {
    width: 120px;
}

@keyframes hero-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 30px 120px;
        background-attachment: scroll;
    }

    .hero-content {
        max-width: 100%;
        padding: 32px 24px;
    }

    .hero-title-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .hero-title {
        font-size: 48px;
    }

    .oxford-logo,
    .cei-logo {
        width: 80px;
        align-self: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 20px 100px;
    }

    .hero-content {
        padding: 24px 20px;
    }

    .hero-title {
        font-size: 40px;
    }

    .oxford-logo,
    .cei-logo {
        width: 64px;
        align-self: center;
    }
}
