/* styles.css - Design moderne pour FastFix 72 */

/* Polices et reset */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

/* Navigation */
.navbar {
    background: linear-gradient(90deg, #007bff, #0056b3);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}
.navbar-nav .nav-link {
    font-weight: 500;
    transition: color 0.3s;
}
.navbar-nav .nav-link:hover {
    color: #ffc107 !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%), url('https://source.unsplash.com/featured/?repair,phone') no-repeat center/cover;
    height: 500px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}
.hero > div {
    position: relative;
    z-index: 2;
}
.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.hero .btn {
    background-color: #28a745;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s;
}
.hero .btn:hover {
    background-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Sections générales */
.section {
    padding: 60px 0;
}
.section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #007bff;
    font-weight: bold;
}

/* Cartes (Services et Ventes) */
.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 30px;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.card-img-top {
    height: 200px;
    object-fit: cover;
}
.card-title {
    font-weight: bold;
    color: #007bff;
}
.card .btn {
    background-color: #007bff;
    border: none;
    border-radius: 25px;
    transition: background-color 0.3s;
}
.card .btn:hover {
    background-color: #0056b3;
}

/* Table Tarifs */
.table {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.table thead {
    background-color: #007bff;
    color: white;
}
.table-striped tbody tr:nth-of-type(odd) {
    background-color: #f1f3f4;
}

/* Formulaire Contact */
#contactForm {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}
.form-label {
    font-weight: bold;
    color: #007bff;
}
.form-control {
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 10px;
    transition: border-color 0.3s;
}
.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0,123,255,0.5);
}
.btn-primary {
    background-color: #007bff;
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-size: 1.1rem;
    transition: all 0.3s;
}
.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Footer */
footer {
    background: linear-gradient(90deg, #343a40, #495057);
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .section h2 {
        font-size: 2rem;
    }
    .card {
        margin-bottom: 20px;
    }
}
