/* ================= RESET & BASE ================= */
body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: #f4f6f8;
    color: #2c2c2c;
    line-height: 1.6;
}

h1, h2, h3 {
    margin-bottom: 15px;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}
.command-block {
    background-color: #111;
    color: #00ff88;
    padding: 15px;
    border-radius: 6px;
    font-family: Consolas, monospace;
    font-size: 0.95em;
    margin: 10px 0;
    overflow-x: auto;
}

.doc-image {
    max-width: 100%;
    margin: 25px 0;
    border-radius: 8px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    margin: 40px 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* ================= NAVIGATION ================= */

nav {
    background: #111;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav li {
    margin: 0;
}

nav a {
    display: block;
    padding: 18px 25px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    background: #00a8ff;
}

/* ================= HERO ================= */
header {
    background: linear-gradient(135deg, #1e2a38, #24384f);
    color: white;
    padding: 100px 0;
    text-align: center;
}

header h1 {
    font-size: 2.2rem;
}

header p {
    opacity: 0.9;
}

.btn {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 28px;
    background: #00a8ff;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: 0.3s;
}

.btn:hover {
    background: #008fd1;
}

/* ================= SECTIONS ================= */
section {
    padding: 70px 0;
}


/* ================= A PROPOS ================= */
.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.about img {
    width: 320px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ================= SERVICES ================= */
.services h2 {
    text-align: center;
    margin-bottom: 50px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* ================= WORDPRESS BLOCK ================= */

.web-security {
    background: #eef2f6;
    padding: 70px 0;
}


.web-box {
    background: white;
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    max-width: 900px;
    margin: auto;
}



.web-box h2 {
    text-align: center;
    margin-bottom: 20px;
}

.web-box p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

.wp-list ul {
    max-width: 600px;
    margin: auto;
    line-height: 1.8;
}

/* ================= ZONE ================= */
.zone {
    text-align: center;
}

/* ================= CONTACT ================= */
.contact {
    background: #1e2a38;
    color: white;
    text-align: center;
    padding: 80px 0;
}

.contact form {
    max-width: 600px;
    margin: 40px auto 0;
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 14px;
    margin: 12px 0;
    border-radius: 6px;
    border: none;
}

.contact button {
    padding: 14px 30px;
    background: #00a8ff;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.contact button:hover {
    background: #008fd1;
}

/* ================= FOOTER ================= */
footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 25px 0;
    font-size: 0.9rem;
}
