* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #111;
    color: #fff;
    position: relative;
    --logo-opacity: 0.18;
    --logo-scale: 1;
}
body::before {
    content: "";
    position: fixed;
    top: 50%;
    left: 50%;
    width: 420px; /*taille du logo*/
    height: 420px;
    background-image: url("/Phoenixtech/Img/logo.png"); /*le logo*/
    background-size:contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: var(--logo-opacity); /*trasparence*/
    transform: translate(-50%, -50%) scale(var(--logo-scale));
    pointer-events: none; /*évite les bugs de clic*/
    z-index: -1;
}
/*NAVBAR*/
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #000;
    border-bottom: 1px solid #FFD700;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #FFD700;
}

.nav-links a {
    margin-left: 20px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.nav-links a:hover, .nav-links .active {
    color: #FFD700;
}

/*HERO*/
.repair-hero {
    text-align: center;
    padding: 120px 20px;
    position: relative;
}

.repair-hero h1 {
    font-size: 42px;
    color:#FFD700;
    margin-bottom: 10px;
}

.repair-hero p {
    font-size: 18px;
    opacity: 0.8;
}

/*Logo derrière*/
.hero-with-logo::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 350px;
    height: 350px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(-50%, -50%);
    opacity: 0.15;
    z-index: -1;
}
/*Catégories*/
.repair-categories {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

.repair-categories h2 {
    text-align: center;
    font-size: 32px;
    color: #FFD700;
    margin-bottom: 40px;
}

.repair-box {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 10px;
    transition: 0.3s;
}

.repair-box:hover {
    border-color: #FFD700;
    transform: translateY(-5px);
}

.repair-box h3 {
    font-size: 24px;
    color: #FFD700;
    margin-bottom: 15px;
}

.repair-box ul li {
    margin-bottom: 8px;
    opacity: 0.9;
}

/* CTA */

.cta-repair {
    text-align: center;
    padding: 80px 20px;
}

.cta-repair h2 {
    font-size: 32px;
    color: #FFD700;
}

.cta-repair p {
    margin: 10px 0 20px;
    opacity: 0.8;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: #FFD700;
    color: #000;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background: #fff;
}

@media (max-width: 768px) {
    body::before {
        width: 260px;
        height: 260px;
       /* opacity: 0.22; /*un peu plus visilble sur mobile*/
    }
}