/* ===== LePet.sk Info Pages (O nás, Kontakt, Ochrana, Majitelia) ===== */
/* Design tokens match header.css / footer.css / species.css */

.pg-page {
    background: #f5f7f5;
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.7;
    margin: 0;
    padding: 0;
}

.pg-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

/* --- Hero banner (reuses species hero colors) --- */
.pg-hero {
    background: linear-gradient(135deg, #0f1f15 0%, #1a332a 100%);
    padding: 40px 0;
    color: #fff;
    text-align: center;
}

.pg-hero h1 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 700;
    margin: 0 0 8px;
    color: #fff;
}

.pg-hero .pg-subtitle {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    margin: 0;
    font-weight: 400;
}

/* --- Cards --- */
.pg-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.pg-card h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a332a;
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #2E7D32;
}

.pg-card p,
.pg-card li {
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.pg-card ul {
    padding-left: 20px;
}

.pg-card li {
    margin-bottom: 8px;
}

.pg-card a {
    color: #2E7D32;
    text-decoration: none;
    font-weight: 500;
}

.pg-card a:hover {
    color: #1B5E20;
    text-decoration: underline;
}

/* --- Highlight box --- */
.pg-highlight {
    background: #edf5ee;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #2E7D32;
    margin: 20px 0;
}

.pg-highlight p {
    margin-bottom: 5px;
}

.pg-highlight p:last-child {
    margin-bottom: 0;
}

/* --- Stats grid (O nás) --- */
.pg-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.pg-stat {
    text-align: center;
    padding: 20px 12px;
    background: #edf5ee;
    border-radius: 10px;
}

.pg-stat .pg-stat-num {
    font-size: 2rem;
    color: #2E7D32;
    font-weight: 700;
    display: block;
    line-height: 1.2;
}

.pg-stat .pg-stat-label {
    font-size: 0.85rem;
    color: #666;
    margin-top: 4px;
    display: block;
}

/* --- Team grid (Majitelia) --- */
.pg-team {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 24px 0;
}

.pg-team-card {
    text-align: center;
    background: #fff;
    border-radius: 12px;
    padding: 28px 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.pg-team-card img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #2E7D32;
    margin-bottom: 14px;
}

.pg-team-card h3 {
    font-size: 1.1rem;
    color: #1a332a;
    margin: 0 0 4px;
}

.pg-team-card .pg-role {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
    margin-bottom: 12px;
}

.pg-team-card .pg-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #2E7D32;
    text-decoration: none;
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid #2E7D32;
    transition: background 0.2s, color 0.2s;
}

.pg-team-card .pg-social-btn:hover {
    background: #2E7D32;
    color: #fff;
    text-decoration: none;
}

/* --- Contact info grid --- */
.pg-contact-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 14px;
    align-items: center;
    font-size: 0.95rem;
}

.pg-contact-grid i {
    color: #2E7D32;
    width: 20px;
    text-align: center;
}

/* --- Map --- */
.pg-map {
    margin: 24px 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e0e8e2;
}

.pg-map iframe {
    display: block;
    width: 100%;
    height: 350px;
    border: 0;
}

/* --- Contact form --- */
.pg-form {
    margin-top: 16px;
}

.pg-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.pg-form-group {
    margin-bottom: 18px;
}

.pg-form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: #1a332a;
}

.pg-form-group .pg-required {
    color: #c0392b;
}

.pg-form-group input,
.pg-form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s;
    box-sizing: border-box;
    background: #fff;
}

.pg-form-group input:focus,
.pg-form-group textarea:focus {
    outline: none;
    border-color: #2E7D32;
    box-shadow: 0 0 0 3px rgba(46,125,50,0.1);
}

.pg-form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.pg-gdpr {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0;
    font-size: 0.85rem;
    color: #666;
}

.pg-gdpr input[type="checkbox"] {
    margin-top: 3px;
    width: auto;
    accent-color: #2E7D32;
}

.pg-gdpr a {
    color: #2E7D32;
}

.pg-submit {
    background: #2E7D32;
    color: #fff;
    border: none;
    padding: 14px 36px;
    font-size: 0.95rem;
    font-family: inherit;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.pg-submit:hover {
    background: #1B5E20;
    transform: translateY(-2px);
}

.pg-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

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

    .pg-team {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pg-team-card img {
        width: 120px;
        height: 120px;
    }

    .pg-form-row {
        grid-template-columns: 1fr;
    }

    .pg-map iframe {
        height: 250px;
    }

    .pg-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .pg-hero {
        padding: 28px 15px;
    }

    .pg-hero h1 {
        font-size: 1.4rem;
    }

    .pg-card {
        padding: 20px 16px;
    }

    .pg-stats {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .pg-stat .pg-stat-num {
        font-size: 1.6rem;
    }
}
