/* =======================================================
   MURALE LUMIÈRE - MODERN BOLD STYLE.CSS
   Responsive, bold, high-contrast flexbox layouts only
   ======================================================= */

/* RESET & NORMALIZE */
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
html, body {
  height: 100%;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F4F1EA;
  color: #213155;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: underline;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #E98A15;
  outline-offset: 2px;
}

/* UTILITY CLASSES */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Flexbox Patterns from requirements */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(40,66,104,0.07), 0 1.5px 8px rgba(40,66,104,0.03);
  padding: 24px;
  flex: 1 1 320px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 4px 32px rgba(40,66,104,0.18), 0 2px 8px rgba(40,66,104,0.09);
  transform: translateY(-4px) scale(1.015);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 20px rgba(40,66,104,0.07), 0 1.5px 8px rgba(40,66,104,0.06);
  margin-bottom: 24px;
  min-width: 220px;
  min-height: 120px;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 32px rgba(233,138,21,0.12);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 14px;
  padding: 22px 18px 22px 18px;
  box-shadow: 0 1px 8px rgba(40,66,104,0.04);
  flex: 1 1 280px;
  transition: box-shadow 0.2s, transform 0.2s;
  margin-bottom: 20px;
}
.feature-item img {
  width: 38px;
  height: 38px;
}
.feature-item:hover {
  box-shadow: 0 6px 36px rgba(233,138,21,0.08);
  transform: translateY(-2px) scale(1.01);
}

/**** HEADERS AND NAV ****/
header {
  background: #ffffff;
  box-shadow: 0 1.5px 12px rgba(40,66,104,0.07);
  position: sticky;
  top: 0;
  z-index: 20;
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 70px;
}
.logo-link {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 22px;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  flex: 1 0 auto;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #213155;
  background: none;
  padding: 8px 18px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.main-nav a:hover, .main-nav a:focus {
  background: #f4f1ea;
  color: #E98A15;
}
.cta-primary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  font-size: 18px;
  padding: 14px 32px;
  background: #E98A15;
  color: #fff !important;
  border-radius: 32px;
  box-shadow: 0 4px 18px rgba(233,138,21,0.10);
  text-transform: uppercase;
  text-align: center;
  transition: background 0.25s, color 0.25s, transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  margin-left: 10px;
}
.cta-primary:hover, .cta-primary:focus {
  background: #284268;
  color: #fff !important;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 32px rgba(33,49,85,0.10);
  text-decoration: none;
}
.cta-link {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #E98A15;
  text-decoration: underline;
  font-size: 18px;
  margin-top: 12px;
  transition: color 0.2s;
}
.cta-link:hover, .cta-link:focus {
  color: #213155;
  background: #f7f7f7;
  border-radius: 6px;
}
/
/* ============ MOBILE NAV ============ */
.mobile-menu-toggle {
  display: none;
  background: #E98A15;
  color: #fff;
  font-size: 32px;
  border: none;
  padding: 6px 14px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-left: 10px;
  z-index: 30;
  line-height: 1;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #284268;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #284268;
  color: #fff;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.69,0.23,0.23,0.69);
  z-index: 50;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 28px 14px 14px 92%;
  align-self: flex-end;
  background: #E98A15;
  color: #fff;
  font-size: 28px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  padding: 6px 14px;
  z-index: 51;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #fff;
  color: #213155;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 40px;
  width: 100%;
  align-items: flex-start;
  padding-left: 32px;
}
.mobile-nav a {
  color: #fff;
  font-size: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 12px 0;
  border: none;
  border-radius: 7px;
  transition: background 0.2s, color 0.2s;
  width: 85%;
  text-align: left;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E98A15;
  color: #fff;
}

/**** HERO SECTION ****/
.hero {
  min-height: 370px;
  background: #284268;
  color: #fff;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
.hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
  color: white;
}
.hero .subheadline {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 28px;
  color: #F4F1EA;
}

/**** SECTION TITLES ****/
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #213155;
  font-weight: 800;
}
h1 {
  font-size: 42px;
  margin-bottom: 16px;
}
h2 {
  font-size: 32px;
  margin-bottom: 12px;
}
h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

