* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #0b0e14;
  color: #ffffff;
}

a {
  outline-offset: 3px;
}
a:focus-visible,
label:focus-visible,
input:focus-visible {
  outline: 2px solid #cbb26a;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5%;
  background-color: rgba(11, 14, 20, 0.95);
  backdrop-filter: blur(8px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  color: #cccccc;
  text-decoration: none;
  margin: 0 1.2rem;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #cbb26a;
}

.btn-phone {
  background-color: #cbb26a;
  color: #0b0e14;
  padding: 0.5rem 1.1rem;
  border-radius: 6px;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 0.95rem;
}

.btn-phone--mobile {
  display: none;
}

/* Burger (hidden on desktop) */
.nav-toggle {
  display: none;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.4rem;
}

.nav-burger span {
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: 0.3s ease;
}

/* Hero */
.hero-section {
  width: 100%;
  min-height: 90vh;
  margin-top: 60px;
  position: relative;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(11,14,20,0.92) 0%, rgba(11,14,20,0.55) 55%, rgba(11,14,20,0.25) 100%),
    url('carte-bretagne-map.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 3rem 5%;
}

.hero-content {
  max-width: 620px;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-content h1 span {
  display: block;
  color: #cbb26a;
  font-weight: 400;
  font-size: 0.6em;
}

.hero-content p {
  font-size: 1.1rem;
  color: #d4d4d4;
  margin-bottom: 1.8rem;
  line-height: 1.6;
}

.btn-cta {
  display: inline-block;
  background-color: #cbb26a;
  color: #0b0e14;
  padding: 0.9rem 1.8rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
  background-color: #ddc383;
}

.btn-cta--ghost {
  background-color: transparent;
  color: #cbb26a;
  border: 1px solid #cbb26a;
  margin-left: 1rem;
}

.btn-cta--ghost:hover {
  background-color: rgba(203, 178, 106, 0.1);
}

/* Services */
.services-section {
  padding: 5rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.services-section h2 {
  font-size: 1.8rem;
  margin-bottom: 2.5rem;
  font-weight: 600;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background-color: #131722;
  border: 1px solid rgba(203, 178, 106, 0.3);
  padding: 2rem;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: #cbb26a;
}

.service-card .icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  margin-bottom: 0.8rem;
  color: #cbb26a;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.service-card p {
  color: #9ca3af;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Secteur */
.secteur-section {
  padding: 4rem 5%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.secteur-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.secteur-intro {
  color: #9ca3af;
  margin-bottom: 2rem;
}

.secteur-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.secteur-list li {
  background-color: #131722;
  border: 1px solid rgba(203, 178, 106, 0.3);
  color: #cbb26a;
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  font-size: 0.95rem;
}

/* Contact */
.contact-section {
  padding: 4rem 5%;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-section h2 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.contact-section > p {
  color: #9ca3af;
  margin-bottom: 2rem;
}

.contact-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-links .btn-cta--ghost {
  margin-left: 0;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3rem 5% 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-content p {
  color: #9ca3af;
  font-size: 0.9rem;
  margin-top: 0.3rem;
}

.footer-legal p {
  font-size: 0.85rem;
}

.footer-copy {
  color: #6b7280;
  font-size: 0.85rem;
  text-align: center;
}

/* Responsive */
@media (max-width: 800px) {
  .nav-burger {
    display: flex;
  }

  .btn-phone--desktop {
    display: none;
  }

  .btn-phone--mobile {
    display: inline-block;
    margin: 1.5rem 1.2rem 0;
  }

  .nav-links {
    position: fixed;
    top: 60px;
    right: 0;
    height: calc(100vh - 60px);
    width: 220px;
    background-color: #0b0e14;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links a {
    margin: 0.8rem 1.2rem;
  }

  .nav-toggle:checked ~ .nav-links {
    transform: translateX(0);
  }

  .hero-content {
    max-width: 100%;
  }

  .footer-content {
    flex-direction: column;
  }
}
