/* Polices locales */
@font-face {
    font-family: 'Orbitron';
    src: url('../fonts/Orbitron-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Orbitron';
    src: url('../fonts/Orbitron-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

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

body {
    font-family: 'Inter', Arial, sans-serif;
    background-color: #0f0f11;
    color: #e0e0e0;
    line-height: 1.6;
}

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

/* Header */
header {
    background: linear-gradient(to bottom, #0a0a0c, #111114);
    border-bottom: 1px solid #222;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

.logo a {
    color: #00d4ff;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    text-decoration: none;
    font-weight: bold;
}

.logo span {
    color: #ff007a;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #00d4ff;
    text-shadow: 0 0 6px rgba(0, 212, 255, 0.6);
}

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

.hamburger span {
    width: 28px;
    height: 3px;
    background: #fff;
}

/* Hero */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('assets/images/hero-bg.png') center/cover no-repeat; /* ajoute une image bg si tu veux */
    text-align: center;
    padding: 8rem 0 6rem;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #00d4ff;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    background: #ff007a;
    color: white;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #00d4ff;
    transform: translateY(-3px);
}

/* Why us */
.why-us {
    padding: 4rem 0;
    background: #1a1a1e;
}

.why-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #00d4ff;
}

.benefits {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.benefits li {
    background: #222;
    margin: 1rem 0;
    padding: 1rem;
    border-radius: 8px;
    border-left: 5px solid #ff007a;
}

/* Services */
.services-preview {
    padding: 5rem 0;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #00d4ff;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.card {
    background: #1a1a1e;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
    border: 1px solid #222;
}

.card:hover {
    transform: translateY(-10px);
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card h3 {
    padding: 1.2rem 1.5rem 0.5rem;
    color: #00d4ff;
}

.card p {
    padding: 0 1.5rem 1.5rem;
    color: #aaa;
}

.card a {
    display: block;
    padding: 0 1.5rem 1.8rem;
    color: #ff007a;
    text-decoration: none;
    font-weight: 500;
}

/* Footer */
footer {
    background: #0a0a0c;
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid #222;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #111;
        flex-direction: column;
        padding: 1rem 0;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}

/* Hero page spécifique */
.hero-page {
    padding: 6rem 0 4rem;
}

/* Carousel */
.carousel-section {
    padding: 4rem 0;
    background: #1a1a1e;
}

.carousel {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #222;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    min-width: 100%;
    flex-shrink: 0;
}

.carousel-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 2rem;
    border-radius: 50%;
}

.carousel-prev { left: 15px; }
.carousel-next { right: 15px; }

/* Tableau */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: #222;
    border: 1px solid #333;
}

th, td {
    padding: 1rem;
    text-align: center;
    border: 1px solid #444;
}

th {
    background: #00d4ff;
    color: #0f0f11;
    font-weight: bold;
}

tr:nth-child(even) {
    background: #1a1a1e;
}

/* Liste étapes */
.steps-list {
    list-style: none;
    counter-reset: step;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 0;
}

.steps-list li {
    position: relative;
    padding: 1rem 1rem 1rem 4.5rem;
    margin: 1.2rem 0;
    background: #222;
    border-radius: 8px;
    border-left: 5px solid #ff007a;
    font-size: 1.1rem;
    line-height: 1.5;
}

.steps-list li::before {
    content: counter(step);
    counter-increment: step;
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    background: #444;
    color: #00d4ff;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 0 8px rgba(0, 212, 255, 0.3);
}

/* CTA */
.cta {
    text-align: center;
    padding: 5rem 0;
    background: linear-gradient(to bottom, #111114, #0a0a0c);
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #00d4ff;
}

.btn-small {
    display: inline-block;
    background: #ff007a;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.95rem;
}

.opti-card {
    border: 1px solid #333;
}

.opti-card h3 {
    background: #222;
    padding: 1rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #00d4ff;
}

.opti-card ul {
    list-style: none;
    padding: 0 1.5rem 1rem;
}

.opti-card ul li {
    margin: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.opti-card ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ff007a;
}

/* Tarifs table */
.tarifs {
    padding: 5rem 0;
    background: #1a1a1e;
}

.tarifs h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.tarifs p {
    text-align: center;
    margin-bottom: 2rem;
    color: #aaa;
}

/* Liste services */
.services-list {
    padding: 4rem 0;
}

.services-ul {
    max-width: 800px;
    margin: 0 auto;
    list-style: none;
}

.services-ul li {
    background: #222;
    margin: 1rem 0;
    padding: 1.2rem 1.5rem;
    border-radius: 8px;
    border-left: 5px solid #00d4ff;
    font-size: 1.1rem;
}

/* Contact grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-card {
    background: #1a1a1e;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #222;
    text-align: center;
}

.contact-card h2 {
    color: #00d4ff;
    margin-bottom: 1.5rem;
}

.qr-code {
    width: 180px;
    height: 180px;
    margin: 1.5rem auto;
    display: block;
    border: 8px solid #fff;
    border-radius: 12px;
}

.qr-text, .note {
    color: #aaa;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

/* Formulaire */
.contact-form {
    padding: 4rem 0;
    background: #111114;
    text-align: center;
}

.contact-form h2 {
    margin-bottom: 2rem;
    color: #00d4ff;
}

form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

label {
    display: block;
    margin: 1rem 0 0.5rem;
    font-weight: 500;
}

input, select, textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #444;
    border-radius: 6px;
    background: #222;
    color: #e0e0e0;
    font-size: 1rem;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #00d4ff;
}

button[type="submit"] {
    margin-top: 1.5rem;
}

.form-note {
    margin-top: 1rem;
    color: #888;
    font-size: 0.9rem;
}

/* Liste infos */
.contact-list {
    list-style: none;
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
}

.contact-list li {
    margin: 0.8rem 0;
    font-size: 1.1rem;
}

/* Page 404 */
.error-404 {
    text-align: center;
    padding: 8rem 0 10rem;
    min-height: 70vh;
    background: linear-gradient(to bottom, #0f0f11, #1a1a1e);
}

.error-404 h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 8rem;
    color: #ff007a;
    margin-bottom: 1rem;
    line-height: 1;
}

.error-404 h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #00d4ff;
}

.error-404 p {
    font-size: 1.3rem;
    margin: 1rem 0;
    color: #ccc;
}

.error-404 span#countdown {
    font-weight: bold;
    color: #ff007a;
    font-size: 1.5rem;
}

/* Logo avec une lueur autour */
.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Image du pot */
.logo-img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 4px rgba(0, 212, 255, 0.8))
            drop-shadow(0 0 8px rgba(255, 0, 122, 0.4));
    transition: filter 0.4s ease, transform 0.3s ease;
}

.logo-link:hover .logo-img {
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.6))
            drop-shadow(0 0 12px rgba(255, 0, 122, 0.4));
    transform: scale(1.04);       /* zoom très léger au hover */
}

/* Texte "PC Custom" */
.logo-text.neon-pink {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ff007a;
    text-shadow: 
        0 0 4px rgba(255, 0, 122, 0.8),
        0 0 8px rgba(255, 0, 122, 0.6);
    letter-spacing: 1px;
    transition: text-shadow 0.4s ease, transform 0.3s ease;
}

.logo-link:hover .logo-text.neon-pink {
    text-shadow: 
        0 0 8px rgba(255, 0, 122, 0.7),
        0 0 14px rgba(255, 0, 122, 0.5),
        0 0 20px rgba(255, 0, 122, 0.3);
    transform: scale(1.03);
}

/* Mobile mais j'ai pas eu le temps de finir c'est bizarre un peu */
@media (max-width: 768px) {
    .logo-img {
        height: 40px;
    }
    .logo-text.neon-pink {
        font-size: 1.6rem;
    }
    .logo-link {
        gap: 8px;
    }
}