/* BODY TEXT */
p, ul, ol, li {
  font-size: 18px;
  color: #213155;
  letter-spacing: 0.01em;
}
strong {
  font-weight: 800;
}

/**** FEATURE GRID ****/
.features, .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.feature-grid {
  width: 100%;
  justify-content: space-between;
}

/**** ABOUT, VALUES, PROCESS, LEGAL SECTIONS ****/
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.values ul,
.why-us ul,
.services ul,
.project-categories ul,
.location ul,
.legal ul {
  list-style: disc inside;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/**** TESTIMONIALS ****/
.testimonials-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.testimonial-card {
  font-size: 18px;
  background: #fff;
  color: #213155;
  border-left: 7px solid #E98A15;
  min-width: 240px;
  max-width: 480px;
  box-shadow: 0 4px 32px rgba(40,66,104,0.11);
}
.testimonial-author {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #E98A15;
  font-size: 17px;
}

/**** CONTACT SECTION ****/
.contact-info ul,
.contact-coordonnees {
  list-style: none;
  margin-top: 6px;
  margin-bottom: 22px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.contact-info ul li,
.contact-coordonnees li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 18px;
  color: #213155;
}
.contact-info ul img,
.contact-coordonnees img {
  width: 19px;
  height: 19px;
}

/**** FOOTER ****/
footer {
  background: #213155;
  color: #fff;
}
footer p {
  color: white;
}
.footer-bar {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 44px 0 30px 0;
  border-top: 6px solid #E98A15;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-nav a {
  color: #fff;
  text-decoration: underline;
  font-size: 17px;
  font-weight: 700;
  transition: color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #E98A15;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 15px;
}
.social-icons {
  display: flex;
  gap: 15px;
}
.social-icons img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
  transition: filter 0.2s;
  cursor: pointer;
}
.social-icons img:hover {
  filter: brightness(1.3) sepia(1) saturate(6) hue-rotate(15deg);
}

/**** NEXT STEPS IN THANK-YOU ****/
.next-steps ul {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 14px;
  list-style: none;
  padding: 0;
}
.next-steps li a {
  font-size: 18px;
  color: #E98A15;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  text-decoration: underline;
}
.next-steps li a:hover {
  color: #213155;
  background: #FAE7CF;
  border-radius: 5px;
}

/**** CALL TO ACTION SECTION ****/
.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px 0;
  text-align: center;
}

/**** COOKIE CONSENT BANNER & MODAL ****/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #213155;
  color: #fff;
  padding: 24px 18px 24px 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 120;
  box-shadow: 0 -4px 20px rgba(33,49,85,0.10);
  font-size: 16px;
  transition: transform 0.4s cubic-bezier(.56,.27,.38,.98);
}
.cookie-banner.hide {
  transform: translateY(150%);
}
.cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 18px;
  border: none;
  background: #fff;
  color: #213155;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s;
  margin-bottom: 4px;
}
.cookie-btn.accept {
  background: #E98A15;
  color: #fff;
}
.cookie-btn.settings {
  background: #284268;
  color: #fff;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #E98A15;
  color: #fff;
  box-shadow: 0 2px 8px rgba(233,138,21,0.13);
}
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -55%) scale(0.98);
  background: #fff;
  color: #213155;
  box-shadow: 0 6px 42px rgba(40,66,104,0.13);
  border-radius: 12px;
  z-index: 200;
  max-width: 98vw;
  width: 420px;
  padding: 32px 26px 28px 26px;
  display: none;
  flex-direction: column;
  gap: 18px;
  animation: cookieIn 0.45s cubic-bezier(0.7,0.1,0.2,1) 1;
}
.cookie-modal.open {
  display: flex;
}
@keyframes cookieIn {
  from { opacity: 0; transform: translate(-50%,-70%) scale(0.93); }
  to   { opacity: 1; transform: translate(-50%,-55%) scale(0.98); }
}
.cookie-modal h3 {
  font-size: 22px;
  color: #213155;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 0;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 10px 0 14px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 17px;
}
.cookie-category input[type=checkbox]:not(:disabled) {
  accent-color: #E98A15;
  width: 20px;
  height: 20px;
}
.cookie-category input:disabled {
  accent-color: #AAB6CD;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 7px;
  flex-wrap: wrap;
}
.cookie-modal .cookie-btn {
  width: 46%;
  min-width: 120px;
}
.cookie-modal .close-modal-btn {
  background: #213155;
  color: #fff;
}

