/**
 * Page Gardien Fondateur
 */
:root {
    --green: #2d7a3a;
    --green2: #4a6741;
    --gold: #d4af37;
    --beige: #f5f2e8;
    --dark: #2c3e50;
    --muted: #7f8c8d;
    --white: #fff;
}

body.page-gardien {
    font-family: "Inter", sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: linear-gradient(135deg, var(--beige) 0%, #f0f8f0 100%);
    min-height: 100vh;
    padding-top: 80px;
}

.page-gardien .background-logo {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.07;
    z-index: -1;
    pointer-events: none;
    background-image: url("../../../logo-cooppere-text.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100vw;
    height: 100vh;
    max-width: 1200px;
    max-height: 800px;
}

.page-gardien .main-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1.5rem 2rem;
}

.hero {
    text-align: center;
    padding: 3.5rem 2rem 2.5rem;
    background: var(--white);
    border-radius: 20px;
    border: 2px solid rgba(45, 122, 58, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
    margin-bottom: 2.5rem;
}

.hero-seal {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(45, 122, 58, 0.25);
}

.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 0.6rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--muted);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.hero-intro p {
    max-width: 700px;
    margin: 0 auto 0.9rem;
    color: var(--dark);
    font-size: 0.97rem;
}

.section-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.25rem 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    border: 1.5px solid rgba(45, 122, 58, 0.12);
}

.section-card h2 {
    font-family: "Playfair Display", serif;
    font-size: 1.4rem;
    color: var(--green);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.section-card h2 i {
    color: var(--gold);
}

.creations-lead {
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.creations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
    gap: 0.75rem;
    margin: 1.25rem 0;
}

.creation-item {
    background: linear-gradient(135deg, rgba(45, 122, 58, 0.06), rgba(212, 175, 55, 0.08));
    border: 1.5px solid rgba(212, 175, 55, 0.4);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--green2);
}

.creations-note {
    font-size: 0.88rem;
    color: var(--muted);
    font-style: italic;
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(45, 122, 58, 0.04);
    border-radius: 8px;
    border-left: 3px solid var(--gold);
}

.droits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-top: 1.25rem;
}

.droit-bloc {
    background: rgba(45, 122, 58, 0.04);
    border: 1.5px solid rgba(45, 122, 58, 0.15);
    border-radius: 12px;
    padding: 1.25rem 1.25rem 1rem;
}

.droit-icon {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
    display: block;
}

.droit-bloc strong {
    display: block;
    font-size: 0.95rem;
    color: var(--green);
    margin-bottom: 0.4rem;
}

.droit-bloc p {
    font-size: 0.88rem;
    color: #444;
    line-height: 1.5;
}

.licence-box {
    background: linear-gradient(135deg, rgba(45, 122, 58, 0.07), rgba(212, 175, 55, 0.09));
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 16px;
    padding: 2rem 2.25rem;
    margin-bottom: 2rem;
}

.licence-box h2 {
    font-family: "Playfair Display", serif;
    font-size: 1.4rem;
    color: var(--green);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.licence-box h2 i {
    color: var(--gold);
}

.licence-box p {
    font-size: 0.97rem;
    margin-bottom: 0.8rem;
    color: var(--dark);
}

.page-gardien .btn-pdf {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.85rem 1.75rem;
    background: var(--green);
    color: var(--white);
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s, transform 0.2s;
    margin-top: 0.5rem;
}

.page-gardien .btn-pdf:hover {
    background: #235f2c;
    transform: translateY(-2px);
}

.acte-link {
    text-align: center;
    font-size: 0.88rem;
    color: var(--muted);
    margin: 1rem 0 2.5rem;
}

.acte-link a {
    color: var(--green);
    text-decoration: underline;
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 2rem;
    }

    .section-card {
        padding: 1.5rem 1.25rem;
    }

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

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

@media (max-width: 420px) {
    .droits-grid,
    .creations-grid {
        grid-template-columns: 1fr;
    }
}

@media print {
    .cpn-header,
    .gositeme-footer {
        display: none !important;
    }

    body.page-gardien {
        background: white;
        padding-top: 0;
    }
}
