/*
Theme Name: Rollinat Theme
Theme URI: https://garagerollinat.com
Author: Garage Rollinat
Description: Thème moderne pour Garage Rollinat
Version: 1.0
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    color: #1a1a1a;
    background: #fff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
#header {
    background: #1a1a1a;
    border-bottom: 3px solid #BC1424;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo img {
    max-height: 60px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: #BC1424;
}

.phone-btn {
    background: #BC1424;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 3px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s;
}

.phone-btn:hover {
    background: #8f0f1a;
}

/* HERO */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('') center/cover no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 64px;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 20px;
    color: #cccccc;
    margin-bottom: 30px;
}

.btn-primary {
    background: #BC1424;
    color: #fff;
    padding: 15px 35px;
    border-radius: 3px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: #8f0f1a;
    color: #fff;
}

/* SECTIONS */
.section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 38px;
    font-weight: 900;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.section-title span {
    color: #BC1424;
}

.section-divider {
    width: 50px;
    height: 3px;
    background: #BC1424;
    margin-bottom: 40px;
}

/* FOOTER */
#footer {
    background: #1a1a1a;
    color: #ccc;
    border-top: 3px solid #BC1424;
    padding: 60px 0 30px;
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 15px;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #BC1424;
}

.footer-col ul {
    list-style: none;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: #888;
}