﻿section {
    text-align: left;
}

.pdt-info-section {
    background-color: #ffffff;
    color: #333;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
    text-align: left;
}

.pdt-header {
    text-align: center;
    margin-bottom: 35px;
}

    .pdt-header h2 {
        color: #1a4a7a;
        font-size: 2.2rem;
        margin-bottom: 10px;
    }

.pdt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.pdt-card {
    border: 1px solid #eef2f6;
    border-radius: 12px;
    padding: 22px;
    background: #fcfdfe;
    display: flex;
    flex-direction: column;
    border-top: 5px solid #d1d8e0;
}

    .pdt-card h3 {
        margin-top: 0;
        font-size: 1.2rem;
        color: #2c3e50;
        display: flex;
        align-items: center;
        gap: 12px;
        padding-bottom: 12px;
        border-bottom: 1px solid #eee;
    }

.pdt-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.pdt-item {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.pdt-label {
    font-weight: 700;
    font-size: 0.8rem;
    color: #636e72;
    text-transform: uppercase;
}

.pdt-link {
    font-weight: 800;
    color: #2980b9;
    text-decoration: none;
    font-size: 1.05rem;
    margin: 2px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

    .pdt-link:hover {
        color: #e67e22;
        text-decoration: underline;
    }

.pdt-desc {
    font-size: 0.85rem;
    color: #7f8c8d;
}

/* Colori delle Categorie */
.pdt-badge-emergency {
    border-top-color: #e74c3c;
}

.pdt-badge-webcam {
    border-top-color: #34495e;
}
/* Grigio scuro per webcam */
.pdt-badge-rifugi {
    border-top-color: #d35400;
}

.pdt-badge-rental {
    border-top-color: #9b59b6;
}

.pdt-badge-transport {
    border-top-color: #2980b9;
}

.pdt-badge-info {
    border-top-color: #1abc9c;
}

@media (max-width: 600px) {
    .pdt-grid {
        grid-template-columns: 1fr;
    }
}

body {
    background: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 16px;
}

h1, h2 {
    text-align: center;
    color: #2c3e50;
}

.section {
    background: #fff;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

    .section ul {
        list-style: none;
        padding-left: 0;
    }

    .section li {
        margin: 8px 0;
        font-size: 1rem;
    }

        .section li::before {
            margin-right: 8px;
        }

.villages li::before {
    content: "🏘️";
}

.experiences li::before {
    content: "🎒";
}

.contacts li::before {
    content: "📞";
}

.tips li::before {
    content: "💡";
}

a {
    color: #2c3e50;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

@media screen and (max-width: 768px) {
    body {
        padding: 10px;
    }
}

.pdt-badge-webcam {
    border-top: 4px solid #34495e !important;
}
