/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    background: linear-gradient(to bottom right, var(--bg-color) 60%, var(--card-color));
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero__content {
    max-width: 600px;
}

.hero__subtitle {
    display: block;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-color), #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero__description {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.hero__text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero__social {
    display: flex;
    gap: 1rem;
}

.hero__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--card-color);
    color: var(--text-color);
    border-radius: 50%;
    transition: var(--transition);
}

.hero__social-link:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
}

.hero__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__blob {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--accent-color), #8b5cf6);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morph 8s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__img {
    width: 380px;
    height: 380px;
    object-fit: cover;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

/* ===== MEDIA QUERIES ===== */
@media screen and (max-width: 968px) {
    .hero__container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero__content {
        max-width: 100%;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__description {
        font-size: 1.3rem;
    }

    .hero__buttons {
        justify-content: center;
    }

    .hero__social {
        justify-content: center;
    }

    .hero__blob {
        width: 300px;
        height: 300px;
    }

    .hero__img {
        width: 280px;
        height: 280px;
    }
}

@media screen and (max-width: 576px) {
    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero__blob {
        width: 250px;
        height: 250px;
    }

    .hero__img {
        width: 230px;
        height: 230px;
    }
}