/* ABOUT */
.about {
    padding: 140px 20px;
    text-align: center;
    background: var(--background-color);
}

.about h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.about-content {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.about-content img {
    width: 400px;
    max-width: 100%;
    border-radius: 16px;
}

.about-content .text {
    flex: 1;
    text-align: left;
}

/* HORSES */
.horses {
    background: var(--foreground-color);
    padding: 60px 20px;
    text-align: center;
}

.horse-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto;
}

.horse img {
    width: 100%;
    border-radius: 12px;
}

.horses-text {
    max-width: 700px;
    margin: 0 auto;
}

/* MAP */
.map-section {
    background: var(--background-color);
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.map-section iframe {
    width: 100%;
    max-width: 900px;
    height: 400px;
    border-radius: 12px;
}

/* CONTACT */
.contact {
    background: var(--foreground-color);
    text-align: center;
    padding: 60px 20px;
}

.contact p {
    max-width: 600px;
    margin: 0 auto 30px;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.contact-buttons a {
    padding: 12px 30px;
    border-radius: 25px;
    background: var(--accent);
    color: white;
    text-decoration: none;
}

/* MOBILE */
@media (max-width: 800px) {

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-content .text {
        text-align: center;
    }

    .horse-grid {
        grid-template-columns: 1fr;
    }

    .contact-buttons {
        flex-direction: column;
    }
}
