
@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;
    text-align: center;
    padding-top: 20px;
}







/* 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;
}

.ark-card h2 {
     color: #FFA500; /* Un bel orange */
    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 */
}

.ark-downloads {
    max-width: 1100px;
    margin: 120px auto;
    padding: 20px;
    text-align: center;
    color: var(--ark-text);
}

.ark-downloads h1 {
    font-size: 3rem;
    text-transform: uppercase;
    color: var(--ark-cyan);
    text-shadow: 0 0 15px rgba(0, 243, 255, 0.6);
    border-bottom: 4px solid var(--ark-cyan);
    display: inline-block;
    padding-bottom: 10px;
}

.ark-downloads-desc {
    margin-top: 15px;
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Grille responsive */
.ark-download-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* Cartes de téléchargement */
.ark-download-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 243, 255, 0.2);
    padding: 20px;
    border-radius: 20px;
    transition: 0.3s;
}

.ark-download-card:hover {
    border-color: var(--ark-cyan);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
    transform: translateY(-5px);
}

.ark-download-card h3 {
    color: var(--ark-cyan);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.ark-download-card p {
    opacity: 0.85;
    margin-bottom: 15px;
}

/* Bouton de téléchargement */
.ark-download-btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--ark-cyan);
    color: var(--ark-dark);
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.2s;
}

.ark-download-btn:hover {
    background: #ffffff;
    transform: scale(1.05);
}