.home-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.hero-section h1 {
    width: 70%;
    line-height: 1;
    text-align: center;
}

.search-input {
    width: 100%;
    max-width: 400px;
    border-radius: 50px;
}

sl-input.search-input::part(base) {
    border-radius: 8px;
}

sl-input.search-input:focus-within::part(base) {
    box-shadow: 0 0 0 1px var(--sl-color-primary-300);
    border-color: var(--sl-color-primary-300);
}

.destination-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    margin: 32px auto;
    text-align: center;
    gap: 16px;
}

sl-button.dest-btn::part(base) {
    margin: 0;
    padding: 0;
    border-radius: 8px;
    background-color: var(--sl-color-primary-300);
    color: #f1fdfd;
}

sl-button.dest-btn::part(base):hover {
    background-color: var(--sl-color-primary-600);
}

.about-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 80px auto;
    max-width: 800px;
    text-align: center;
    font-size: var(--sl-font-size-3x-large);
}

.about-section p {
    width: 60%;
    text-align: center;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .home-content {
        padding: 0 8px;
        justify-content: start;
    }

    .hero-section h1 {
        width: 90%;
        font-size: 1.75rem; /* Adjust font size for smaller screens */
    }

    .about-section {
        font-size: var(--sl-font-size-x-large);
        margin: 0 auto;
    }

    .about-section p {
        width: 90%;
        font-size: 1rem;
    }


    .newsletter-section {
        padding: 32px 16px;
    }

    sl-input.search-input {
        width: 90%;
    }
}