
/* Hero Section */
.hero-section {
    background-color: transparent;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    text-align: center;
}

.hero-text {
    max-width: 700px;
    padding-top: 0;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    margin-top: 0;
    padding-top: 0;
    color: var(--text-dark);
    line-height: 1.1;
    font-weight: 500;
    font-family: 'Rammetto One';
}

.hero-title-variation {
    /* font-size: 3.5rem;     */
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-dark);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    margin-top: 2rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

@media (max-width: 400px) {
    .hero-content {
        gap: unset;
    }
    
}
/* Tablet Styles */
@media (min-width: 768px) {
    .hero-content {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
        text-align: left;
    }

    .hero-text {
        flex: 1;
        text-align: left;
        padding-top: 0;
    }

    .hero-image {
        flex: 1;
        max-width: none;
        margin-top: 0;
    }

    .hero-section {
        min-height: 80vh;
    }

    .hero-title {
        font-size: clamp(3rem, 8vw, 4rem);
        padding-top: 0;
        margin-top: 0;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
}