/* index.css */

body {
    background-color: #f9f9fb;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

h1 {
    font-size: 2.8rem;
    color: #0d6efd;
}

p.lead {
    font-size: 1.25rem;
    color: #333;
}

.container {
    padding-top: 0px;
    padding-bottom: 0px;
}

.btn {
    margin: 0 10px;
    padding: 10px 20px;
    font-weight: 500;
}

.btn-success {
    background-color: #198754;
    border: none;
}

.btn-outline-primary {
    border: 2px solid #0d6efd;
    color: #0d6efd;
}

.btn-outline-primary:hover {
    background-color: #0d6efd;
    color: #fff;
}
a {
    text-decoration: none;
}

a:hover {
    text-decoration: none !important; /* 🔥 empêche les overrides Bootstrap ou autres */
}
.video-section {
    text-align: center;
    background-color: #f9f9f9;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    margin-top: 60px;
}

.tutorial-video {
    width: 100%;
    max-width: 720px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    outline: none;
}

.video-section h2 {
    color: #007bff;
    font-weight: bold;
}

@media (max-width: 768px) {
    .tutorial-video {
        width: 100%;
        height: auto;
    }
}
