@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;900&family=Roboto:wght@400;700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #333333;
  background-color: #ffffff;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: #52a6c8;
  transition: color 0.3s ease;
}
a:hover {
  color: #284256;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  color: #284256;
}

img {
  width: 100%;
}

main {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding-bottom: 60px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.section-padding {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  position: relative;
}
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #52a6c8;
  margin: 10px auto 0;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.btn--primary {
  background-color: #52a6c8;
  color: #fff;
}
.btn--primary:hover {
  background: rgb(55.7236842105, 140.8289473684, 175.2763157895);
  color: rgb(235.0723684211, 243.5828947368, 247.0276315789);
}
.btn--accent {
  background: #FD9624;
  color: rgb(254.8, 244.5, 233.1);
}
.btn--accent:hover {
  background: rgb(235.8461538462, 124.9230769231, 2.1538461538);
  color: rgb(253.0846153846, 241.9923076923, 229.7153846154);
}
.btn--light {
  background-color: #fff;
  color: #284256;
}
.btn--light:hover {
  background-color: #f4f4f4;
}
.btn--large {
  font-size: 1rem;
  padding: 15px 30px;
}

.breadcrumb {
  margin-bottom: 20px;
  font-size: 0.9rem;
  opacity: 0.9;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #fff;
  width: 100%;
}
.breadcrumb a {
  color: #fff;
  transition: color 0.3s ease;
}
.breadcrumb a:hover {
  color: #FD9624;
}
.breadcrumb__current {
  color: #FD9624;
  font-weight: 700;
}

.reassurance-bar {
  padding: 0 20px;
  margin-bottom: 20px;
}
.reassurance-bar .container {
  padding: 0;
  max-width: 1200px;
  margin: 0 auto;
  display: block;
}
.reassurance-bar__content {
  background-color: #284256;
  color: #fff;
  padding: 25px 40px;
  border-radius: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
@media (max-width: 992px) {
  .reassurance-bar__content {
    grid-template-columns: repeat(2, 1fr);
    padding: 30px;
  }
}
@media (max-width: 576px) {
  .reassurance-bar__content {
    grid-template-columns: 1fr;
    border-radius: 30px;
    padding: 20px;
  }
}
.reassurance-bar__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px;
  transition: transform 0.3s ease;
}
.reassurance-bar__item:hover {
  transform: translateY(-3px);
}
.reassurance-bar__item .icon {
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reassurance-bar__item strong {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.main-header {
  background-color: #ffffff;
  border-bottom: 1px solid #f4f4f4;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.main-header .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
.main-header .navbar__logo img {
  max-height: 60px;
  display: block;
}
.main-header .navbar__links {
  display: flex;
  list-style: none;
  align-items: center;
}
.main-header .navbar__links li {
  margin-left: 25px;
}
.main-header .navbar__links a {
  text-decoration: none;
  color: #333333;
  font-weight: 700;
  position: relative;
  padding-bottom: 5px;
}
.main-header .navbar__links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #52a6c8;
  transition: width 0.3s ease;
}
.main-header .navbar__links a:hover::after, .main-header .navbar__links a.active::after {
  width: 100%;
}
.main-header .navbar__links a.btn {
  color: #fff;
  padding: 5px 24px;
}
.main-header .navbar__links a.btn::after {
  display: none;
}
.main-header .navbar__links a.btn:hover {
  color: #fff;
}

.navbar__burger {
  display: none;
  cursor: pointer;
}
.navbar__burger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #284256;
  margin: 5px 0;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .navbar__burger {
    display: block;
  }
  .navbar__links {
    display: none !important;
  }
  .navbar__links.active {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(40, 66, 86, 0.98);
  }
  .navbar__links.active li {
    margin: 20px 0;
  }
  .navbar__links.active a {
    color: #fff;
    font-size: 1.5rem;
  }
  .navbar__links.active a.btn {
    background: none;
    border: 2px solid #fff;
    padding: 10px 20px;
    color: #fff;
  }
  .navbar__links.active a.btn:hover {
    background: #52a6c8;
    border-color: #52a6c8;
  }
  .navbar__burger.active {
    position: fixed;
    top: 30px;
    right: 5%;
    z-index: 1001;
  }
  .navbar__burger.active span {
    background-color: #fff;
  }
  .navbar__burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  .navbar__burger.active span:nth-child(2) {
    opacity: 0;
  }
  .navbar__burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
}
.main-footer {
  background-color: #52a6c8;
  color: white;
  padding: 60px 0 20px;
  font-size: 0.95rem;
}
.main-footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
  text-align: left;
  margin-bottom: 40px;
}
.main-footer .footer-col .footer-logo {
  max-width: 150px;
  margin-bottom: 20px;
  opacity: 0.9;
  padding: 20px;
  background: white;
  border-radius: 10px;
}
.main-footer .footer-col h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.main-footer .footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: #284256;
}
.main-footer .footer-col p {
  line-height: 1.6;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
}
.main-footer .footer-col ul {
  list-style: none;
  padding: 0;
}
.main-footer .footer-col ul li {
  margin-bottom: 12px;
}
.main-footer .footer-col ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
.main-footer .footer-col ul li a:hover {
  color: #284256;
  padding-left: 5px;
}
.main-footer .footer-col .contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
}
.main-footer .footer-col .contact-list li .icon {
  font-size: 1.1rem;
}
.main-footer .footer-col .contact-list li a:hover {
  padding-left: 0;
  color: #284256;
}
.main-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}
.main-footer .footer-bottom p {
  font-size: 0.85rem;
  opacity: 0.7;
  margin: 0;
}
.main-footer .footer-bottom a {
  color: rgba(255, 255, 255, 0.8);
  margin-left: 10px;
  text-decoration: none;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
}
.main-footer .footer-bottom a:hover {
  color: #fff;
  border-bottom-style: solid;
}
@media (max-width: 768px) {
  .main-footer {
    text-align: center;
  }
  .main-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  .main-footer .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .main-footer .footer-col .footer-logo {
    margin: 0 auto 20px;
  }
  .main-footer .footer-col .contact-list li {
    justify-content: center;
  }
}

