/* === DEMO BANNER === */
.demo-banner {
    background: #ff9800;
    color: #fff;
    text-align: center;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}

.navbar {
    top: 36px !important;
}

body {
    padding-top: 36px;
}

/* === VARIABLES === */
:root {
    --fr-blue: #002395;
    --fr-red: #ED2939;
    --pk-green: #01411C;
    --pk-green-light: #3d8b37;
    --pk-white: #FFFFFF;
    --gold: #C9A84C;
    --text-dark: #1a1a2e;
    --text-light: #555;
    --bg-light: #f8f9fa;
    --bg-alt: #f0f4f0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --transition: all 0.3s ease;
}

/* === RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.3rem;
    font-weight: 700;
}

.logo-fr {
    color: var(--fr-blue);
}

.logo-pk {
    color: var(--pk-green);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--pk-green);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--fr-blue), var(--pk-green));
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
}

/* === HERO === */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--fr-blue) 0%, var(--pk-green) 50%, var(--pk-green-light) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
    background-size: 50px 50px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-flags {
    font-size: 3rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.flag-separator {
    color: var(--gold);
    font-size: 1.5rem;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), #e6b84d);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.6);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--pk-green);
    color: var(--pk-green);
    margin: 0.3rem;
}

.btn-outline:hover {
    background: var(--pk-green);
    color: white;
    transform: translateY(-2px);
}


/* === SECTIONS === */
.section {
    padding: 5rem 2rem;
}

.section-alt {
    background: var(--bg-alt);
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--fr-blue), var(--pk-green));
    margin: 0.8rem auto 2rem;
    border-radius: 2px;
}

.section-desc {
    text-align: center;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

/* === ABOUT GRID === */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.about-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.about-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-card h3 {
    margin-bottom: 0.8rem;
    color: var(--pk-green);
}

.about-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}


/* === EVENTS === */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-card {
    display: flex;
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    align-items: flex-start;
}

.event-featured {
    border-left: 5px solid var(--pk-green);
    background: linear-gradient(135deg, #ffffff 0%, #f0f9f0 100%);
}

.event-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-hover);
}

.event-time {
    font-weight: 600;
    color: var(--pk-green);
    margin-bottom: 0.5rem;
}

.event-details-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(1, 65, 28, 0.05);
    border-radius: 8px;
}

.event-details-list li {
    padding: 0.3rem 0;
    font-size: 0.9rem;
    color: var(--text-light);
    padding-left: 1.2rem;
    position: relative;
}

.event-details-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.event-date {
    text-align: center;
    min-width: 70px;
    padding: 0.8rem;
    background: linear-gradient(135deg, var(--pk-green), var(--pk-green-light));
    border-radius: 10px;
    color: white;
}

.event-day {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
}

.event-month {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-info h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.event-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.event-location {
    font-size: 0.85rem;
    color: var(--pk-green);
    font-weight: 500;
}

/* === PRICING / ADHESION === */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: white;
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.pricing-featured {
    border: 3px solid var(--pk-green);
    transform: scale(1.02);
}

.pricing-featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--pk-green), var(--pk-green-light));
    color: white;
    padding: 0.3rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.pricing-amount {
    margin-bottom: 1.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--pk-green);
}

.period {
    color: var(--text-light);
    font-size: 1rem;
}

.pricing-features {
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    border-bottom: 1px solid #eee;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* === PAYMENT INFO === */
.payment-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.payment-method h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.payment-method p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* === ADHESION SINGLE === */
.adhesion-single {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.adhesion-single .pricing-card {
    max-width: 400px;
    width: 100%;
}

/* === ARTICLES PUBLIC === */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.article-card {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.article-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.article-card-date {
    font-size: 0.8rem;
    color: var(--pk-green);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.article-card-category {
    display: inline-block;
    background: var(--bg-alt);
    color: var(--pk-green);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.article-card h3 {
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.article-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.empty-public {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    grid-column: 1 / -1;
    padding: 2rem;
}

/* === ADMIN LINK === */
.admin-link {
    color: #666;
    transition: var(--transition);
}

.admin-link:hover {
    color: var(--gold);
}

/* === DONATIONS === */
.donation-box {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.donation-content {
    padding: 3rem;
    text-align: center;
}

.donation-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.donation-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.donation-content > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.donation-amounts {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.donation-btn {
    padding: 0.7rem 1.5rem;
    border: 2px solid var(--pk-green);
    background: transparent;
    color: var(--pk-green);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.donation-btn:hover,
.donation-btn.active {
    background: var(--pk-green);
    color: white;
}

.donation-btn-custom {
    border-color: var(--gold);
    color: var(--gold);
}

.donation-btn-custom:hover {
    background: var(--gold);
    color: var(--text-dark);
}

.donation-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.donation-note {
    font-size: 0.8rem;
    color: #999;
    font-style: italic;
}

/* === CONTACT === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 1.5rem;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-alt);
    border-radius: 10px;
}

.contact-item h4 {
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 0.3rem;
}

.social-link {
    background: var(--bg-alt);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--pk-green);
    color: white;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pk-green);
    background: white;
}

.form-group textarea {
    resize: vertical;
}

/* === FOOTER === */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 2rem 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-about p {
    color: #aaa;
    margin-top: 0.8rem;
    font-size: 0.9rem;
}

.footer-links h4,
.footer-legal h4 {
    margin-bottom: 1rem;
    color: var(--gold);
}

.footer-links a,
.footer-legal a {
    display: block;
    padding: 0.3rem 0;
    color: #aaa;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: #777;
    font-size: 0.85rem;
}

/* === RESPONSIVE === */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .event-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .event-details-list {
        grid-template-columns: 1fr;
    }

    .pricing-featured {
        transform: none;
    }

    .pricing-featured:hover {
        transform: translateY(-5px);
    }
}
