/* Home-specific styles */
.hero {
    position: relative;
    color: var(--globe-cream);
    background: url("../assets/imgs/GlobeLane9.webp") center/cover no-repeat;
    min-height: 88vh;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    margin: 0;
    width: 100%;
    border-radius: 0;
    box-shadow: 0 18px 40px rgb(241 107 129 / 14%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(57 28 28 / 35%);
    pointer-events: none;
}

.hero::after {
    content: none;
}

.hero-content {
    position: relative;
    padding: 56px 24px 40px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 1;
    flex: 1;
    min-height: 88vh;
}

.hero-content h1 {
    margin: 0;
    max-width: 720px;
    opacity: 0.9;
    font-family: Omnes, sans-serif;
    font-weight: 900;
    font-size: 72px;
    line-height: 1.05;
}

.hero-logo {
    height: 300px;
    width: auto;
    max-width: 620px;
    filter: drop-shadow(0 4px 14px rgb(0 0 0 / 15%));
    opacity: 0.9;
}

.hero-logo-wrap {
    position: absolute;
    right: max(24px, calc(50% - 600px + 24px));
    bottom: 32px;
    z-index: 1;
}

.hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: auto;
}


.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    align-items: start;
}

@media (width <= 900px) {
    .hero {
        min-height: 68vh;
        margin: 0;
        width: 100%;
    }

    .hero-content {
        padding: 44px 22px 32px;
        min-height: 68vh;
    }

    .hero-logo {
        height: 180px;
        max-width: 340px;
    }

    .hero-logo-wrap {
        right: 24px;
        bottom: 20px;
    }

    .hero-actions {
        flex-wrap: wrap;
    }

    .hero-content h1 {
        font-size: 58px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (width <= 640px) {
    .hero-logo-wrap {
        position: absolute;
        right: 16px;
        bottom: 20px;
        margin-top: 0;
        align-self: auto;
    }

    .hero-content {
        padding: 36px 150px 28px 18px;
    }

    .hero-logo {
        height: 100px;
        max-width: 220px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-top: auto;
    }

    .hero-content h1 {
        font-size: 48px;
    }
}

@media (width <= 480px) {
    .hero {
        min-height: 60vh;
    }

    .hero-content {
        padding: 30px 16px 24px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

}
