@charset "UTF-8";
/* CSS Document */ :root {
  --primary: #ff5722;
  --primary-dark: #e64a19;
  --secondary: #ff9800;
  --accent: #ffc107;
  --light-bg: #fff3e0;
  --dark-text: #2c3e50;
  --white: #ffffff;
  --transition: all 0.3s ease;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--white);
  color: var(--dark-text);
  line-height: 1.6;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
/* Header */
.site-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 25px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.header-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media(min-width: 768px) {
  .header-flex {
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
  }
}
.site-header h1 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.header-contact {
  font-size: 16px;
  margin-top: 8px;
}
.header-contact a {
  color: var(--white);
  font-weight: bold;
  text-decoration: none;
}
/* Navigation */
.main-nav {
  background-color: var(--accent);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 10px 0;
}
.main-nav a {
  text-decoration: none;
  color: var(--dark-text);
  margin: 5px 10px;
  font-size: 16px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  transition: var(--transition);
}
.main-nav a:hover, .main-nav a.active {
  background-color: var(--secondary);
  color: var(--white);
}
/* Hero Section avec background image et filtre personnalisé */
.hero {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%), url('renovation-toiture-castelnau.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  color: var(--white);
}
.hero-content h2 {
  font-size: 42px;
  margin-bottom: 15px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}
.hero-content p {
  font-size: 18px;
  margin-bottom: 25px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}
.btn-primary {
  display: inline-block;
  background-color: var(--primary);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
  transition: var(--transition);
}
.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}
/* Sections & Contenu Principal */
.main-content {
  padding: 50px 20px;
}
section h2 {
  font-size: 32px;
  color: #ff4800;
  margin-bottom: 20px;
  text-align: center;
}
section > p {
  font-size: 17px;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}
/* Features Grid */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}
.feature {
  background: var(--light-bg);
  color: var(--dark-text);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  border-top: 4px solid var(--primary);
  transition: var(--transition);
  text-align: center;
}
.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.feature h3 {
  color: var(--primary-dark);
  margin-bottom: 12px;
  font-size: 20px;
}
/* Services Page list */
.service {
  background: #fafafa;
  margin-bottom: 35px;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-left: 5px solid var(--secondary);
}
.service h3 {
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 12px;
}
.service img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
/* Contact Page Form/Card */
.contact-section {
  max-width: 800px;
  margin: 0 auto;
  text-align: left !important;
}
.contact-section h2, .contact-section > p {
  text-align: center;
}
.contact-card {
  background: var(--light-bg);
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-top: 25px;
  font-size: 18px;
  line-height: 1.8;
}
.contact-card a {
  color: var(--primary-dark);
  font-weight: bold;
  text-decoration: none;
}
.contact-card a:hover {
  text-decoration: underline;
}
/* Footer */
.site-footer {
  background: var(--dark-text);
  color: var(--white);
  text-align: center;
  padding: 30px 20px;
}
.site-footer p {
  margin-bottom: 8px;
  font-size: 15px;
}
.site-footer a {
  color: var(--secondary);
  text-decoration: none;
}
.site-footer a:hover {
  text-decoration: underline;
}
iframe {
	display: block
}
.no-link {
    color: inherit !important;
    text-decoration: none !important;
    pointer-events: none;
}