/* Style inspiré de luxurycarauto.fr, design professionnel et moderne */
:root {
    --primary: #1a1a1a;
    --accent: #c9a063;
    --background: #f5f5f5;
    --text: #222;
    --white: #fff;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
}
body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: var(--background);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    transition: background 0.5s;
}
header {
    background: var(--primary);
    box-shadow: var(--shadow);
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 2rem;
}
.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}
.nav-links li {
    font-size: 1.1rem;
}
.nav-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: var(--accent);
}
.hero {
    background: var(--primary);
    min-height: calc(100vh - 120px);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
    margin-bottom: 0;
    animation: fadeIn 1s;
}
.hero::after {
    display: none;
    display: block;
    margin: 0 auto 2rem auto;
    max-width: 400px;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    animation: slideUp 1.2s;
}
.hero-content h1 {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}
.hero-content p {
    font-size: 1.3rem;
    color: var(--white);
}
.services {
    padding: 4rem 2rem;
    background: var(--white);
    box-shadow: var(--shadow);
    margin: 2rem auto;
    max-width: 1200px;
    border-radius: 16px;
}
.services-title {
    font-size: 2.2rem;
    color: var(--accent);
    text-align: center;
    margin-bottom: 2rem;
}
.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}
.service-card {
    background: var(--background);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeIn 1s;
}
.service-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0,0,0,0.16);
}
.service-card h3 {
    color: var(--accent);
    margin-bottom: 1rem;
}
.service-card p {
    color: var(--text);
}
.booking {
    padding: 1.5rem 1rem;
    background: var(--white);
    box-shadow: var(--shadow);
    margin: 1.5rem auto 0 auto;
    max-width: 480px;
    border-radius: 16px;
    animation: fadeIn 1s;
    min-height: unset;
    overflow: visible;
}
.booking-title {
    font-size: 2rem;
    color: var(--accent);
    text-align: center;
    margin-bottom: 1.5rem;
}
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    max-width: 350px;
    margin: 0 auto;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
    padding: 0.5rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 0.95rem;
}
.booking-form button {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 0.7rem;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}
.booking-form button:hover {
    background: #b08a4a;
}
.contact {
    padding: 3rem 2rem;
    background: var(--background);
    margin: 2rem auto;
    max-width: 800px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    animation: fadeIn 1s;
}
.contact-title {
    font-size: 2rem;
    color: var(--accent);
    text-align: center;
    margin-bottom: 1.5rem;
}
.contact-info {
    text-align: center;
    color: var(--text);
}
.footer-content {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 2rem 1rem;
    font-size: 1rem;
    letter-spacing: 1px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    z-index: 100;
    animation: fadeIn 1.2s;
}
@media (max-width: 700px) {
    .footer-content {
        position: static;
        width: 100%;
    }
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }
    .services-list {
        grid-template-columns: 1fr;
    }
    .footer-content {
        position: static;
        width: 100%;
    }

}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
}
