/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* background-color: var(--col-deep-turquoise); */
    overflow: hidden;
    padding-top: 100px;
}

.hero .hero-bg-accent {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(237, 222, 214, 0.05);
    z-index: 1;
}

.hero .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: left;
}

.hero h1 {
    /* Scalable large font */
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: var(--col-deep-turquoise);
    margin-bottom: 2rem;
    line-height: 1.1;
    white-space: nowrap;
    /* Keep on one line */
}

.hero .hero-subtitle {
    font-size: min(1.8rem, 6vw);
    color: var(--col-deep-turquoise);
    margin-bottom: 4rem;
    max-width: min(700px, 60vw);
    line-height: 1.4;
}

.hero .hero-actions {
    display: flex;
    gap: 2rem;
}

@media (max-width: 900px) {
    .hero h1 {
        white-space: normal;
        /* Allow wrap on very small screens if necessary */
    }

    .hero .hero-actions {
        flex-direction: column;
    }

    .hero .hero-content {
        margin-top: 30vh;
        text-align: center;
    }

    .hero .hero-subtitle {
        max-width: unset;
        padding: 0 2rem
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}