.flavorful-adventures {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.intro {
    text-align: center;
    margin-bottom: 3rem;
}

.intro h1 {
    font-family: 'VujahdayScript', 'Courier', 'serif';
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #000000;
}

.intro p {
    font-size: 1.2rem;
    color: #000000;
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

.destination {
    background: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 5px 10px #000000;
}

.destination.reverse {
    flex-direction: row-reverse;
}

.destination .text {
    flex: 1;
}

.destination .text h2 {
    font-family: "Oregano", "serif";
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #6262b2;
}

.destination .text p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
}

.destination .image {
    flex: 1;
}

.destination .image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .destination {
        flex-direction: column;
    }
    .destination.reverse {
        flex-direction: column;
    }

    .destination .text h2 {
        text-align: center;
    }
}

@media (max-width: 435px) {
    .flavorful-adventures {
        padding: 1rem;
    }    
}