@charset "UTF-8";
/* CSS Document */
 /* themeblue.css - Atelier Baden
    Version: 2.0 | Full Detailed CSS
    Color Palette: #000000 (Black), #0a2fa7 (Royal Blue), #777777 (Grey)
*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&family=Roboto:wght@400;500&display=swap');
:root {
  --primary: #0a2fa7;
  --dark: #000000;
  --grey: #777777;
  --light: #f8f9fa;
  --white: #ffffff;
  --transition: all 0.3s ease-in-out;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  overflow-x: hidden;
}
/* --- Typographie --- */
h1, h2, h3, h4 {
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}
p {
  color: var(--grey);
  margin-bottom: 15px;
}
.highlight {
  color: var(--primary);
}
/* --- Header & Navigation --- */
.top-header {
  background: var(--dark);
  color: var(--white);
  padding: 10px 0;
  font-size: 14px;
}
.header-main {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
}
.logo h1 {
  margin: 0;
  font-size: 24px;
  color: var(--dark);
}
.logo span {
  color: var(--primary);
}
.nav-links {
  list-style: none;
  display: flex;
}
.nav-links li {
  margin-left: 25px;
}
.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
}
.nav-links a:hover {
  color: var(--primary);
}
/* --- Bouton Téléphone --- */
.btn-phone {
  background: var(--primary);
  color: var(--white) !important;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-phone:hover {
  background: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(10, 47, 167, 0.3);
}
/* --- Hero Section --- */
.hero {
  position: relative;
  height: 60vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: var(--white);
  text-align: center;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 10%;
}
.hero h2 {
  font-size: 48px;
  margin-bottom: 20px;
}
/* --- Sections --- */
section {
  padding: 80px 10%;
}
.bg-light {
  background: var(--light);
}
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 36px;
  position: relative;
  padding-bottom: 15px;
}
.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary);
}
/* --- Grilles & Cards --- */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.card {
  background: var(--white);
  padding: 30px;
  border-bottom: 4px solid var(--primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-10px);
}
.card i {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 20px;
}
/* --- Images --- */
.img-fluid {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.feature-img {
  position: relative;
  margin-bottom: 30px;
}
/* --- Footer --- */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 10% 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  color: var(--white);
  margin-bottom: 25px;
  border-left: 3px solid var(--primary);
  padding-left: 15px;
}
.footer-col p, .footer-col a {
  color: #bbb;
  text-decoration: none;
  font-size: 14px;
}
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 13px;
}
/* --- Mobile Responsive --- */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .navbar {
    flex-direction: column;
    text-align: center;
  }
  .logo {
    margin-bottom: 20px;
  }
  .hero h2 {
    font-size: 32px;
  }
  .mobile-call-btn {
    display: block !important;
    margin: 10px 0;
    width: 100%;
    text-align: center;
  }
  section {
    padding: 50px 5%;
  }
}
.mobile-call-btn {
  display: none;
}
/* --- Formulaires --- */
.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
}
.form-group {
  margin-bottom: 20px;
}
.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
}
.btn-submit {
  background: var(--primary);
  color: white;
  border: none;
  padding: 15px 30px;
  cursor: pointer;
  font-weight: 700;
  width: 100%;
}
/* --- Ajouts spécifiques --- */
.facade-section {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.facade-text {
  flex: 1;
  min-width: 300px;
}
.facade-img {
  flex: 1;
  min-width: 300px;
}
.service-list {
  list-style: none;
}
.service-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}
.service-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}
.no-link {
    color: inherit !important;
    text-decoration: none !important;
    pointer-events: none; /* Désactive le clic */
}
iframe {
    display: block
}