/* Palette Rofalco : Noir Graphite, Blanc Neige, Orange Industriel */ :root {
  --bg: #0f1213;
  --card: #1a1e20;
  --accent: #ff7a21; /* Orange vif type Rofalco */
  --text: #e0e0e0;
  --text-muted: #a0a0a0;
  --white: #ffffff;
  --maxw: 1100px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}
/* Header & Hero */
.roofer_theme {
  background: linear-gradient(rgba(15, 18, 19, 0.8), rgba(15, 18, 19, 0.8)), url('roofer_theme-bg.jpg'); /* Prévoir une image de fond */
  background-size: cover;
  background-position: center;
  padding: 40px 0 80px;
  border-bottom: 4px solid var(--accent);
}
.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}
.logo {
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.logo span {
  color: var(--accent);
}
.tel-btn {
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 4px;
  font-weight: bold;
  transition: 0.3s;
}
.tel-btn:hover {
  background: #e66a1a;
}
.roofer_theme-content h1 {
  font-size: 3rem;
  font-weight: 800;
  max-width: 700px;
  margin: 0;
  line-height: 1.1;
}
/* Galerie */
.gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: -40px auto 40px;
}
.gallery-item img {
  width: 200px;
  height: 200px;
  border-radius: 50%; /* Garde l'aspect rond demandé */
  object-fit: cover;
  border: 5px solid var(--bg);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
/* Services */
.service-card {
  background: var(--card);
  display: flex;
  gap: 30px;
  padding: 40px;
  margin-bottom: 30px;
  border-radius: 8px;
  align-items: center;
  border-left: 0px solid var(--accent);
  transition: border 0.3s;
}
.service-card:hover {
  border-left: 5px solid var(--accent);
}
.service-card.alt {
  flex-direction: row-reverse;
  background: transparent;
  border: 1px solid #333;
}
.service-icon {
  font-size: 40px;
  background: rgba(255, 122, 33, 0.1);
  padding: 10px;
  border-radius: 600px;
  width: 100%;
  max-width: 70px;
  text-align: center;
  max-height: 70px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.service-text h2 {
  color: var(--accent);
  margin-top: 0;
}
.service-text ul {
  list-style: none;
  padding: 0;
}
.service-text li::before {
  content: "✓";
  color: var(--accent);
  margin-right: 10px;
  font-weight: bold;
}
/* Footer Info */
.info-footer {
  text-align: center;
  padding: 40px;
  background: var(--card);
  margin: 60px 0;
  border-radius: 12px;
}
footer {
  text-align: center;
  padding: 30px;
  color: var(--text-muted);
  font-size: 0.9rem;
}
/* Responsive */
@media (max-width: 768px) {
  .roofer_theme-content h1 {
    font-size: 2rem;
  }
  .top-nav {
    flex-direction: column;
    gap: 20px;
  }
  .gallery {
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }
  .service-card, .service-card.alt {
    flex-direction: column;
    text-align: center;
  }
}