/**** FAQ LIST ****/
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 18px;
}
.faq-list .text-section h3 {
  color: #E98A15;
  font-size: 21px;
}
.faq-list .text-section p {
  font-size: 17px;
}

/**** FORMATTED LISTS ****/
ul, ol {
  margin-left: 23px;
  margin-top: 8px;
  margin-bottom: 8px;
}
ul li, ol li {
  margin-bottom: 6px;
  line-height: 1.6;
}

/* DECORATIVE ACCENTS */
h2::after {
  content: '';
  display: block;
  height: 4px;
  width: 32px;
  border-radius: 2px;
  background: #E98A15;
  margin-top: 8px;
}

/**** GENERAL STYLES, MICRO-INTERACTIONS ****/
button {
  font-family: inherit;
  font-size: inherit;
  transition: box-shadow 0.2s, background 0.2s, color 0.2s, transform 0.2s;
}
button:focus {
  outline: 2px solid #E98A15;
  outline-offset: 2px;
}

/* Give all sections white background except hero */
section {
  background: #fff;
  border-radius: 20px;
  margin-bottom: 36px;
  box-shadow: 0 1.5px 12px rgba(40,66,104,0.04);
}
.hero, .hero section {
  border-radius: 0 !important;
  box-shadow: none !important;
}
.mobile-menu-toggle
{
  display: none;
}

/* Hide desktop menu on mobile, show burger */
@media (max-width: 1000px) {
  .main-nav {
    display: none !important;
  }
  
  .cta-primary {
    margin-left: 0;
  }
  .header-bar {
    gap: 12px;
  }
    .mobile-menu-toggle
    {
      display: block;
    }
}
/* Hide mobile menu on desktop */
@media (min-width: 1001px) {
  .mobile-menu {
    display: none !important;
  }
    
}

/* RESPONSIVE FLEX DIRECTION FOR SECTIONS */
@media (max-width: 900px) {
  .footer-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
    
}
@media (max-width: 900px) {
  .feature-grid, .features, .testimonials-cards {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
    

  .hero h1 {
    font-size: 28px;
  }
  .hero .subheadline {
    font-size: 18px;
  }
  h1 {font-size: 27px;}
  h2 {font-size: 22px;}
  h3 {font-size: 18px;}
  .section {
    padding: 20px 6px;
    margin-bottom: 36px;
  }
  section {
    border-radius: 9px;
  }
  .cta-primary, .cta-link {
    font-size: 16px;
    padding: 12px 16px;
  }
  .content-wrapper, .text-section {
    gap: 16px;
  }
  .footer-bar {
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
    padding: 22px 0 12px 0;
  }
  .testimonials-cards {
    gap: 14px;
  }
  .testimonial-card {
    min-width: 100%;
    padding: 17px;
  }
  .card, .feature-item {
    padding: 13px 10px;
    margin-bottom: 10px;
    border-radius: 8px;
  }
  .feature-item img {
    width: 26px;
    height: 26px;
  }
  .card-container,
  .content-grid {
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}
@media (max-width: 650px) {
  .hero {
    min-height: 230px;
    padding-top: 28px;
    padding-bottom: 28px;
  }
  .footer-bar {padding: 10px 0 6px 0;}
}
/* REMOVED CLAMP, USE SMALLEST SIZES ON MOBILE */

/* Ensure nav/sections/cards never overlap */
main, header, footer, section, .card, .card-container, .content-wrapper, .feature-item, .testimonial-card {
  z-index: 1;
}

/* Appearance when cookie-banner NO display */
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
    font-size: 15px;
  }
}

/* Hide scroll on open mobile menu */
body.mobile-menu-open {
  overflow: hidden;
}

/* =================== FONTS ===================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900,800,600|Open+Sans:400,700,800&display=swap');

/* ================== END ======================== */
