/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../assets/images/hero-bg.jpg');
    /* Placeholder image */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero__container {
    height: 100%;
    align-content: center;
}

.hero__data {
    max-width: 600px;
}

.hero__title {
    font-size: var(--biggest-font-size);
    line-height: 1.1;
    margin-bottom: var(--mb-1-5);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.hero__description {
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-2-5);
    line-height: 1.6;
}

/* Breaking Points */
@media screen and (min-width: 767px) {
    .nav {
        height: 5.5rem;
    }

    .nav__list {
        flex-direction: row;
        gap: 3.5rem;
    }

    .nav__close,
    .nav__toggle {
        display: none;
    }
}

@media screen and (min-width: 1024px) {
    .container {
        margin-left: auto;
        margin-right: auto;
    }
}