.hero {
  padding: 20px;
}

.hero__content {
  background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.7)), url("../../images/cdc-renovation-peintre-a-saint-renan-vos-projets-de-peinture.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  padding: 120px 0;
  text-align: center;
  width: 100%;
  border-radius: 60px;
  /* Pour centrer le contenu */
}

.hero h1 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  font-weight: 300;
}

.services-overview {
  background-color: #f4f4f4;
}

.presentation-overview {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1200px;
  align-self: center;
}
.presentation-overview .container-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .presentation-overview .container-grid {
    grid-template-columns: 1fr;
  }
}
.presentation-overview .container-grid .presentation-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: justify;
}
.presentation-overview .container-grid .presentation-image img {
  object-fit: cover;
  border-radius: 60px;
  height: 100%;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: #ffffff;
  padding: 30px 25px;
  border-radius: 60px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.service-card h3 {
  color: #284256;
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.service-card p {
  font-size: 1rem;
  margin-bottom: 25px;
}
.service-card a {
  color: #52a6c8;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.service-card a::after {
  content: " →";
  transition: margin-left 0.3s ease;
}
.service-card a:hover::after {
  margin-left: 5px;
}

.cta-section {
  padding: 0 20px;
}
.cta-section .container {
  background-color: #284256;
  color: #fff;
  text-align: center;
  border-radius: 60px;
  align-self: center;
  max-width: 1200px;
  width: 100%;
  padding: 60px 0;
}
.cta-section h2,
.cta-section p {
  color: #fff;
}
.cta-section .section-title::after {
  display: none;
}
.cta-section h2 {
  font-size: 2.2rem;
}
.cta-section p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 30px auto;
}

.realisations-section .container .section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
}
.realisations-section .container .contains-imgs {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.realisations-section .container .contains-imgs .image {
  flex: 1 0 300px;
  max-width: 100%;
  overflow: hidden;
  border-radius: 60px;
}
.realisations-section .container .contains-imgs .image img {
  height: 100%;
  transition: transform 0.4s ease;
  object-fit: cover;
}
.realisations-section .container .contains-imgs .image:hover img {
  transform: scale(1.05);
}
.realisations-section .container .btn {
  align-self: center;
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .cta-section h2 {
    font-size: 1.8rem;
  }
  .cta-section p {
    font-size: 1rem;
  }
}
.page-header {
  background-color: #284256;
  padding: 60px 0;
  color: #fff;
  text-align: center;
  border-radius: 60px;
}
.page-header h1 {
  color: #fff;
  font-size: 2.8rem;
  margin-bottom: 10px;
}
.page-header p {
  font-size: 1.2rem;
  color: #f4f4f4;
}

.service-detail:nth-child(odd) {
  background-color: #f4f4f4;
}

.service-detail__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.service-detail__content img {
  width: 100%;
  height: auto;
  border-radius: 60px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  aspect-ratio: 12/9;
  object-fit: cover;
}

.service-detail__text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #52a6c8;
}
.service-detail__text p {
  margin-bottom: 20px;
}
.service-detail__text ul {
  list-style: none;
  margin-bottom: 30px;
}
.service-detail__text ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}
.service-detail__text ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #52a6c8;
  font-weight: 700;
  font-size: 1.2rem;
}

