/* =========================================
   Cómo Llegar — Front Page Section
   ========================================= */

/* Family Pitch */
.family-pitch {
    background: #e0e0e0;
    padding: 50px 45px;
    margin-bottom: 60px;
    text-align: center;
}

.family-pitch-lead {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 40px;
    font-family: 'Muli', sans-serif;
}

.family-pitch-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pitch-item {
    padding: 25px 20px;
    background: #e0e0e0;
}

.pitch-item strong {
    display: block;
    font-size: 20px;
    color: #2c2c2c;
    margin-bottom: 8px;
    font-family: 'Lusitana', serif;
}

.pitch-item span {
    font-size: 15px;
    color: #666;
    font-family: 'Muli', sans-serif;
}

.family-pitch-close {
    font-size: 20px;
    color: #b28d63;
    font-style: italic;
    font-family: 'Lusitana', serif;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Location */
.hp-location {
    background: #e0e0e0;
    padding: 80px 5%;
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
}

.location-header {
    text-align: center;
    margin-bottom: 60px;
}

.location-lead {
    font-size: 18px;
    color: #666;
    font-family: 'Muli', sans-serif;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.location-card {
    background: #e0e0e0;
    padding: 45px 40px;
    text-align: center;
}

.location-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
}

.btn-location {
    display: inline-block;
    padding: 14px 35px;
    background-color: #b0a0a7;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    margin: 20px 0;
    transition: all 0.3s ease;
    font-family: 'Muli', sans-serif;
}

.btn-location:hover {
    background-color: #8a7a81;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(176, 160, 167, 0.3);
}

.location-note {
    padding: 15px 20px;
    margin-top: 20px;
}

.distances-list {
    list-style: none;
}

.distances-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.distances-list li svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.distance-time {
    display: inline-block;
    background: #b0a0a7;
    color: white;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: bold;
    min-width: 70px;
    text-align: center;
}

/* Farm image margins */
.location-arrival-img {
    margin-top: 100px;
    margin-bottom: 100px;
}

.location-chinchon-img {
    margin-bottom: 80px;
}

/* Gastronomy */
.gastronomy-section {
    background: #e0e0e0;
    padding: 50px 45px;
    margin-bottom: 60px;
}

.gastronomy-intro {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 35px;
    font-family: 'Muli', sans-serif;
}

.gastronomy-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gastro-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.gastro-item svg {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    margin-top: 4px;
}

.gastro-item h4 {
    margin-bottom: 10px;
}

.gastro-item p {
    margin: 0;
}

/* Visit Section */
.visit-section {
    background: #e0e0e0;
    padding: 50px 0;
}

.visit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.visit-card {
    background: #e0e0e0;
    padding: 30px 25px;
    transition: all 0.3s ease;
}

.visit-card:hover {
    box-shadow: 0 6px 18px rgba(176, 160, 167, 0.12);
    transform: translateY(-3px);
}

.visit-card h4 {
    color: #b0a0a7;
    margin-bottom: 12px;
}

.visit-card p {
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .family-pitch {
        padding: 40px 25px;
    }

    .family-pitch-lead {
        font-size: 16px;
    }

    .family-pitch-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .family-pitch-close {
        font-size: 17px;
    }

    .hp-location {
        padding: 50px 5%;
    }

    .location-lead {
        font-size: 16px;
    }

    .location-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }

    .location-card {
        padding: 35px 25px;
    }

    .btn-location {
        padding: 12px 30px;
        font-size: 15px;
    }

    .gastronomy-section {
        padding: 40px 25px;
    }

    .gastronomy-intro {
        font-size: 16px;
        text-align: center;
    }

    .gastronomy-highlights {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .gastro-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .visit-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .visit-card {
        padding: 25px 20px;
        text-align: center;
    }
}

@media (max-width: 650px) {
    .location-card {
        padding-left: 20px;
        padding-right: 20px;
    }
}
