* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --proxmox-primary: #112855;
    --proxmox-link: #224faa;
    --proxmox-hover: #424077;
    --proxmox-neutral-0: #fff;
    --proxmox-neutral-100: #22262a;
    --proxmox-bg-light: #f0f4fb;
}

body {
    font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--proxmox-neutral-100);
    background: linear-gradient(135deg, var(--proxmox-bg-light) 0%, #ffffff 100%);
}

/* Header */
.header {
    background: linear-gradient(180deg, var(--proxmox-primary) 0%, #1a3d7a 100%);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--proxmox-link);
    box-shadow: 0 8px 32px rgba(34, 79, 170, 0.3);
    color: white;
}

.logo-container {
    margin-bottom: 20px;
}

.header-logo {
    width: auto;
    max-width: 300px;
    height: 100px;
    filter: drop-shadow(0 0 10px rgba(228, 104, 55, 0.5));
    object-fit: contain;
}

.divine-light {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(34, 79, 170, 0.4), transparent);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.header h1 {
    font-size: 3.5em;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(34, 79, 170, 0.8);
    position: relative;
    z-index: 1;
    letter-spacing: 2px;
    color: white;
}

.tagline {
    font-size: 1.3em;
    font-style: italic;
    color: #c3d2e8;
    position: relative;
    z-index: 1;
}

/* Navigation */
.navbar {
    background: rgba(17, 40, 85, 0.95);
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid var(--proxmox-link);
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.navbar a {
    display: block;
    padding: 15px 25px;
    color: #c3d2e8;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.navbar a:hover {
    background: rgba(34, 79, 170, 0.3);
    color: white;
    text-shadow: 0 0 10px rgba(34, 79, 170, 0.8);
}

/* Main sections */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

section {
    margin: 60px 0;
    padding: 40px;
    border-radius: 15px;
    background: rgba(240, 244, 251, 0.7);
    border: 2px solid var(--proxmox-link);
    box-shadow: 0 8px 32px rgba(34, 79, 170, 0.15);
    position: relative;
    color: var(--proxmox-neutral-100);
}

section h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
    color: var(--proxmox-primary);
    text-shadow: 0 0 10px rgba(34, 79, 170, 0.3);
}

.section-logo {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 4em;
    color: rgba(17, 40, 85, 0.1);
    font-weight: bold;
    font-family: Arial, sans-serif;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(34, 79, 170, 0.15), rgba(34, 79, 170, 0.08));
    text-align: center;
    padding: 60px 40px;
}

.shrine {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.proxmox-logo-hero {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.hero-logo {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(228, 104, 55, 0.6));
    animation: float 3s ease-in-out infinite;
}

.hero h2 {
    font-size: 2.8em;
    margin-bottom: 20px;
}

.sacred {
    color: var(--proxmox-link);
    font-weight: bold;
    text-shadow: 0 0 10px rgba(34, 79, 170, 0.6);
}

/* Dogmes Section */
.dogmes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.dogme-card {
    background: linear-gradient(135deg, rgba(34, 79, 170, 0.1), rgba(34, 79, 170, 0.05));
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid var(--proxmox-link);
    transition: all 0.3s ease;
    cursor: pointer;
    color: var(--proxmox-neutral-100);
}

.dogme-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(34, 79, 170, 0.3);
    border-left-color: var(--proxmox-primary);
    background: linear-gradient(135deg, rgba(34, 79, 170, 0.2), rgba(34, 79, 170, 0.1));
}

.dogme-number {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.dogme-card h3 {
    color: var(--proxmox-primary);
    margin-bottom: 12px;
    font-size: 1.3em;
}

.dogme-card p {
    color: #495057;
    line-height: 1.6;
}

/* Miracles Section */
.miracles-list {
    list-style: none;
    margin-top: 30px;
}

.miracles-list li {
    padding: 15px;
    margin: 15px 0;
    background: rgba(34, 79, 170, 0.08);
    border-left: 4px solid var(--proxmox-link);
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    color: var(--proxmox-neutral-100);
}

.miracles-list li:hover {
    background: rgba(34, 79, 170, 0.15);
    transform: translateX(10px);
}

.miracles-list strong {
    color: var(--proxmox-primary);
}

/* Temoignages Section */
.temoignages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.temoignage-card {
    background: linear-gradient(135deg, rgba(34, 79, 170, 0.1), rgba(34, 79, 170, 0.05));
    padding: 25px;
    border-radius: 10px;
    border-top: 3px solid var(--proxmox-link);
    transition: all 0.3s ease;
    color: var(--proxmox-neutral-100);
}

.temoignage-card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(34, 79, 170, 0.3);
}

.quote {
    font-style: italic;
    color: #495057;
    margin-bottom: 15px;
    font-size: 1.1em;
    line-height: 1.8;
}

.author {
    color: var(--proxmox-primary);
    font-weight: bold;
    text-align: right;
    font-size: 0.95em;
}

/* Prophetes Section */
.prophecy {
    font-style: italic;
    color: var(--proxmox-primary);
    font-size: 1.2em;
    margin: 20px 0;
    text-align: center;
    font-weight: bold;
}

/* Prayer Section */
.prayer {
    background: linear-gradient(135deg, rgba(34, 79, 170, 0.15), rgba(34, 79, 170, 0.1));
    border: 3px solid var(--proxmox-link);
}

.prayer-text {
    text-align: center;
    font-size: 1.1em;
    line-height: 2;
    color: var(--proxmox-neutral-100);
}

.prayer-text p {
    margin: 15px 0;
}

.amen {
    color: var(--proxmox-primary);
    font-weight: bold;
    font-size: 1.3em;
    margin-top: 30px;
    text-shadow: 0 0 10px rgba(34, 79, 170, 0.6);
}

/* Conversion Section */
.conversion {
    background: linear-gradient(135deg, rgba(34, 79, 170, 0.1), rgba(34, 79, 170, 0.08));
    border: 3px dashed var(--proxmox-link);
    text-align: center;
}

.conversion h2 {
    color: var(--proxmox-primary);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--proxmox-primary), #224faa);
    color: white;
    box-shadow: 0 5px 15px rgba(34, 79, 170, 0.4);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(34, 79, 170, 0.6);
}

.cta-btn.secondary {
    background: rgba(34, 79, 170, 0.15);
    color: var(--proxmox-link);
    border: 2px solid var(--proxmox-link);
}

.cta-btn.secondary:hover {
    background: rgba(255, 235, 59, 0.3);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: rgba(17, 40, 85, 0.95);
    border-top: 3px solid var(--proxmox-link);
    padding: 30px;
    text-align: center;
    margin-top: 60px;
    color: #c3d2e8;
}

.footer p {
    margin: 10px 0;
}

.disclaimer {
    font-size: 0.9em;
    color: #a0b0d0;
    margin-top: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2em;
    }

    section {
        padding: 25px;
    }

    section h2 {
        font-size: 1.8em;
    }

    .navbar ul {
        flex-direction: column;
    }

    .navbar a {
        padding: 12px 20px;
    }

    .dogmes-grid,
    .temoignages-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
    }

    .proxmox-logo {
        font-size: 3em;
    }
}