.service-detail.reversed .service-detail__content {
  grid-template-areas: "text image";
}
.service-detail.reversed .service-detail__content .service-detail__image {
  grid-area: image;
}
.service-detail.reversed .service-detail__content .service-detail__text {
  grid-area: text;
}

@media (max-width: 768px) {
  .page-header {
    padding: 40px 0;
  }
  .page-header h1 {
    font-size: 2.2rem;
  }
  .service-detail__content,
  .service-detail.reversed .service-detail__content {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .service-detail.reversed .service-detail__image {
    grid-row: 1;
  }
  .service-detail__text h2 {
    font-size: 1.8rem;
  }
}
.portfolio-filters {
  text-align: center;
  margin-bottom: 40px;
}
.portfolio-filters .filter-btn {
  background-color: #f4f4f4;
  color: #333333;
  border: none;
  padding: 10px 20px;
  margin: 5px;
  cursor: pointer;
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  transition: all 0.3s ease;
}
.portfolio-filters .filter-btn:hover {
  background-color: rgb(218.5, 218.5, 218.5);
}
.portfolio-filters .filter-btn.active {
  background-color: #52a6c8;
  color: #fff;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.project-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.project-item img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 100%;
  transition: transform 0.4s ease;
}
.project-item .project-item__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(40, 66, 86, 0.75);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.project-item .project-item__overlay h4 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 5px;
}
.project-item .project-item__overlay p {
  color: #f4f4f4;
  font-size: 0.9rem;
}
.project-item:hover img {
  transform: scale(1.1);
}
.project-item:hover .project-item__overlay {
  opacity: 1;
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .project-item .project-item__overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(40, 66, 86, 0.9) 0%, rgba(40, 66, 86, 0.4) 60%, transparent 100%);
    justify-content: flex-end;
    padding-bottom: 25px;
  }
  .project-item h4 {
    font-size: 1.1rem;
  }
  .project-item p {
    font-size: 0.85rem;
  }
}
@media (max-width: 576px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}
.contact-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
  align-items: start;
}

.contact-form-wrapper {
  background-color: #fff;
  padding: 40px;
  border-radius: 60px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
}
.contact-form-wrapper h2 {
  color: #284256;
  font-size: 1.8rem;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f4f4f4;
}

.contact-form .form-group-row {
  display: flex;
  gap: 20px;
}
.contact-form .form-group {
  margin-bottom: 20px;
  width: 100%;
}
.contact-form .form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #284256;
  font-size: 0.95rem;
}
.contact-form .form-group input[type=text],
.contact-form .form-group input[type=email],
.contact-form .form-group input[type=tel],
.contact-form .form-group input[type=number],
.contact-form .form-group select,
.contact-form .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  background-color: #f9f9f9;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}
.contact-form .form-group input[type=text]:focus,
.contact-form .form-group input[type=email]:focus,
.contact-form .form-group input[type=tel]:focus,
.contact-form .form-group input[type=number]:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
  outline: none;
  border-color: #52a6c8;
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(82, 166, 200, 0.1);
}
.contact-form .form-group input[type=text]::placeholder,
.contact-form .form-group input[type=email]::placeholder,
.contact-form .form-group input[type=tel]::placeholder,
.contact-form .form-group input[type=number]::placeholder,
.contact-form .form-group select::placeholder,
.contact-form .form-group textarea::placeholder {
  color: #bbb;
}
.contact-form .form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form .form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 15px top 50%;
  background-size: 12px auto;
}
.contact-form button[type=submit] {
  margin-top: 10px;
  width: 100%;
}
@media (min-width: 768px) {
  .contact-form button[type=submit] {
    width: auto;
  }
}

.contact-info {
  background-color: #284256;
  color: #fff;
  padding: 40px;
  border-radius: 60px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.contact-info h2 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 30px;
}
.contact-info p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-info__item {
  margin-bottom: 25px;
  padding-left: 15px;
  border-left: 3px solid #FD9624;
}
.contact-info__item strong {
  display: block;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 5px;
}
.contact-info__item p,
.contact-info__item a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin: 0;
  text-decoration: none;
  transition: color 0.3s;
}
.contact-info__item p:hover,
.contact-info__item a:hover {
  color: #FD9624;
}

.contact-info iframe {
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin-top: 20px;
}

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-info {
    order: -1;
  }
}
@media (max-width: 576px) {
  .contact-form .form-group-row {
    flex-direction: column;
    gap: 0;
  }
  .contact-form-wrapper,
  .contact-info {
    padding: 25px;
  }
}

/*# sourceMappingURL=main.css.map */
