/* =========================================
   BASE
========================================= */

body {
  margin: 0;
  background: #000;
  font-family: Arial, sans-serif;
  color: #fff;
}


/* =========================================
   HEADER
========================================= */

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 20px 25px 10px;
  border-bottom: 1px solid #222;
}

/* Bloc logo + titre */
.header-left {
  display: flex;
  align-items: center;
}

/* LOGO */
.logo {
  height: 110px;     /* Taille du logo */
  width: auto;
  margin-right: 25px;
  display: block;
}

/* TITRE (Enya Security) */
.site-title {
  display: flex;
  flex-direction: column;
  line-height: 0.85;
}

.title-enya {
  color: #ff00e6;
  font-size: 60px;
  font-weight: bold;
  text-shadow: 0 0 18px #ff00e6;
}

.title-security {
  color: #ff00e6;
  font-size: 48px;
  font-weight: bold;
  text-shadow: 0 0 12px #ff00e6;
  margin-left: 10px;
}

.subtitle {
  font-size: 2rem;   /* Taille plus petite que le H1 */
  color: #00d9ff;
  text-shadow: 0 0 10px #00d9ff;
  margin-bottom: 20px;
}


/* MENU */
nav {
  display: flex;
  align-items: center;
}

nav a {
  margin: 0 18px;
  color: #00d2ff;
  text-decoration: none;
  font-weight: bold;
  font-size: 26px;
}

nav a:hover {
  text-shadow: 0 0 12px #00d2ff;
}


/* =========================================
   CONTENU
========================================= */

.container {
  padding: 40px;
  max-width: 900px;
  margin: auto;
}

h1 {
  color: #00d2ff;
  text-shadow: 0 0 15px #00d2ff;
  font-size: 40px;
}

p {
  font-size: 20px;
}

.service-link {
    color: #00e5ff;   /* bleu-cyan comme tes autres titres */
    text-decoration: underline; /* si tu veux garder le style du lien */
}

.service-link:hover {
    color: #ffffff;   /* optionnel : couleur blanche au survol */
}


/* =========================================
   SECTION TITLE
========================================= */

.packs-title {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 40px;
  color: white;
}

/* Grid 4 colonnes */
.packs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* Carte pack */
.pack-card {
  background: #111;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
  transition: 0.25s;
}

/* Hover effet néon */
.pack-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255,0,255,0.4),
              0 0 25px rgba(0,150,255,0.4);
}

/* Titre du pack */
.pack-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: white;
}

/* Texte */
.pack-card p {
  color: #ddd;
  line-height: 1.5;
  font-size: 1rem;
}

/* Icônes */
.pack-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

/* Couleurs icônes (Enya Security) */
.pack-icon.essentiel {
  color: #00c8ff; /* bleu néon */
}

.pack-icon.pro {
  color: #ff00e6; /* rose néon */
}

.pack-icon.premium {
  color: #a044ff; /* violet néon */
}

.pack-icon.vip {
  color: #ff66c4; /* rose pastel néon */
}

/* =========================================
   Ce que je vérifie
========================================= */

.section-check {
    text-align: center;
    margin: 40px 0;
}

.neon-title {
    font-size: 2rem;
    color: #00eaff;
    text-shadow: 0 0 12px #00eaff;
    margin-bottom: 25px;
}

/* Grille compacte */
.check-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* Petit bloc */
.check-item {
    width: 180px;
    background: #111;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 12px #8000ff55;
    text-align: center;
    transition: 0.2s;
}

.check-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 18px #ff00ff88;
}

/* Icônes emojis */
.check-item .icon {
    font-size: 2rem;
    margin-bottom: 10px;
    text-shadow: 0 0 8px #ff00ff;
}

/* Texte */
.check-item p {
    font-size: 1rem;
    color: #fff;
    line-height: 1.3;
}


/* =========================================
   call-to-action
========================================= */

.call-to-action {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 80px;
}

.call-to-action p {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: #e6e6e6;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1.2rem;
    font-weight: bold;
    color: black;
    background: linear-gradient(90deg, #00eaff, #ff00d4);
    border-radius: 10px;
    text-decoration: none;
    transition: 0.25s;
    box-shadow: 0 0 20px rgba(255, 0, 212, 0.4);
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 28px rgba(0, 234, 255, 0.6);
}

/* =========================================
 RESPONSIVE : mobiles
========================================= */

@media (max-width: 768px) {

    h1, h2 {
        font-size: 1.7rem !important;
        text-align: center;
    }

    .section p {
        font-size: 1.1rem;
        line-height: 1.5;
        padding: 0 10px;
    }

    .cta-button {
        width: 90%;
        font-size: 1.1rem;
        padding: 14px 0;
    }

    .packs-container {
        flex-direction: column;
        gap: 20px;
    }

    .pack-card {
        width: 90% !important;
        margin: auto;
    }

    .checks-container {
        flex-direction: column;
    }

    .check-item {
        width: 90%;
        margin: auto;
        margin-bottom: 20px;
    }
   header {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 15px 0;
    }

    .header-left {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 10px;
    }

    .logo {
        height: 70px;   /* réduite pour mobile */
        margin-right: 0;
        margin-bottom: 5px;
    }

    .title-enya {
        font-size: 36px;
        line-height: 1;
        margin: 0;
    }

    .title-security {
        font-size: 32px;
        margin: 0;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        padding: 5px 0;
        gap: 8px;
    }

    nav a {
        font-size: 18px;
        margin: 4px 8px;
    }
   .container {
        padding: 20px 15px !important;
        max-width: 100% !important;
        text-align: center;
    }

    .container h1 {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }

    .container p,
    p {
        font-size: 1.1rem !important;
        line-height: 1.5;
        padding: 0 5px;
    }

    h1 {
        font-size: 2rem !important;
    }
}

