/* ===== AZURERP - THÈME GRÈCE ANTIQUE ===== */
/* Palette de couleurs inspirée des temples grecs, poteries et mythologie */

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

:root {
    /* Couleurs Principales - Grèce Antique */
    --marble-white: #f5f5dc;      /* Marbre des temples */
    --stone-gray: #8b8680;        /* Pierre antique */
    --terracotta: #d4a574;        /* Terre cuite des poteries */
    --ocean-blue: #1e3a5f;        /* Mer Égée profonde */
    --olive-green: #6b7c3a;       /* Oliviers sacrés */
    --gold: #d4af37;              /* Or des dieux */
    --bronze: #cd7f32;            /* Bronze des armures */
    --dark-stone: #2a2826;        /* Pierre sombre */

    /* Variations */
    --light-marble: #faf8f0;
    --dark-ocean: #16293f;
    --light-gold: #f4d67f;
    --aged-parchment: #e8dcc4;

    /* Fonctionnels */
    --text-primary: #2a2826;
    --text-secondary: #5a5855;
    --text-light: #f5f5dc;
    --border-color: rgba(139, 134, 128, 0.3);
    --shadow: rgba(42, 40, 38, 0.15);

    /* Gradients Grecs */
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4d67f 50%, #d4af37 100%);
    --gradient-stone: linear-gradient(180deg, #8b8680 0%, #6b6763 100%);
    --gradient-ocean: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Crimson Text', 'Lora', 'Libre Baskerville', serif;
    background-color: var(--aged-parchment);
    background-image:
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect fill="%23e8dcc4" width="100" height="100"/><rect fill="%23d4c9b0" width="50" height="50" opacity="0.1"/><rect fill="%23d4c9b0" x="50" y="50" width="50" height="50" opacity="0.1"/></svg>');
    background-size: 100px 100px;
    color: var(--text-primary);
    line-height: 1.8;
    overflow-x: hidden;
}

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

/* ===== PATTERN GREC (MÉANDRE) ===== */
.greek-border-top,
.greek-border-bottom {
    height: 8px;
    background-image: repeating-linear-gradient(
        90deg,
        var(--gold) 0px,
        var(--gold) 8px,
        transparent 8px,
        transparent 16px
    ),
    repeating-linear-gradient(
        0deg,
        var(--gold) 0px,
        var(--gold) 8px,
        transparent 8px,
        transparent 16px
    );
    background-size: 16px 16px;
}

.greek-border-top {
    border-bottom: 2px solid var(--gold);
}

.greek-border-bottom {
    border-top: 2px solid var(--gold);
}

/* ===== COLONNES GRECQUES (Décoratifs) ===== */
.column-decoration {
    position: relative;
}

.column-decoration::before,
.column-decoration::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 100%;
    background:
        linear-gradient(180deg,
            var(--stone-gray) 0%,
            var(--stone-gray) 20%,
            var(--marble-white) 20%,
            var(--marble-white) 95%,
            var(--stone-gray) 95%
        );
    border-left: 3px solid var(--gold);
    border-right: 3px solid var(--gold);
    opacity: 0.3;
}

.column-decoration::before {
    left: -60px;
    top: 0;
}

.column-decoration::after {
    right: -60px;
    top: 0;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, var(--dark-stone) 0%, #3a3633 100%);
    border-bottom: 4px solid var(--gold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 8px;
    background-image: repeating-linear-gradient(
        90deg,
        var(--gold) 0px,
        var(--gold) 12px,
        transparent 12px,
        transparent 24px
    );
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-brand-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.brand-text {
    font-family: 'Cinzel', 'IM Fell DW Pica', serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--light-marble);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.brand-accent {
    color: var(--gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-link {
    color: var(--marble-white);
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger span {
    width: 28px;
    height: 3px;
    background: var(--gold);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    position: relative;
    background:
        linear-gradient(rgba(232, 220, 196, 0.95), rgba(232, 220, 196, 0.95)),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%231e3a5f" width="1200" height="800"/></svg>');
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(42, 40, 38, 0.3) 0%, transparent 100%);
}

.hero-content {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.hero-tag {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--dark-stone);
    border: 3px solid var(--gold);
    border-radius: 0;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 2rem;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    position: relative;
}

.hero-tag::before,
.hero-tag::after {
    content: '◆';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 0.8rem;
}

.hero-tag::before {
    left: 0.5rem;
}

.hero-tag::after {
    right: 0.5rem;
}

.hero-title {
    font-family: 'Cinzel', 'IM Fell DW Pica', serif;
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--dark-stone);
    text-shadow:
        2px 2px 0 var(--gold),
        4px 4px 8px rgba(212, 175, 55, 0.3);
    letter-spacing: 2px;
}

.title-line {
    display: block;
}

.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.5));
}

.hero-subtitle {
    font-family: 'Philosopher', 'Crimson Text', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--ocean-blue);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 2;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid var(--gold);
    border-radius: 0;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stat::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border: 1px solid var(--gold);
    opacity: 0.3;
}

.stat-value {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--ocean-blue);
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BOUTONS STYLE GREC ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.2rem 3rem;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--dark-stone);
    border: 3px solid var(--bronze);
    box-shadow:
        0 6px 20px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 10px 30px rgba(212, 175, 55, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background: rgba(139, 134, 128, 0.2);
    color: var(--dark-stone);
    border: 3px solid var(--stone-gray);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(139, 134, 128, 0.4);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ===== SECTIONS ===== */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-tag {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--bronze);
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.section-tag::before,
.section-tag::after {
    content: '◆';
    margin: 0 1rem;
    color: var(--gold);
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--dark-stone);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background: var(--gradient-gold);
    margin: 1.5rem auto 0;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.9;
}

/* ===== CARTES STYLE TEMPLE ===== */
.info-grid,
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.info-card,
.feature-card {
    background: rgba(255, 255, 255, 0.8);
    border: 3px solid var(--stone-gray);
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.info-card::before,
.feature-card::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 1px solid var(--gold);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.info-card:hover,
.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3);
}

.info-card:hover::before,
.feature-card:hover::before {
    opacity: 1;
}

.card-header {
    margin-bottom: 1.5rem;
    position: relative;
}

.card-header h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--ocean-blue);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-line {
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
}

.info-card p,
.feature-card p {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1.1rem;
}

.feature-number {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--gold);
    opacity: 0.2;
    margin-bottom: 1rem;
    line-height: 1;
}

.feature-card h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--ocean-blue);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .column-decoration::before,
    .column-decoration::after {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--dark-stone);
        flex-direction: column;
        gap: 0;
        padding: 2rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 1.2rem 0;
        font-size: 1.3rem;
        width: 100%;
        text-align: center;
    }

    .burger {
        display: flex;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }
}
.nav-link.btn-join {
    background: var(--gradient-gold);
    color: var(--dark-stone);
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    border: 2px solid var(--bronze);
    font-weight: 700;
}

.nav-link.btn-join:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

@media (max-width: 768px) {
    .nav-link.btn-join {
        margin-top: 1rem;
        width: 100%;
        text-align: center;
    }
}
