
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;600;700&display=swap');

:root {
    --ark-cyan: #00f3ff;
    --ark-dark: #0b0e14;
    --ark-glass: rgba(11, 14, 20, 0.85);
    --ark-text: #ffffff;
}

/* ── Reset & base ── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #e0d9c8;
  background-color: #0a0a0a;
}

/* ── Background fixe ── */
.bg-fixed {
  position: fixed;
  inset: 0;
  background-image: url('../images/ArkFond1.jpg'); ;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.bg-fixed::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}






/* 2. SECTION HÉROS (IMAGE DE FOND) */
.ark-hero {
    min-height: 100vh;
    display: flex;
    text-align: center;
    /* AJOUTS POUR L'ALIGNEMENT CÔTE À CÔTE */
    flex-direction: row;      /* Aligne les blocs en ligne */
    justify-content: center;  /* Centre l'ensemble ou 'flex-start' pour coller à gauche */
    align-items: flex-start;  /* Aligne les blocs par le haut */
    gap: 20px;                /* Espace entre les deux blocs */
    padding: 50px;            /* Espace intérieur pour ne pas coller aux bords */
    padding-top: 150px;
}

.ark-hero h1 {
    font-size: 3rem;
    margin: 0;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.8);
    border-bottom: 4px solid var(--ark-cyan);
    padding-bottom: 10px;
    
}



.ark-cta-btn {
    margin-top: 40px;
    background: var(--ark-cyan);
    color: var(--ark-dark);
    padding: 15px 40px;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%); /* Forme futuriste */
    transition: transform 0.2s;
    text-decoration: none;
}

.ark-cta-btn:hover {
    transform: scale(1.05);
    background: #ffffff;
}

/* 3. SECTION CONTENU (CARTES) */
.ark-content {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 50px 20px;
    background: radial-gradient(circle at center, #1a222e 0%, #0b0e14 100%);
    flex-wrap: wrap;
}

.ark-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 243, 255, 0.2);
    padding: 5px; /* Modifié de 10px à 5px */
    width: 300px;
    text-align: center;
    border-radius: 20px;
    transition: 0.3s;
}
.ark-card:hover {
    border-color: var(--ark-cyan);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.1);
    transform: translateY(-5px);
}

.ark-card h3 {
    color: var(--ark-cyan);
    text-transform: uppercase;
}


/* Eviter texte cliquable bleu */
.ark-card-link {
    text-decoration: none; /* Enlève le soulignement */
    color: inherit;        /* Garde la couleur du texte originale */
    display: block;        /* Permet à tout le cadre d'être cliquable */

}




/* Responsive Mobile */
@media (max-width: 768px) {
    .ark-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .ark-hero h1 {
       font-size: 10%;
    }
}

.container-boxes {
    display: flex;
    flex-wrap: wrap;      /* Permet de passer à la ligne si l'écran est trop petit */
    justify-content: center; /* Centre les blocs horizontalement */
    align-items: stretch;    /* Aligne les blocs sur la même ligne */
}