@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  background-color: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}
a:hover {
  color: #27ae60;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "M PLUS Rounded 1c", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* --- NAVBAR --- */
.main-header {
  background-color: #fff;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.main-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-header nav .logo {
  font-size: 2rem;
  font-weight: 800;
  color: #2c3e50;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.main-header nav .nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin: 0 auto;
  padding: 0;
}
.main-header nav .nav-links li a {
  font-weight: 600;
  color: #333;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.2s;
}
.main-header nav .nav-links li a:hover {
  color: #27ae60;
}
.main-header nav .btn-cta {
  background: #FFA500;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
  display: inline-block;
  box-shadow: 0 2px 5px rgba(255, 165, 0, 0.3);
}
.main-header nav .btn-cta:hover {
  background: rgb(229.5, 148.5, 0);
  color: white;
}

/* --- FOOTER CTA --- */
.footer-cta {
  background: #FF9F00;
  border-radius: 20px;
  padding: 4rem 2rem;
  text-align: center;
  margin-top: 5rem;
  position: relative;
  overflow: hidden;
  width: 90%;
}
.footer-cta .cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.footer-cta .cta-content h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer-cta .cta-content p {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-weight: 500;
}
.footer-cta .cta-content .btn-primary {
  background: #143525;
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}
.footer-cta .cta-content .btn-primary:hover {
  background: rgb(26.9863013699, 71.5136986301, 49.9246575342);
}

/* --- FOOTER --- */
.main-footer {
  background-color: white;
  padding-top: 5rem;
  margin-top: 2rem;
}
.main-footer .footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .main-footer .footer-content {
    flex-direction: column;
    gap: 3rem;
  }
}
.main-footer .footer-content .footer-col {
  flex: 1;
  min-width: 200px;
}
.main-footer .footer-content .footer-col.brand-col {
  flex: 1.5;
  padding-right: 2rem;
}
@media screen and (max-width: 768px) {
  .main-footer .footer-content .footer-col.brand-col {
    padding-right: 0;
    margin-bottom: 2rem;
  }
}
.main-footer .footer-content .footer-col .logo {
  margin-bottom: 1rem;
}
.main-footer .footer-content .footer-col .logo .logo-text {
  font-size: 2rem;
  font-weight: 800;
  color: #000;
}
.main-footer .footer-content .footer-col p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.main-footer .footer-content .footer-col .social-icons {
  display: flex;
  gap: 1rem;
}
.main-footer .footer-content .footer-col .social-icons .icon {
  width: 40px;
  height: 40px;
  border: 1px solid #143525;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #143525;
  transition: all 0.3s;
}
.main-footer .footer-content .footer-col .social-icons .icon:hover {
  background: #143525;
  color: white;
}
.main-footer .footer-content .footer-col h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  color: #143525;
  font-weight: 700;
}
.main-footer .footer-content .footer-col ul {
  list-style: none;
  padding: 0;
}
.main-footer .footer-content .footer-col ul li {
  margin-bottom: 1rem;
  color: #555;
  font-size: 0.95rem;
}
.main-footer .footer-content .footer-col ul li a {
  text-decoration: none;
  color: #555;
}
.main-footer .footer-content .footer-col ul li a:hover {
  color: #143525;
}
.main-footer .footer-bottom {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid #eee;
  color: #999;
  font-size: 0.85rem;
}

/* --- ACTUALITES --- */
.article-title {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 1.5rem auto;
  font-size: 3rem;
  line-height: 1.2;
  color: #000;
  font-weight: 800;
}
.article-title.align-left {
  text-align: left;
  margin-left: 0;
  max-width: 100%;
}

.article-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem auto;
  font-size: 1.1rem;
  color: #333;
  font-weight: 400;
}
.article-subtitle.align-left {
  text-align: left;
  margin-left: 0;
  max-width: 100%;
  margin-top: 4rem;
}

.article-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem auto;
  font-size: 1.1rem;
  color: #333;
  font-weight: 400;
}
.article-subtitle.align-left {
  text-align: left;
  margin-left: 0;
  max-width: 100%;
  margin-bottom: 4rem;
}

/* --- CARD GRID --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.article-card {
  background: white;
  overflow: hidden;
  border: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.article-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}
.article-card .card-content {
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.article-card .card-content h4 {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #000;
  line-height: 1.5;
  font-weight: 700;
  flex-grow: 1;
}
.article-card .card-content .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}
.article-card .card-content .card-footer .date {
  font-weight: 700;
  font-size: 0.85rem;
  color: #000;
}
.article-card .card-content .card-footer .read-more {
  color: #FFA500;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}
.article-card .card-content .card-footer .read-more:hover {
  text-decoration: underline;
}

/* --- ARTICLE --- */
.article-meta {
  text-align: center;
  margin-bottom: 2rem;
  margin-top: 3rem;
}
.article-meta .tag {
  background: #103A21;
  color: white;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-right: 10px;
  font-weight: 600;
}
.article-meta .date {
  color: #777;
  font-size: 0.95rem;
}

.article-title {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 1.5rem auto;
  font-size: 3rem;
  line-height: 1.2;
  color: #000;
  font-weight: 800;
}
.article-title.align-left {
  text-align: left;
  margin-left: 0;
  max-width: 100%;
}

.article-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem auto;
  font-size: 1.1rem;
  color: #333;
  font-weight: 400;
}
.article-subtitle.align-left {
  text-align: left;
  margin-left: 0;
  max-width: 100%;
  margin-top: 4rem;
}

.article-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem auto;
  font-size: 1.1rem;
  color: #333;
  font-weight: 400;
}
.article-subtitle.align-left {
  text-align: left;
  margin-left: 0;
  max-width: 100%;
  margin-bottom: 4rem;
}

.article-hero {
  margin-bottom: 4rem;
}
.article-hero img {
  width: 100%;
  border-radius: 12px;
  max-height: 550px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #444;
}
.article-content h2 {
  color: #2c3e50;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}
.article-content h3 {
  color: #2c3e50;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.article-content h4 {
  color: #2c3e50;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}
.article-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.article-content ul li {
  margin-bottom: 0.5rem;
}
.article-content p {
  margin-bottom: 1.5rem;
}
.article-content .highlight-box {
  background: #f0f9f4;
  padding: 2.5rem;
  border-radius: 12px;
  margin: 3rem 0;
  border-left: 5px solid #27ae60;
}
.article-content .highlight-box p {
  margin-bottom: 0;
  color: #2c3e50;
}
.article-content .highlight-box strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

/* --- RELATED ARTICLES --- */
.related-articles {
  margin-top: 6rem;
  padding-top: 4rem;
  border-top: 1px solid #eee;
}
.related-articles .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
}
.related-articles .section-header .eyebrow {
  display: block;
  margin-bottom: 0.5rem;
  color: #444;
  font-size: 0.9rem;
}
.related-articles .section-header h3 {
  margin: 0;
  font-size: 2.5rem;
  color: #000;
  font-weight: 700;
}
.related-articles .section-header .btn-secondary {
  background: #143525;
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s;
  font-size: 0.95rem;
}
.related-articles .section-header .btn-secondary:hover {
  opacity: 0.9;
}

/* __________________________________________________________________________________________Admin__________________________________________________*/
.admin-body {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.admin-header {
  padding: 1rem 0;
  text-align: center;
  border-bottom: 1px solid #eee;
}
.admin-header .logo-icon {
  width: 40px;
  height: auto;
}

.admin-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
}
.admin-main h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 4rem;
  color: #000;
  text-align: center;
}
.admin-main .login-form {
  width: 100%;
  max-width: 400px;
}
.admin-main .login-form .form-group {
  margin-bottom: 1.5rem;
  position: relative;
}
.admin-main .login-form .form-group label {
  display: block;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}
.admin-main .login-form .form-group .input-wrapper {
  position: relative;
}
.admin-main .login-form .form-group .input-wrapper input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  background-color: #eee;
  border: none;
  border-radius: 20px;
  font-size: 1rem;
  color: #333;
  outline: none;
}
.admin-main .login-form .form-group .input-wrapper input::placeholder {
  color: #888;
}
.admin-main .login-form .form-group .input-wrapper input:focus {
  box-shadow: 0 0 0 2px #143525;
}
.admin-main .login-form .form-group .input-wrapper .icon {
  position: absolute;
  left: 20px;
  /* moved a bit more inside */
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #143525;
  stroke-width: 2.5px;
}
.admin-main .login-form .forgot-password {
  display: block;
  text-align: left;
  color: #FFA500;
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: 0.5rem;
  margin-bottom: 3rem;
}
.admin-main .login-form .forgot-password:hover {
  text-decoration: underline;
}
.admin-main .login-form .btn-submit {
  width: 100%;
  background-color: #143525;
  color: white;
  border: none;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s;
}

.admin-footer {
  padding: 4rem 2rem;
  background-color: white;
  font-size: 0.85rem;
  color: #333;
}
.admin-footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.admin-footer .footer-content .brand-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.admin-footer .footer-content .brand-section .logo-icon {
  width: 30px;
  height: auto;
}
.admin-footer .footer-content .brand-section p {
  max-width: 200px;
  line-height: 1.4;
}
.admin-footer .footer-content .links-section {
  display: flex;
  gap: 3rem;
}
.admin-footer .footer-content .links-section a {
  text-decoration: none;
  color: #143525;
  font-weight: 500;
}
.admin-footer .footer-content .links-section a:hover {
  text-decoration: underline;
}
.admin-footer .footer-copyright {
  text-align: center;
  margin-top: 4rem;
  color: #888;
  border-top: 1px solid #eee;
  padding-top: 2rem;
}

.container {
  margin: 0 auto;
  padding: 0 1rem;
  margin-top: 20px;
}

/* --- NAVBAR --- */
.main-header {
  background-color: #fff;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.main-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-header nav .logo {
  font-size: 2rem;
  font-weight: 800;
  color: #2c3e50;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.main-header nav .nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin: 0 auto;
  padding: 0;
}
.main-header nav .nav-links li a {
  font-weight: 600;
  color: #333;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.2s;
}
.main-header nav .nav-links li a:hover {
  color: #27ae60;
}
.main-header nav .btn-cta {
  background: #FFA500;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
  display: inline-block;
  box-shadow: 0 2px 5px rgba(255, 165, 0, 0.3);
}
.main-header nav .btn-cta:hover {
  background: rgb(229.5, 148.5, 0);
  color: white;
}

/* --- ARTICLE PAGE STYLES --- */
.article-meta {
  text-align: center;
  margin-bottom: 2rem;
  margin-top: 3rem;
}
.article-meta .tag {
  background: #103A21;
  color: white;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-right: 10px;
  font-weight: 600;
}
.article-meta .date {
  color: #777;
  font-size: 0.95rem;
}

.article-title {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 1.5rem auto;
  font-size: 3rem;
  line-height: 1.2;
  color: #000;
  font-weight: 800;
}
.article-title.align-left {
  text-align: left;
  margin-left: 0;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .article-title.align-left {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    font-size: 2.5rem;
  }
}

.article-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem auto;
  font-size: 1.1rem;
  color: #333;
  font-weight: 400;
}
.article-subtitle.align-left {
  text-align: left;
  margin-left: 0;
  max-width: 100%;
  margin-top: 4rem;
}

.article-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem auto;
  font-size: 1.1rem;
  color: #333;
  font-weight: 400;
}
.article-subtitle.align-left {
  text-align: left;
  margin-left: 0;
  max-width: 100%;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .article-subtitle.align-left {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}

/* --- CARD GRID --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.article-card {
  background: white;
  overflow: hidden;
  border: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.article-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}
.article-card .card-content {
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.article-card .card-content h4 {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #000;
  line-height: 1.5;
  font-weight: 700;
  flex-grow: 1;
}
.article-card .card-content .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}
.article-card .card-content .card-footer .date {
  font-weight: 700;
  font-size: 0.85rem;
  color: #000;
}
.article-card .card-content .card-footer .read-more {
  color: #FFA500;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}
.article-card .card-content .card-footer .read-more:hover {
  text-decoration: underline;
}

.article-hero {
  margin-bottom: 4rem;
}
.article-hero img {
  width: 100%;
  border-radius: 12px;
  max-height: 550px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #444;
}
.article-content h2 {
  color: #2c3e50;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}
.article-content h3 {
  color: #2c3e50;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.article-content h4 {
  color: #2c3e50;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}
.article-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.article-content ul li {
  margin-bottom: 0.5rem;
}
.article-content p {
  margin-bottom: 1.5rem;
}
.article-content .highlight-box {
  background: #f0f9f4;
  padding: 2.5rem;
  border-radius: 12px;
  margin: 3rem 0;
  border-left: 5px solid #27ae60;
}
.article-content .highlight-box p {
  margin-bottom: 0;
  color: #2c3e50;
}
.article-content .highlight-box strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

/* --- RELATED ARTICLES --- */
.related-articles {
  margin-top: 6rem;
  padding-top: 4rem;
  border-top: 1px solid #eee;
}
.related-articles .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 2.5rem;
}
.related-articles .section-header .eyebrow {
  display: block;
  margin-bottom: 0.5rem;
  color: #444;
  font-size: 0.9rem;
}
.related-articles .section-header h3 {
  margin: 0;
  font-size: 2.5rem;
  color: #000;
  font-weight: 700;
}
.related-articles .section-header .btn-secondary {
  background: #143525;
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s;
  font-size: 0.95rem;
}
.related-articles .section-header .btn-secondary:hover {
  opacity: 0.9;
}

/* --- POST ARTICLE CTA --- */
.footer-cta {
  width: 90%;
  background: #FF9F00;
  /* Orange background */
  border-radius: 20px;
  padding: 4rem 2rem;
  text-align: center;
  margin-top: 5rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .footer-cta {
    margin: 20px;
  }
}
.footer-cta .cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.footer-cta .cta-content h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer-cta .cta-content p {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-weight: 500;
}
.footer-cta .cta-content .btn-primary {
  background: #143525;
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}
.footer-cta .cta-content .btn-primary:hover {
  background: rgb(26.9863013699, 71.5136986301, 49.9246575342);
}

/* --- FOOTER --- */
.main-footer {
  background-color: white;
  padding-top: 5rem;
  margin-top: 2rem;
}
.main-footer .footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 3rem;
}
.main-footer .footer-content .footer-col {
  flex: 1;
  min-width: 200px;
}
.main-footer .footer-content .footer-col.brand-col {
  flex: 1.5;
  padding-right: 2rem;
}
@media screen and (max-width: 768px) {
  .main-footer .footer-content .footer-col.brand-col {
    flex: 1;
  }
}
.main-footer .footer-content .footer-col .logo {
  margin-bottom: 1rem;
}
.main-footer .footer-content .footer-col .logo .logo-text {
  font-size: 2rem;
  font-weight: 800;
  color: #000;
}
.main-footer .footer-content .footer-col p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.main-footer .footer-content .footer-col .social-icons {
  display: flex;
  gap: 1rem;
}
.main-footer .footer-content .footer-col .social-icons .icon {
  width: 40px;
  height: 40px;
  border: 1px solid #143525;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #143525;
  transition: all 0.3s;
}
.main-footer .footer-content .footer-col .social-icons .icon:hover {
  background: #143525;
  color: white;
}
.main-footer .footer-content .footer-col h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  color: #143525;
  font-weight: 700;
}
.main-footer .footer-content .footer-col ul {
  list-style: none;
  padding: 0;
}
.main-footer .footer-content .footer-col ul li {
  margin-bottom: 1rem;
  color: #555;
  font-size: 0.95rem;
}
.main-footer .footer-content .footer-col ul li a {
  text-decoration: none;
  color: #555;
}
.main-footer .footer-content .footer-col ul li a:hover {
  color: #143525;
}
.main-footer .footer-bottom {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid #eee;
  color: #999;
  font-size: 0.85rem;
}

/* --- Global Hero Navbar (Floating Pill) --- */
.hero-navbar {
  background-color: white;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 100;
  max-width: 1440px;
  margin: 0 auto;
  width: 90%;
}
.hero-navbar .logo img {
  height: 40px;
}
.hero-navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}
.hero-navbar .nav-links li a {
  text-decoration: none;
  color: #103A21;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 16px;
  transition: color 0.3s;
}
.hero-navbar .nav-links li a:hover {
  color: #FFA100;
}
.hero-navbar .nav-links li a.btn-reservation {
  color: white !important;
}
.hero-navbar .nav-links li a.btn-reservation:hover {
  color: white !important;
}
.hero-navbar .nav-links .btn-reservation {
  display: none;
}
.hero-navbar .btn-reservation {
  background-color: #FFA100;
  color: white;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s;
}
.hero-navbar .btn-reservation:hover {
  background-color: rgb(229.5, 144.9, 0);
}
.hero-navbar .hamburger {
  display: none;
  /* Hidden by default */
}

/* --- HEADER WRAPPER --- */
.page-header-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 30px 100px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .page-header-wrapper {
    padding: 20px;
  }
}

/* --- NAVBAR RESPONSIVE --- */
@media screen and (max-width: 768px) {
  .hero-navbar {
    height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 15px 25px;
    gap: 0;
    margin-bottom: 20px;
    position: relative;
  }
  .hero-navbar .logo img {
    height: 35px;
  }
  .hero-navbar .btn-reservation {
    display: none;
    color: white;
  }
  .hero-navbar .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 20;
    position: absolute;
    right: 25px;
    top: 30px;
  }
  .hero-navbar .hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #103A21;
    border-radius: 3px;
    transition: all 0.3s ease;
  }
  .hero-navbar .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #eee;
  }
  .hero-navbar .nav-links li a {
    font-size: 18px;
  }
  .hero-navbar.active .hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #103A21;
  }
  .hero-navbar.active .hamburger span:nth-child(2) {
    opacity: 0;
  }
  .hero-navbar.active .hamburger span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: #103A21;
  }
  .hero-navbar.active .nav-links {
    display: flex;
  }
  .hero-navbar.active .nav-links .btn-reservation {
    color: white;
    display: block;
    margin: 20px auto 10px auto;
    width: fit-content;
  }
  .hero-navbar.active > .btn-reservation {
    display: none !important;
  }
}
#hero {
  max-width: 100%;
  height: 95vh;
  min-height: 650px;
  border-radius: 0 0 30px 30px;
  background-image: url("../images/accueil_header-Y1Sw1Ex.png");
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 30px 100px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  #hero {
    height: auto;
    min-height: auto;
    padding: 20px;
  }
}

#hero {
  position: relative;
  display: block;
}
#hero .hero-navbar {
  margin-bottom: 80px;
}
#hero .hero-content {
  width: 100%;
  max-width: 600px;
  position: absolute;
  bottom: 100px;
  left: 100px;
  z-index: 1;
}
@media (max-width: 1024px) {
  #hero .hero-content {
    position: relative;
    bottom: auto;
    left: auto;
    max-width: 100%;
    margin-top: 2rem;
    text-align: center;
    padding-bottom: 2rem;
  }
}
#hero .hero-content h1 {
  color: white;
  font-size: 64px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 1.1;
}
#hero .hero-content p {
  color: white;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 40px;
}
#hero .hero-content .hero-buttons {
  display: flex;
  gap: 20px;
}
#hero .hero-content .hero-buttons button {
  width: 165px;
  height: 51px;
  border-radius: 30px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}
#hero .hero-content .hero-buttons button.btn-filled {
  background-color: #FFA100;
  color: white;
  border: none;
}
#hero .hero-content .hero-buttons button.btn-filled:hover {
  background-color: rgb(229.5, 144.9, 0);
}
#hero .hero-content .hero-buttons button.btn-outline {
  background-color: transparent;
  color: white;
  border: 2px solid #FFA100;
  color: white;
}
#hero .hero-content .hero-buttons button.btn-outline:hover {
  background-color: rgba(255, 161, 0, 0.1);
}
@media (max-width: 1024px) {
  #hero .hero-buttons {
    display: none !important;
  }
}

.conseil-card {
  background-color: white;
  border-radius: 30px;
  padding: 30px;
  width: 400px;
}
@media (max-width: 1024px) {
  .conseil-card {
    display: none !important;
  }
}
.conseil-card {
  position: absolute;
  bottom: 100px;
  right: 100px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.conseil-card h3 {
  color: #FFA100;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: 19px;
  margin-top: 0;
  margin-bottom: 10px;
}
.conseil-card p {
  color: #103A21;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

#presentation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  padding: 100px 100px;
  align-items: center;
}
#presentation .presentation_partie:nth-of-type(1) {
  grid-column: 1;
  border-radius: 50px;
  overflow: hidden;
  height: 500px;
}
#presentation .presentation_partie:nth-of-type(1) img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#presentation .presentation_partie:nth-of-type(2) {
  grid-column: 2;
  justify-self: start;
  align-self: center;
  max-width: 600px;
}
#presentation .presentation_partie:nth-of-type(2) p:nth-of-type(1) {
  font-family: Arial, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #555;
  margin-bottom: 10px;
  font-weight: 600;
}
#presentation .presentation_partie:nth-of-type(2) p:nth-of-type(2) {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: 56px;
  color: #000;
  line-height: 1.1;
  margin-top: 0;
}
#presentation .presentation_partie:nth-of-type(2) p:nth-of-type(3) {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  margin-top: 0;
}

#services {
  background-color: #103A21;
  padding: 80px 100px;
  color: white;
}
#services .services-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
#services .services-header h2 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: white;
  margin: 0;
  white-space: nowrap;
}
#services .services-header .btn-reservations {
  background-color: #FFA100;
  color: white;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 12px 30px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s;
}
#services .services-header .btn-reservations:hover {
  background-color: rgb(229.5, 144.9, 0);
}
#services .services-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
#services .services-container .services-left .service-description {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 90%;
}
#services .services-container .services-left .image-wrapper {
  width: 100%;
  height: 250px;
  border-radius: 30px;
  overflow: hidden;
}
#services .services-container .services-left .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#services .services-container .services-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#services .services-container .services-right .service-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: background-color 0.3s;
}
#services .services-container .services-right .service-item:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
#services .services-container .services-right .service-item.active {
  background-color: rgba(255, 255, 255, 0.2);
}
#services .services-container .services-right .service-item.active .service-header .icon-plus {
  transform: rotate(45deg);
}
#services .services-container .services-right .service-item.active .service-content {
  max-height: 200px;
  padding: 0 20px 20px 20px;
}
#services .services-container .services-right .service-item .service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}
#services .services-container .services-right .service-item .service-header span {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: white;
}
#services .services-container .services-right .service-item .service-header .icon-plus {
  font-style: normal;
  font-size: 24px;
  font-weight: 300;
  color: white;
  transition: transform 0.3s;
}
#services .services-container .services-right .service-item .service-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  padding: 0 20px;
}
#services .services-container .services-right .service-item .service-content p {
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #E0E0E0;
  margin: 0;
}

/* --- SERVICES 2 SECTION --- */
#services2 {
  padding: 50px 100px;
  background-color: white;
}
#services2 .services2-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
#services2 .services2-header .header-left .service-eyebrow {
  font-family: Arial, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #555;
  margin-bottom: 15px;
  font-weight: 600;
}
#services2 .services2-header .header-left h2 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: 48px;
  margin: 0 0 20px 0;
  color: #000;
  line-height: 1.1;
}
#services2 .services2-header .header-left .service-subtext {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin: 0;
  max-width: 600px;
}
#services2 .services2-header .header-right {
  display: flex;
  gap: 20px;
}
#services2 .services2-header .header-right .btn-reservations {
  background-color: #FFA100;
  color: white;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 12px 30px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s;
}
#services2 .services2-header .header-right .btn-reservations:hover {
  background-color: rgb(229.5, 144.9, 0);
}
#services2 .services2-header .header-right .btn-outline {
  background-color: transparent;
  color: #103A21;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 12px 30px;
  border-radius: 30px;
  border: 2px solid #103A21;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}
#services2 .services2-header .header-right .btn-outline:hover {
  background-color: #103A21;
  color: white;
}
#services2 .services2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
#services2 .services2-grid .s2-card {
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}
#services2 .services2-grid .s2-card .s2-card-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: white;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
#services2 .services2-grid .s2-card .s2-card-content img {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}
#services2 .services2-grid .s2-card .s2-card-content h3 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #000;
  margin: 0 0 15px 0;
}
#services2 .services2-grid .s2-card .s2-card-content p {
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  margin: 0;
}

#portfolio {
  padding: 0 100px 90px 100px;
  background-color: white;
}
#portfolio .portfolio-header {
  text-align: center;
  margin-bottom: 50px;
}
#portfolio .portfolio-header .eyebrow {
  font-family: Arial, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #555;
  margin-bottom: 10px;
  font-weight: 600;
  padding: 0;
}
#portfolio .portfolio-header h2 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: 48px;
  margin: 0 0 20px 0;
  color: #000;
  line-height: 1.1;
}
#portfolio .portfolio-header .description {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin: 0 auto;
  max-width: 700px;
  padding-bottom: 0;
}
#portfolio .portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto auto;
  gap: 30px;
}
#portfolio .portfolio-grid .p-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  display: block;
}
#portfolio .portfolio-grid {
  /* --- GRID LAYOUT --- */
}
#portfolio .portfolio-grid .p-img-1 {
  grid-column: 1;
  grid-row: 1;
  height: 220px;
}
#portfolio .portfolio-grid .p-img-2 {
  grid-column: 2;
  grid-row: 1;
  height: 220px;
}
#portfolio .portfolio-grid .p-img-3 {
  grid-column: 3/span 2;
  grid-row: 1/span 2;
  height: 100%;
  min-height: 470px;
}
#portfolio .portfolio-grid .p-img-4 {
  grid-column: 1/span 2;
  grid-row: 2/span 2;
  height: 100%;
  min-height: 470px;
}
#portfolio .portfolio-grid .p-img-5 {
  grid-column: 3;
  grid-row: 3;
  height: 220px;
}
#portfolio .portfolio-grid .p-img-6 {
  grid-column: 4;
  grid-row: 3;
  height: 220px;
}

#avis {
  padding: 0 100px 100px 100px;
  background-color: white;
}
#avis .avis-header {
  margin-bottom: 30px;
}
#avis .avis-header h2 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: 48px;
  margin: 0 0 20px 0;
  color: #000;
  line-height: 1.1;
}
#avis .avis-header .header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
#avis .avis-header .header-row p {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin: 0;
  max-width: 600px;
}
#avis .avis-header .header-row .btn-reservations {
  background-color: #FFA100;
  color: white;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 12px 30px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s;
}
#avis .avis-header .header-row .btn-reservations:hover {
  background-color: rgb(229.5, 144.9, 0);
}
#avis .avis-carousel {
  width: 100%;
  height: 300px;
  border-radius: 30px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: background-image 0.5s ease-in-out;
}
#avis .avis-carousel .review-card {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background-color: white;
  padding: 20px 30px;
  border-radius: 20px;
  max-width: 450px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
#avis .avis-carousel .review-card #review-text {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 30px;
  font-style: italic;
}
#avis .avis-carousel .review-card .review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#avis .avis-carousel .review-card .review-footer .reviewer-info {
  display: flex;
  align-items: center;
  gap: 15px;
}
#avis .avis-carousel .review-card .review-footer .reviewer-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
#avis .avis-carousel .review-card .review-footer .reviewer-info .info-text {
  display: flex;
  flex-direction: column;
}
#avis .avis-carousel .review-card .review-footer .reviewer-info .info-text .name {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #000;
}
#avis .avis-carousel .review-card .review-footer .reviewer-info .info-text .date {
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #777;
}
#avis .avis-carousel .review-card .review-footer .nav-buttons {
  display: flex;
  gap: 10px;
}
#avis .avis-carousel .review-card .review-footer .nav-buttons .nav-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: none;
  background-color: #103A21;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}
#avis .avis-carousel .review-card .review-footer .nav-buttons .nav-btn:hover {
  background-color: rgb(27.027027027, 97.972972973, 55.7432432432);
}
#avis .avis-carousel .review-card .review-footer .nav-buttons .nav-btn.prev {
  background-image: url("../images/icon_precedent-rDWs0rC.png");
}
#avis .avis-carousel .review-card .review-footer .nav-buttons .nav-btn.next {
  background-image: url("../images/icon_suivant-uAN4Zsm.png");
}

#blog {
  padding: 0 100px 90px 100px;
  background-color: white;
}
#blog .blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
}
#blog .blog-header .header-left .eyebrow {
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
}
#blog .blog-header .header-left h2 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: 48px;
  margin: 0 0 20px 0;
  color: #000;
  line-height: 1.1;
}
#blog .blog-header .header-left .description {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin: 0;
  max-width: 600px;
}
#blog .blog-header .header-right .btn-news {
  background-color: #103A21;
  color: white;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 12px 30px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s;
}
#blog .blog-header .header-right .btn-news:hover {
  background-color: rgb(21.5135135135, 77.9864864865, 44.3716216216);
}
#blog .blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
#blog .blog-grid .blog-card {
  cursor: pointer;
  transition: transform 0.3s;
}
#blog .blog-grid .blog-card:hover {
  transform: translateY(-5px);
}
#blog .blog-grid .blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 30px;
  margin-bottom: 20px;
}
#blog .blog-grid .blog-card h3 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #000;
  margin: 0 0 20px 0;
  line-height: 1.4;
  min-height: 56px;
}
#blog .blog-grid .blog-card hr {
  border: none;
  border-top: 1px solid #E0E0E0;
  margin-bottom: 20px;
}
#blog .blog-grid .blog-card .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#blog .blog-grid .blog-card .card-footer .date {
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #000;
  font-weight: 700;
}
#blog .blog-grid .blog-card .card-footer .read-more {
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #FFA100;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.3s;
}
#blog .blog-grid .blog-card .card-footer .read-more:hover {
  color: rgb(204, 128.8, 0);
}

/* --- RESPONSIVE DESIGN (Mobile < 768px) --- */
@media screen and (max-width: 768px) {
  /* --- HEADER --- */
  #header {
    height: auto;
    min-height: 700px;
    padding: 20px;
    background-position: center top;
  }
  #header .hero-content {
    position: relative;
    bottom: auto;
    left: auto;
    margin: 0 auto 40px auto;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  #header .hero-content h1 {
    font-size: 48px;
    text-align: center;
  }
  #header .hero-content p {
    text-align: center;
    font-size: 16px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  #header .hero-content .hero-buttons {
    justify-content: center;
  }
  #header .conseil-card {
    display: none;
  }
  /* --- PRESENTATION --- */
  #presentation {
    grid-template-columns: 1fr;
    padding: 50px 20px;
    gap: 40px;
  }
  #presentation .presentation_partie:nth-of-type(1) {
    grid-column: 1;
    height: 300px;
  }
  #presentation .presentation_partie:nth-of-type(2) {
    grid-column: 1;
    text-align: center;
    justify-self: center;
    margin: 0 auto;
    max-width: 90%;
  }
  #presentation .presentation_partie:nth-of-type(2) p {
    margin-left: auto;
    margin-right: auto;
  }
  #presentation .presentation_partie:nth-of-type(2) p:nth-of-type(2) {
    font-size: 42px;
  }
  /* --- SERVICES --- */
  #services {
    grid-template-columns: 1fr;
    padding: 50px 20px;
    gap: 40px;
  }
  #services .services-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  #services .services-header h2 {
    font-size: 36px;
    white-space: normal;
  }
  #services .services-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  #services .services-container .services-left .image-wrapper {
    height: 200px;
  }
  #services .services-container .services-left .service-description {
    text-align: center;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  #services .services-container .services-right .btn-reservations {
    margin: 0 auto 30px auto;
    display: block;
    width: fit-content;
    max-width: 90%;
  }
  /* --- SERVICES 2 --- */
  #services2 {
    padding: 50px 20px;
  }
  #services2 .services2-header {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
  }
  #services2 .services2-header .header-right {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 90%;
    margin: 0 auto;
  }
  #services2 .services2-grid {
    grid-template-columns: 1fr;
  }
  /* --- PORTFOLIO --- */
  #portfolio {
    padding: 0 20px 50px 20px;
  }
  #portfolio .portfolio-header {
    text-align: center;
  }
  #portfolio .portfolio-header .eyebrow,
  #portfolio .portfolio-header .description {
    text-align: center;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 90%;
  }
  #portfolio .portfolio-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 20px;
  }
  #portfolio .portfolio-grid .p-img-1,
  #portfolio .portfolio-grid .p-img-2,
  #portfolio .portfolio-grid .p-img-3,
  #portfolio .portfolio-grid .p-img-4,
  #portfolio .portfolio-grid .p-img-5,
  #portfolio .portfolio-grid .p-img-6 {
    grid-column: 1 !important;
    grid-row: auto !important;
    height: 250px !important;
    min-height: 0;
  }
  /* --- AVIS --- */
  #avis {
    padding: 0 20px 50px 20px;
  }
  #avis .avis-header {
    text-align: center;
  }
  #avis .avis-header .header-row {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  #avis .avis-header .header-row .btn-reservations {
    align-self: center;
  }
  #avis .avis-carousel {
    height: auto;
    background-image: none !important;
    background: none;
  }
  #avis .avis-carousel .review-card {
    position: relative;
    bottom: auto;
    left: auto;
    margin: 0;
    width: 100%;
    max-width: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  /* --- BLOG --- */
  #blog {
    padding: 0 20px 50px 20px;
  }
  #blog .blog-header {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
  }
  #blog .blog-header .header-left .eyebrow,
  #blog .blog-header .header-left .description {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  #blog .blog-grid {
    grid-template-columns: 1fr;
  }
}
.reservation-body {
  margin: 0;
  padding: 0;
  height: 100vh;
  overflow: hidden;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.reservation-container {
  display: flex;
  flex-direction: row;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

/* --- SIDEBAR --- */
/* --- SIDEBAR --- */
.sidebar {
  width: 400px;
  background: url("../images/formulaire-kH8LZGR.png") no-repeat center center/cover;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
  /*&::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.4);
      z-index: 0;
  }*/
  /* Wrapper for top content (close button) */
}
.sidebar .sidebar-content {
  position: relative;
  z-index: 1;
  padding: 20px;
  padding-bottom: 10px;
  /* flex: 1 removed to allow recap to take space */
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.sidebar a.btn-home-return {
  position: absolute;
  top: 20px;
  left: 20px;
  text-decoration: none;
  color: white;
  /* Matches sidebar text */
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  z-index: 2;
  transition: color 0.2s;
}
.sidebar a.btn-home-return svg {
  stroke: currentColor;
}
.sidebar a.btn-home-return:hover {
  color: #FFA100;
}

/* --- HORIZONTAL STEPS (Top Right) --- */
.horizontal-steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 15px 30px 50px 0;
  /* Reduced margins */
  width: 100%;
}
.horizontal-steps .step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 90px;
  /* Reduced from 120px */
}
.horizontal-steps .step-item .step-circle {
  width: 24px;
  /* Reduced from 32px */
  height: 24px;
  border-radius: 50%;
  background-color: #999;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 12px;
  /* Reduced from 14px */
  margin-bottom: 5px;
  position: relative;
  z-index: 2;
}
.horizontal-steps .step-item .step-label {
  font-size: 0.75rem;
  /* Reduced from 0.85rem */
  color: #ccc;
  font-weight: 500;
}
.horizontal-steps .step-item.active .step-circle, .horizontal-steps .step-item.completed .step-circle {
  background-color: #FFA100;
}
.horizontal-steps .step-item.active .step-label, .horizontal-steps .step-item.completed .step-label {
  color: #FFA100;
  font-weight: 700;
}
.horizontal-steps .step-item {
  /* Connecting Line */
}
.horizontal-steps .step-item::after {
  content: "";
  position: absolute;
  top: 12px;
  /* Adjusted for smaller circle (24/2 = 12) */
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: #ccc;
  z-index: 1;
}
.horizontal-steps .step-item:last-child::after {
  display: none;
}
.horizontal-steps .step-item.completed::after {
  background-color: #FFA100;
}
.horizontal-steps .step-item.active::after {
  background-color: #ccc;
}

/* --- RECAP SECTION INSIDE SIDEBAR --- */
.sidebar-recap {
  background-color: #F4FBF6;
  /* Very light green */
  color: #103A21;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* Push content to bottom */
  margin-top: auto;
  /* Push to bottom */
  flex: 0 0 auto;
  /* Do not expand to fill height, just take content height */
  width: 100%;
  /* Ensure full width */
}
.sidebar-recap .recap-content {
  padding: 30px;
  flex: 0 1 auto;
  overflow-y: auto;
  max-height: 40vh;
  /* Reduced max-height slightly to keep it compact */
}
.sidebar-recap .recap-content h4 {
  color: #FFA100;
  font-size: 1.1rem;
  margin: 0 0 20px 0;
  font-weight: 700;
  text-transform: uppercase;
}
.sidebar-recap .recap-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-recap .recap-content ul li {
  color: #103A21;
  font-size: 1rem;
  margin-bottom: 10px;
  font-weight: 500;
}
.sidebar-recap .recap-footer {
  background-color: #103A21;
  color: white;
  height: 100px;
  /* Fixed height to match button */
  padding: 0 30px;
  /* Horizontal padding only */
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sidebar-recap .recap-footer .label {
  font-weight: 700;
  font-size: 1.1rem;
}
.sidebar-recap .recap-footer .price {
  font-weight: 700;
  font-size: 1.8rem;
}

/* --- MAIN CONTENT --- */
.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0;
  background: #fff;
  overflow: hidden;
  position: relative;
  height: 100vh;
}

.scroll-content {
  flex: 1;
  overflow-y: auto;
  padding: 10px 40px;
  /* Reduced vertical padding */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* Fix: prevented top clipping */
  padding-top: 10px;
  /* specific top spacing */
}
@media screen and (max-width: 768px) {
  .scroll-content {
    padding: 10px 20px;
  }
}

.content-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  /* Reduced gap */
  margin-bottom: 50px;
  /* Reduced margin */
  position: relative;
  width: 100%;
  flex-shrink: 0;
  /* ... rest ... */
}
.content-header .btn-back {
  position: absolute;
  left: 0;
  top: 5px;
  background: none;
  border: none;
  color: #FFA100;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}
.content-header .page-title {
  font-family: inherit;
  font-size: 1.6rem;
  /* Slightly smaller */
  color: #103A21;
  margin: 0;
  text-align: center;
  font-weight: 800;
}
.content-header .page-title .highlight {
  color: #FFA100;
}
.content-header::after {
  content: "";
  display: block;
  width: 100%;
  max-width: 600px;
  height: 1px;
  background: #ccc;
  margin-top: 5px;
}

#reservation-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.step-content {
  display: none;
  flex-direction: column;
  width: 100%;
}
.step-content.active {
  display: block;
  opacity: 1;
}

.step-description {
  text-align: center;
  color: #555;
  margin-bottom: 15px;
  /* Reduced margin */
  font-size: 0.9rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ... Steps 1-3 skipped for brevity if unchanged, but putting full block for context safely ... */
/* Actually, I should use the specific block replacement to avoid overwriting the whole file if I can target step 4 specific areas,
   BUT user wants me to fix "Step 4 top not visible" which implies header/scroll-content changes are global.
   I need to be careful not to break Steps 1-3.
   Steps 1-3 are fine with `flex-start` too, as long as they aren't tiny tiny.
   Let's replace `scroll-content` and then `step-4` specific styles.
   Wait, `replace_file_content` requires Contiguous block. The file structure is:
   sidebar -> main-content -> scroll-content -> header -> form -> step 1 -> step 2 -> step 3 -> step 4.
   I need to change `scroll-content` (top of file) AND `Step 4` (bottom of file).
   I should use `multi_replace_file_content` or just `replace_file_content` on the `scroll-content` first, then another for Step 4?
   No, I can do `write_to_file` again to be absolutely safe and consistent given the previous issues.
   Or `replace_file_content` from `scroll-content` down to `Step 4` if I include everything? That's huge.
   Let's use `multi_replace_file_content`? No, I don't have that enabled in the prompt description (I see `multi_replace_file_content` in shared tools?).
   Ah, I see `multi_replace_file_content` in the definitions!
   I will use `multi_replace_file_content`.
*/
/* Correction: I see `multi_replace_file_content` in the tool definitions. Proceeding with that. */
/* --- STEP 1: SERVICES (V3 Compact) --- */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  /* Reduced gap */
  max-width: 900px;
  margin: 0 auto;
}

.service-card {
  cursor: pointer;
  position: relative;
  flex: 1 1 auto;
  /* Allow grow and shrink, but based on content */
  width: auto;
  min-width: 150px;
  /* Safe minimum */
  /* Removed max-width to allow long titles on one line */
}

.service-card input[type=checkbox] {
  /* Accessible hidden input - OVERLAY METHOD */
  /* This ensures focus works perfectly on all browsers */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  z-index: 2;
  /* Content is below */
  cursor: pointer;
  /* Fix text selection */
  user-select: none;
}
.service-card input[type=checkbox]:focus + .card-inner, .service-card input[type=checkbox]:focus-visible + .card-inner {
  outline: 3px solid #FFA100;
  outline-offset: 4px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  z-index: 10;
  /* Bring to front */
}
.service-card input[type=checkbox]:checked + .card-inner {
  border-color: #103A21;
}
.service-card input[type=checkbox]:checked + .card-inner .card-top {
  background-color: #103A21;
  color: white;
}
.service-card input[type=checkbox]:checked + .card-inner .card-top .price,
.service-card input[type=checkbox]:checked + .card-inner .card-top .name,
.service-card input[type=checkbox]:checked + .card-inner .card-top .duration {
  color: white;
}
.service-card input[type=checkbox]:checked + .card-inner .card-bottom {
  /* Already green */
}

.service-card .card-inner {
  border: 2px solid #103A21;
  border-radius: 20px;
  padding: 0;
  /* Remove padding to let children fill */
  display: flex;
  flex-direction: column;
  text-align: center;
  height: 160px;
  /* Slight increase to fit design */
  transition: all 0.2s;
  background: white;
  position: relative;
  overflow: hidden;
  /* Ensure children fill corners */
}
.service-card .card-inner:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.service-card .card-inner .card-top {
  background: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s;
}
.service-card .card-inner .card-top .price,
.service-card .card-inner .card-top .name,
.service-card .card-inner .card-top .duration {
  font-weight: 700;
  color: #103A21;
  font-size: 0.9rem;
}
.service-card .card-inner .card-top .name {
  flex: 0 0 auto;
  /* Do not shrink, take necessary space */
  text-align: center;
  font-size: 1rem;
  text-transform: capitalize;
  white-space: nowrap;
  padding: 0 10px;
}
.service-card .card-inner .card-bottom {
  flex: 1;
  /* Fill remaining height */
  background-color: #103A21;
  display: flex;
  /* Center icon */
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.service-card .card-inner .card-bottom .icon-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card .card-inner .card-bottom .icon-wrapper img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  /* Ensure icon is white */
}

/* --- STEP 2: DATE (Side-by-Side) --- */
.step2-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.calendar-wrapper {
  flex: 0 0 auto;
  width: 320px;
  margin: 0;
  background: white;
  padding: 0;
  box-shadow: none;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 0 10px;
}
.calendar-header .current-month {
  font-family: inherit;
  color: #333;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}
.calendar-header .nav-btn {
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  color: #333;
  padding: 5px;
}
.calendar-header .nav-btn:hover {
  color: #FFA100;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  text-align: center;
}
.calendar-grid .day-name {
  font-weight: 700;
  color: #333;
  font-size: 0.9rem;
  margin-bottom: 15px;
}
.calendar-grid .day-btn {
  aspect-ratio: 1;
  background: none;
  border: none;
  border-radius: 50%;
  font-size: 0.95rem;
  /* Larger font */
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  /* Darker text for availability */
  font-weight: 500;
}
.calendar-grid .day-btn:hover:not(:disabled) {
  background: #e0e7e3;
}
.calendar-grid .day-btn.selected {
  background: #143525 !important;
  color: white !important;
  font-weight: 700;
}
.calendar-grid .day-btn:disabled, .calendar-grid .day-btn.disabled {
  color: #ccc;
  background-color: #f5f5f5;
  /* Grey background */
  cursor: not-allowed;
  opacity: 0.6;
  text-decoration: line-through;
  /* Strikethrough */
}

.time-slots-container {
  flex: 0 0 auto;
  width: 280px;
  margin: 0;
  border-top: none;
  border-left: 1px solid #ddd;
  padding-top: 0;
  padding-left: 40px;
  text-align: center;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.time-slots-container h3 {
  color: #333;
  margin-bottom: 30px;
  font-size: 1.1rem;
  font-weight: 700;
}
.time-slots-container .slots-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}
.time-slots-container .time-slot {
  width: 100%;
  position: relative;
  /* Ensure hidden input stays local */
  cursor: pointer;
}
.time-slots-container .time-slot input {
  /* Accessible hidden input - OVERLAY METHOD */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  z-index: 2;
  cursor: pointer;
  /* Visual Focus on Sibling Span */
}
.time-slots-container .time-slot input:focus + span, .time-slots-container .time-slot input:focus-visible + span {
  outline: 2px solid #FFA100;
  outline-offset: 2px;
  border-color: #FFA100;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  z-index: 5;
}
.time-slots-container .time-slot input:checked + span {
  background: white;
  color: #333;
  border-color: #143525;
  border-width: 2px;
}
.time-slots-container .time-slot:checked + span {
  background: white;
  color: #333;
  border-color: #143525;
  border-width: 2px;
}
.time-slots-container span {
  display: block;
  border: 1px solid #ccc;
  padding: 10px 20px;
  border-radius: 30px;
  color: #666;
  font-size: 0.9rem;
  transition: all 0.2s;
  cursor: pointer;
  background: white;
}
.time-slots-container span:hover {
  border-color: #143525;
}

/* --- STEP 3: INFOS --- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  /* Reduced gap */
  max-width: 700px;
  /* Reduced width */
  margin: 0 auto;
  align-content: center;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  /* Reduced gap */
}
.form-group.full-width {
  grid-column: 1/-1;
}
.form-group label {
  font-size: 0.85rem;
  /* Smaller font */
  color: #666;
  margin-left: 10px;
  font-weight: 600;
}
.form-group input {
  padding: 10px 20px;
  /* Smaller padding */
  border-radius: 30px;
  border: 1px solid #eee;
  background: #f5f5f5;
  font-size: 0.95rem;
  /* Smaller font */
  height: 45px;
  /* Fixed smaller height */
}
.form-group input:focus {
  outline: none;
  border-color: #FFA100;
  background: white;
}

/* --- STEP 4: CONFIRMATION --- */
.confirmation-banner {
  background: #103A21;
  color: white;
  padding: 15px 30px;
  /* Reduced */
  border-radius: 30px;
  text-align: center;
  font-size: 1.1rem;
  /* Smaller */
  font-weight: 600;
  margin-bottom: 20px;
  /* Reduced */
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3 Columns for compactness */
  gap: 20px;
  /* Reduced gap */
  max-width: 800px;
  margin: 0 auto;
}
.summary-grid h4 {
  color: #FFA100;
  margin-bottom: 5px;
  /* Reduced */
  font-size: 0.95rem;
  /* Smaller */
  margin-top: 0;
}
.summary-grid p {
  font-weight: 600;
  color: #103A21;
  font-size: 0.9rem;
  /* Smaller */
  margin: 0;
}

/* --- BOTTOM BAR --- */
.bottom-bar {
  display: flex;
  height: 100px;
  /* Matched to recap footer height */
  padding: 0;
  margin: 0;
  width: 100%;
  margin-top: auto;
  flex-shrink: 0;
  background: #ccc;
  /* Default gray (disabled state) */
  transition: background-color 0.3s;
}
.bottom-bar.active {
  background: #FFA100;
  /* Active orange */
}
.bottom-bar.active:hover {
  background: #cc8100;
}
.bottom-bar .price-container {
  flex: 1;
  background: #103A21;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
}
.bottom-bar .price-container .price-amount {
  font-size: 1.5rem;
}
.bottom-bar button.btn-next {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  /* Center it */
  background: #FFA100;
  border: none;
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.bottom-bar button.btn-next:hover {
  background: #cc8100;
}
.bottom-bar button.btn-next:disabled {
  background: #ccc;
  cursor: not-allowed;
}
.bottom-bar button.btn-next .arrow {
  font-size: 1.4rem;
}

/* --- MODAL --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
}
.modal-overlay .modal-content {
  background: white;
  padding: 60px;
  border-radius: 0;
  width: 100%;
  max-width: 900px;
  text-align: center;
  position: relative;
}
.modal-overlay .modal-close {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}
.modal-overlay h2 {
  font-family: inherit;
  color: #103A21;
  font-size: 2.5rem;
  margin-bottom: 30px;
}
.modal-overlay .success-message-box {
  background: #103A21;
  color: white;
  padding: 20px;
  border-radius: 50px;
  display: inline-block;
  margin: 30px 0;
  font-weight: 600;
  padding: 20px 40px;
}
.modal-overlay .modal-summary {
  display: flex;
  justify-content: space-around;
  text-align: left;
  margin-top: 40px;
}
.modal-overlay .modal-summary h4 {
  color: #FFA100;
  margin-bottom: 15px;
}
.modal-overlay .modal-summary p {
  color: #103A21;
  font-weight: 700;
  margin-bottom: 5px;
}

/* --- ERROR MESSAGE --- */
/* --- MOBILE RESPONSIVE --- */
.mobile-close-btn {
  display: none;
  /* Hidden by default */
  align-items: center;
  justify-content: center;
  padding: 5px;
  cursor: pointer;
}
.mobile-close-btn svg stroke {
  stroke: #103A21;
}

@media screen and (max-width: 768px) {
  .reservation-container {
    flex-direction: row;
    height: auto;
    min-height: 100vh;
    overflow-y: auto;
  }
  .sidebar {
    display: none;
    /* Hide sidebar on mobile */
  }
  .main-content {
    width: 100%;
    height: auto;
    overflow: visible;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .scroll-content {
    padding: 15px 20px;
    height: auto;
    overflow: visible;
  }
  .horizontal-steps {
    justify-content: space-between;
    margin: 10px 20px;
    width: auto;
    align-items: center;
  }
  .horizontal-steps .step-item {
    width: 40px;
    /* Collapse width */
  }
  .horizontal-steps .step-item .step-circle {
    width: 28px;
    height: 28px;
    font-size: 12px;
    margin-bottom: 0;
  }
  .horizontal-steps .step-item .step-label {
    display: none;
    /* Hide labels on mobile */
  }
  .horizontal-steps .step-item::after {
    display: none;
    /* Hide connecting lines to simplify */
  }
  .horizontal-steps .step-item.active .step-circle {
    transform: scale(1.1);
  }
  .mobile-close-btn {
    display: flex;
    /* Show on mobile */
  }
  .content-header {
    margin-bottom: 50px;
  }
  .content-header .page-title {
    font-size: 1.5rem;
  }
  /* Step 1: Services */
  .services-grid {
    gap: 10px;
  }
  .service-card {
    width: 48%;
    /* 2 items per row */
  }
  .service-card .card-inner {
    padding: 10px 5px;
    height: 110px;
  }
  .service-card .card-inner h3 {
    font-size: 0.8rem;
  }
  .service-card .card-inner .time-badge {
    font-size: 0.7rem;
    top: 5px;
    right: 5px;
  }
  .service-card .card-inner .icon-wrapper img {
    height: 30px;
  }
  /* Step 2: Date */
  .step2-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .calendar-wrapper {
    width: 100%;
    max-width: 350px;
  }
  .time-slots-container {
    width: 100%;
    max-width: 350px;
    border-left: none;
    border-top: 1px solid #ddd;
    padding-left: 0;
    padding-top: 20px;
    min-height: auto;
  }
  /* Step 3: Infos */
  .form-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  /* Step 4: Summary */
  .summary-grid {
    grid-template-columns: 1fr;
    /* Stack vertically */
    gap: 15px;
  }
  .summary-grid .summary-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
  }
  .bottom-bar {
    position: sticky;
    bottom: 0;
    z-index: 100;
    height: 60px;
  }
  .bottom-bar button.btn-next {
    font-size: 1rem;
  }
  .bottom-bar {
    /* Show price in bottom bar if needed? For now just keep it simple */
  }
}
/* --- UTILITIES --- */
.error-message {
  color: #d32f2f;
  /* Red */
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  display: none;
  font-size: 0.95rem;
}

/* FIX FULLCALENDAR CLICK */
#calendar {
  position: relative;
  z-index: 20;
}

.fc {
  pointer-events: auto !important;
}

.fc-daygrid-day {
  cursor: pointer;
}

.fc-daygrid-day-frame {
  pointer-events: auto !important;
}

/* CONTENEUR */
.calendar-wrapper {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* HEADER */
.fc-toolbar-title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #103A21;
}

/* BOUTONS */
.fc-button {
  background: #103A21 !important;
  border: none !important;
  border-radius: 8px !important;
}

.fc-button:hover {
  background: #145c35 !important;
}

/* JOURS */
.fc-daygrid-day-number {
  font-weight: 500;
  color: #103A21;
}

/* JOUR AU SURVOL */
.fc-daygrid-day:hover {
  background: #f0f7f3;
}

/* JOUR SÉLECTIONNABLE */
.fc-daygrid-day.fc-day-today {
  background: #e5f3eb !important;
}

/* WEEK-END */
.fc-day-sat,
.fc-day-sun {
  background: #fafafa;
}

.slot-btn {
  padding: 10px 20px;
  border-radius: 25px;
  border: 1px solid #103A21;
  background: white;
  color: #103A21;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.slot-btn:hover {
  background: #103A21;
  color: white;
}
.slot-btn.active {
  background: #103A21;
  color: white;
}

.field-error-msg {
  display: none;
  /* par défaut caché */
  color: #d32f2f;
  font-size: 0.8rem;
  margin-top: 5px;
}

.field-error-msg.active {
  display: block;
}

/* --- RECAP SIDEBAR --- */
.reservation-container .layout-wrapper {
  display: flex;
  flex: 1;
  overflow: hidden;
  /* This wrapper replaces the direct usage of main-content's internal structure if needed */
}
.reservation-container .form-layout {
  display: flex;
  flex: 1;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.reservation-container .recap-sidebar {
  width: 300px;
  background: white;
  border-left: 1px solid #eee;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.05);
  z-index: 10;
}
.reservation-container .recap-sidebar .recap-header-img {
  height: 120px;
  background-color: #e0e7e3;
  background-image: url("../images/formulaire-kH8LZGR.png");
  /* You might need to generate or use existing */
  background-size: cover;
  background-position: center;
  /* Fallback if no image */
  display: flex;
  align-items: flex-end;
}
.reservation-container .recap-sidebar .recap-content {
  flex: 1;
  background-color: #F0FFF4;
  /* Light Green */
  padding: 20px;
  overflow-y: auto;
}
.reservation-container .recap-sidebar .recap-content h4 {
  color: #FF9900;
  /* Orange title */
  font-size: 1.1rem;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 700;
}
.reservation-container .recap-sidebar .recap-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.reservation-container .recap-sidebar .recap-content ul li {
  color: #103A21;
  font-size: 0.95rem;
  margin-bottom: 10px;
  line-height: 1.4;
}
.reservation-container .recap-sidebar .recap-footer {
  background-color: #103A21;
  /* Dark Green */
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.reservation-container .recap-sidebar .recap-footer .label {
  font-weight: 500;
  font-size: 1rem;
}
.reservation-container .recap-sidebar .recap-footer .price {
  font-weight: 700;
  font-size: 1.5rem;
}

/* --- VARIABLES --- */
/* --- LAYOUT --- */
.dashboard-body {
  background-color: #f8fbf9;
  color: #1f2937;
  font-family: "M PLUS Rounded 1c", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.dashboard-container {
  display: flex;
  min-height: 100vh;
}
@media (max-width: 768px) {
  .dashboard-container {
    flex-direction: column;
  }
}

/* --- SIDEBAR --- */
.dashboard-sidebar {
  width: 280px;
  background-color: #0f392b;
  color: white;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  transition: all 0.3s;
}
.dashboard-sidebar .sidebar-header {
  margin-bottom: 3rem;
}
.dashboard-sidebar .sidebar-header .sidebar-logo {
  max-width: 100%;
  height: 50px;
  filter: brightness(0) invert(1);
}
.dashboard-sidebar .sidebar-nav ul {
  list-style: none;
  padding: 0;
}
.dashboard-sidebar .sidebar-nav ul li {
  margin-bottom: 0.5rem;
}
.dashboard-sidebar .sidebar-nav ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.2s;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.dashboard-sidebar .sidebar-nav ul li a:hover, .dashboard-sidebar .sidebar-nav ul li a.active {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  font-weight: 700;
}
.dashboard-sidebar .sidebar-nav ul li a .icon {
  font-size: 1.2rem;
}
.dashboard-sidebar {
  /* --- MOBILE --- */
}
@media (max-width: 991px) {
  .dashboard-sidebar {
    width: 80px;
    padding: 2rem 0.5rem;
  }
  .dashboard-sidebar .sidebar-logo {
    display: none;
  }
  .dashboard-sidebar .sidebar-nav ul li a {
    justify-content: center;
    padding: 12px;
  }
  .dashboard-sidebar .sidebar-nav ul li a span.icon {
    margin: 0;
    font-size: 1.5rem;
  }
  .dashboard-sidebar .sidebar-nav ul li a {
    font-size: 0;
  }
}
@media (max-width: 768px) {
  .dashboard-sidebar {
    width: 100%;
    height: auto;
    flex-direction: row;
    padding: 1rem;
    align-items: center;
    justify-content: space-between;
  }
  .dashboard-sidebar .sidebar-header {
    margin: 0;
    margin-bottom: 0;
  }
  .dashboard-sidebar .sidebar-header .sidebar-logo {
    display: block;
    height: 30px;
  }
  .dashboard-sidebar .sidebar-nav {
    display: flex;
    width: 100%;
    overflow-x: auto;
  }
  .dashboard-sidebar .sidebar-nav ul {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin: 0;
    padding: 0;
    width: 100%;
    justify-content: space-around;
    width: 100%;
  }
  .dashboard-sidebar .sidebar-nav ul li {
    margin-bottom: 0;
    flex: 1;
  }
  .dashboard-sidebar .sidebar-nav ul li a {
    justify-content: center;
    padding: 0.5rem;
    flex-direction: column;
    font-size: 0.75rem;
    gap: 4px;
    text-align: center;
  }
  .dashboard-sidebar .sidebar-nav ul li a .icon {
    font-size: 1.2rem;
    margin: 0;
  }
}

/* --- MAIN CONTENT --- */
.dashboard-main {
  flex: 1;
  padding: 2.5rem;
  overflow-y: auto;
}
@media (max-width: 768px) {
  .dashboard-main {
    padding: 1rem;
  }
}
.dashboard-main .dashboard-header {
  margin-bottom: 2.5rem;
}
.dashboard-main .dashboard-header h2 {
  font-family: "M PLUS Rounded 1c", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800;
  color: #1f2937;
  font-size: 1.5rem;
}

/* --- STATS CARD --- */
.stat-card {
  background: white;
  padding: 1.5rem 2rem;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 768px) {
  .stat-card {
    margin-bottom: 1rem;
    padding: 1rem;
  }
}
.stat-card .stat-icon {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}
.stat-card .stat-info {
  text-align: right;
  display: flex;
  flex-direction: column;
}
.stat-card .stat-info .stat-label {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.stat-card .stat-info .stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  line-height: 1;
}

/* --- CARD --- */
.card {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: none;
  margin-bottom: 1.5rem;
  background: white;
}
.card .card-body {
  padding: 1.5rem;
}
.card .card-title {
  font-family: "M PLUS Rounded 1c", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: #1f2937;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* --- TABLE --- */
.table th {
  font-weight: 800;
  font-size: 0.9rem;
  color: #1f2937;
  border-bottom-width: 1px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.table td {
  font-size: 0.95rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  color: #4b5563;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.table .badge {
  font-weight: 500;
  padding: 0.5em 0.8em;
}

/* --- MAP --- */
#map {
  height: 400px;
  border-radius: 12px;
  width: 100%;
  border: 1px solid #e2e8f0;
}

/* --- CALENDAR WIDGET --- */
.calendar-widget {
  background: white;
  padding: 0;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding: 0 15px;
}
.calendar-header h5 {
  font-family: inherit;
  color: #1a1a1a;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}
.calendar-header button {
  background: none;
  border: none;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  color: #1a1a1a;
  padding: 5px;
  text-decoration: none;
}
.calendar-header button:hover {
  color: #f39c12;
}

/* --- AVAILABILITY CARD --- */
.availability-card {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
}
.availability-card .fw-bold {
  font-weight: 700 !important;
  font-size: 1rem;
}
.availability-card .btn-warning {
  background-color: #f39c12;
  border: none;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.availability-card .btn-warning:hover {
  background-color: rgb(199.8795180723, 126.5060240964, 10.1204819277);
}

/* --- BUTTONS --- */
.btn-primary.w-100 {
  background-color: #0f392b;
  border-color: #0f392b;
  padding: 12px;
  font-weight: 700;
  border-radius: 12px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.btn-primary.w-100:hover {
  background-color: rgb(20.3125, 77.1875, 58.2291666667);
  border-color: rgb(20.3125, 77.1875, 58.2291666667);
}

/* --- CALENDAR GRID --- */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  margin-top: 10px;
  text-align: center;
}
.calendar-grid .day-name {
  font-weight: bold;
  font-size: 0.85rem;
  padding: 5px 0;
}
.calendar-grid .day-btn {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border: none;
  border-radius: 50%;
  background-color: #f8f9fa;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 1rem;
  color: #1a1a1a;
  margin: 0 auto;
  transition: all 0.2s;
}
.calendar-grid .day-btn.selected {
  background-color: #0d6efd;
  color: white;
  font-weight: 700;
}
.calendar-grid .day-btn.has-reservation::after {
  content: "";
  position: absolute;
  bottom: 6px;
  width: 6px;
  height: 6px;
  background-color: #28a745;
  border-radius: 50%;
  display: block;
}
.calendar-grid .day-btn.selected.has-reservation::after {
  background-color: white;
}

.day-btn {
  position: relative;
  padding-bottom: 12px;
}

.reservation-dot {
  width: 6px;
  height: 6px;
  background-color: #28a745;
  border-radius: 50%;
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
}

.day-btn.past-day {
  background-color: #e9ecef;
  color: #adb5bd;
  cursor: not-allowed;
}

/* --- AVAILABILITY CARD --- */
.availability-card {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
}
.availability-card .fw-bold {
  font-weight: 700 !important;
  font-size: 1rem;
}
.availability-card .btn-warning {
  background-color: #f39c12;
  border: none;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.availability-card .btn-warning:hover {
  background-color: rgb(199.8795180723, 126.5060240964, 10.1204819277);
}

.btn-primary.w-100 {
  background-color: #0f392b;
  border-color: #0f392b;
  padding: 12px;
  font-weight: 700;
  border-radius: 12px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.btn-primary.w-100:hover {
  border-color: rgb(20.3125, 77.1875, 58.2291666667);
}

/* --- PLANNING PAGE --- */
.planning-page {
  background-color: #f8f9fa;
  display: flex;
  flex-direction: column;
}

.planning-container {
  display: flex;
  height: 100%;
}

/* --- LEFT PANEL --- */
.planning-left-panel {
  width: 280px;
  background-color: white;
  padding: 1.5rem;
  border-right: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.mini-calendar-widget .borderless-table td,
.mini-calendar-widget .borderless-table th {
  border: none;
  padding: 0.4rem;
  cursor: pointer;
}

.mini-calendar-widget .borderless-table td:hover {
  background-color: #f0fdf4;
  border-radius: 50%;
}

.mini-calendar-widget .bg-primary {
  background-color: #103A21 !important;
}

/* --- TEAM WIDGET --- */
.team-member-item .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

/* --- MAIN VIEW --- */
.planning-main-view {
  flex-grow: 1;
  padding: 1.5rem;
  overflow-x: auto;
  background-color: white;
}

/* --- CALENDAR TOOLBAR --- */
.calendar-toolbar .badge {
  padding: 0.5em 1em;
  border-radius: 20px;
}
.calendar-toolbar .nav-arrows button {
  border-radius: 50%;
  width: 32px;
  height: 32px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- WEEKLY GRID --- */
.weekly-grid-wrapper {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
}

.grid-header-row {
  border-bottom: 1px solid #e2e8f0;
  background-color: #fff;
}

.time-col-spacer {
  width: 80px;
  flex-shrink: 0;
  border-right: 1px solid #f0f0f0;
}

.day-col {
  flex: 1;
  text-align: center;
  padding: 1rem 0;
  border-right: 1px solid #f0f0f0;
}
.day-col:last-child {
  border-right: none;
}
.day-col.active .text-primary {
  color: #103A21 !important;
}
.day-col.active .day-num {
  background-color: #103A21 !important;
}
.day-col .day-num {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  margin: 0.2rem auto 0;
  font-weight: 700;
}

.grid-body {
  height: 600px;
  overflow-y: auto;
  position: relative;
  background-image: linear-gradient(#f0f0f0 1px, transparent 1px);
  background-size: 100% 60px;
}

.time-lines {
  width: 100%;
}

.time-row {
  height: 60px;
  position: relative;
}
.time-row span {
  position: absolute;
  top: -10px;
  left: 15px;
  color: #999;
  font-size: 0.85rem;
  width: 60px;
}

/* --- EVENTS --- */
.events-overlay {
  position: absolute;
  top: 0;
  left: 80px;
  right: 0;
  bottom: 0;
}

.event-card {
  position: absolute;
  border-radius: 8px;
  padding: 8px;
  font-size: 0.85rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border-left: 4px solid rgba(0, 0, 0, 0.1);
  background-color: #fff;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s;
}
.event-card:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.event-title {
  font-weight: 700;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.event-time {
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.75rem;
}

/* --- PASTEL COLORS --- */
.pastel-purple {
  background-color: #f3e5f5;
  border-left-color: #9c27b0;
  color: #4a148c;
}

.pastel-green {
  background-color: #e8f5e9;
  border-left-color: #4caf50;
  color: #1b5e20;
}

.pastel-yellow {
  background-color: #fffde7;
  border-left-color: #ffeb3b;
  color: #f57f17;
}

.pastel-blue {
  background-color: #e3f2fd;
  border-left-color: #2196f3;
  color: #0d47a1;
}

.pastel-red {
  background-color: #ffebee;
  border-left-color: #f44336;
  color: #b71c1c;
}

/* --- CURRENT TIME LINE --- */
.current-time-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  pointer-events: none;
  z-index: 20;
  display: flex;
  align-items: center;
}
.current-time-line .time-dot {
  width: 10px;
  height: 10px;
  background-color: #2196f3;
  border-radius: 50%;
  margin-left: -5px;
}
.current-time-line .time-line {
  flex-grow: 1;
  border-top: 2px dotted #2196f3;
}

/* --- MINI CALENDAR --- */
.mini-calendar-widget .borderless-table td.has-event {
  position: relative;
  font-weight: 700;
}
.mini-calendar-widget .borderless-table td.has-event::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background-color: #103A21;
  border-radius: 50%;
}

.mini-calendar-widget .borderless-table td.bg-primary.position-relative::after {
  display: none;
}

/* --- DETAILS PANEL --- */
.details-widget {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.detail-row {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.detail-label {
  display: block;
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.detail-value {
  color: #333;
  font-weight: 500;
}

/* --- RESERVATION PAGE --- */
.reservation-page {
  background-color: #f8f9fa;
  display: flex;
  flex-direction: column;
}

.reservation-container {
  display: flex;
  flex-direction: row;
  min-height: calc(100vh - 80px);
}

/* --- FILTERS --- */
.reservation-filters {
  width: 100%;
  background-color: white;
  border-right: none;
  border-bottom: 1px solid #e2e8f0;
  flex-shrink: 0;
  padding: 1rem 1.5rem;
  overflow-x: auto;
}
.reservation-filters .filter-group {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1.5rem;
  align-items: center;
}
.reservation-filters .form-check {
  margin-bottom: 0;
  white-space: nowrap;
}
.reservation-filters .form-check-input {
  width: 1.2em;
  height: 1.2em;
  margin-top: 0.1em;
  margin-right: 0.5em;
  border-color: #cbd5e1;
}
.reservation-filters .form-check-input:checked {
  background-color: #103A21;
  border-color: #103A21;
}
.reservation-filters .form-check-label {
  font-size: 0.95rem;
  color: #4b5563;
  cursor: pointer;
}
.reservation-filters::-webkit-scrollbar {
  height: 6px;
}
.reservation-filters::-webkit-scrollbar-thumb {
  background-color: #e2e8f0;
  border-radius: 4px;
}

/* --- RESERVATION LIST --- */
.reservation-list {
  background-color: #f8fafc;
  padding: 1.5rem;
}

/* --- RESERVATION CARD --- */
.reservation-card {
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid transparent;
  width: fit-content;
  min-width: 300px;
  padding-right: 2rem !important;
}
.reservation-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}
.reservation-card.past-reservation {
  background-color: #f1f5f9 !important;
  border: 1px solid #e2e8f0;
  opacity: 0.8;
}
.reservation-card.past-reservation .text-dark {
  color: #64748b !important;
}
.reservation-card .btn-outline-primary {
  border-color: #2563eb;
  color: #2563eb;
  margin-top: 0.5rem;
}
.reservation-card .btn-outline-primary:hover {
  background-color: #2563eb;
  color: white;
}

/* --- BADGE TWEAKS --- */
.badge {
  font-weight: 500;
  padding: 0.5em 0.8em;
}

/* --- CUSTOM COLORS --- */
.bg-light.text-primary {
  background-color: #eff6ff !important;
  color: #2563eb !important;
}

.bg-light.text-success {
  background-color: #f0fdf4 !important;
  color: #16a34a !important;
}

.bg-light.text-warning {
  background-color: #fefce8 !important;
  color: #ca8a04 !important;
}

.bg-light.text-info {
  background-color: #eff6ff !important;
  color: #0891b2 !important;
}

@media (max-width: 991px) {
  .reservation-filters {
    padding: 0.75rem 1rem;
  }
  .reservation-list {
    padding: 1rem;
  }
  .reservation-card > div:first-child {
    flex-wrap: wrap;
  }
  .reservation-card .event-title {
    white-space: normal;
  }
}
@media (max-width: 576px) {
  /* --- MOBILE CARDS --- */
  .reservation-card {
    padding: 0.75rem !important;
  }
  .reservation-card > div:first-child {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 0.5rem !important;
  }
  .reservation-card .d-flex.align-items-center.gap-3 {
    width: 100%;
    justify-content: space-between;
  }
  .reservation-card .fw-bold.text-dark {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    width: 100%;
  }
  .reservation-card button {
    width: 100%;
    margin-left: 0 !important;
    margin-top: 0.5rem;
  }
  .reservation-card .tags {
    margin-bottom: 0.5rem !important;
  }
  .reservation-card p.text-muted {
    font-size: 0.8rem !important;
  }
  .dashboard-header {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start !important;
  }
}
.reservation-page {
  background-color: #f8f9fa;
  display: flex;
  flex-direction: column;
}

.reservation-container {
  display: flex;
  flex-direction: row;
  min-height: calc(100vh - 80px);
}

/* --- FILTERS TOP BAR --- */
.reservation-filters {
  width: 100%;
  background-color: white;
  border-right: none;
  border-bottom: 1px solid #e2e8f0;
  flex-shrink: 0;
  padding: 1rem 1.5rem;
  overflow-x: auto;
}
.reservation-filters .filter-group {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1.5rem;
  align-items: center;
}
.reservation-filters .form-check {
  margin-bottom: 0;
  white-space: nowrap;
}
.reservation-filters .form-check-input {
  width: 1.2em;
  height: 1.2em;
  margin-top: 0.1em;
  margin-right: 0.5em;
  border-color: #cbd5e1;
}
.reservation-filters .form-check-input:checked {
  background-color: #103A21;
  border-color: #103A21;
}
.reservation-filters .form-check-label {
  font-size: 0.95rem;
  color: #4b5563;
  cursor: pointer;
}
.reservation-filters::-webkit-scrollbar {
  height: 6px;
}
.reservation-filters::-webkit-scrollbar-thumb {
  background-color: #e2e8f0;
  border-radius: 4px;
}

/* --- RESERVATION LIST --- */
.reservation-list {
  background-color: #f8fafc;
  padding: 1.5rem;
}

/* --- RESERVATION CARD --- */
.reservation-card {
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid transparent;
  width: fit-content;
  min-width: 300px;
  padding-right: 2rem !important;
}
.reservation-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}
.reservation-card.past-reservation {
  background-color: #f1f5f9 !important;
  border: 1px solid #e2e8f0;
  opacity: 0.8;
}
.reservation-card.past-reservation .text-dark {
  color: #64748b !important;
}
.reservation-card {
  /* --- VOIR PLUS BUTTON --- */
}
.reservation-card .btn-outline-primary {
  border-color: #2563eb;
  color: #2563eb;
  margin-top: 0.5rem;
}
.reservation-card .btn-outline-primary:hover {
  background-color: #2563eb;
  color: white;
}

.reservation-page {
  display: flex;
  flex-direction: column;
  background-color: #f8f9fa;
}

.reservation-filters {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background-color: #fff;
  border-bottom: 1px solid #e2e8f0;
}
.reservation-filters .form-check {
  margin-bottom: 0;
  white-space: nowrap;
}
.reservation-filters .form-check .form-check-input {
  width: 1.2em;
  height: 1.2em;
  margin-top: 0.1em;
  margin-right: 0.5em;
  border-color: #cbd5e1;
}
.reservation-filters .form-check .form-check-input:checked {
  background-color: #103A21;
  border-color: #103A21;
}
.reservation-filters .form-check .form-check-label {
  font-size: 0.95rem;
  color: #4b5563;
  cursor: pointer;
}

.reservation-list {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background-color: #f8fafc;
}
.reservation-list .reservation-card {
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .reservation-filters {
    justify-content: flex-start;
  }
}
@media (max-width: 991px) {
  .reservation-filters {
    padding: 0.75rem 1rem;
  }
  .reservation-list {
    padding: 1rem;
  }
  .reservation-card > div:first-child {
    flex-wrap: wrap;
  }
  .reservation-card .event-title {
    white-space: normal;
  }
}
@media (max-width: 576px) {
  /* --- MOBILE CARDS --- */
  .reservation-card {
    padding: 0.75rem !important;
  }
  .reservation-card > div:first-child {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 0.5rem !important;
  }
  .reservation-card .d-flex.align-items-center.gap-3 {
    width: 100%;
    justify-content: space-between;
  }
  .reservation-card .fw-bold.text-dark {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    width: 100%;
  }
  .reservation-card button {
    width: 100%;
    margin-left: 0 !important;
    margin-top: 0.5rem;
  }
  .reservation-card .tags {
    margin-bottom: 0.5rem !important;
  }
  .reservation-card p.text-muted {
    font-size: 0.8rem !important;
  }
  .dashboard-header {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start !important;
  }
}
/* --- PARTIE RESPONSIVE --- */
.burger-menu-btn {
  display: none;
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 1001;
  background-color: #0f392b;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 1.5rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dashboard-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.dashboard-overlay.active {
  display: block;
  opacity: 1;
}

@media (max-width: 768px) {
  .burger-menu-btn {
    display: flex;
  }
  .dashboard-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 260px;
    height: 100vh;
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    padding: 2rem 1.5rem;
    align-items: stretch;
    justify-content: flex-start;
  }
  .dashboard-sidebar.active {
    transform: translateX(0);
  }
  .dashboard-sidebar .sidebar-header {
    margin-bottom: 2rem;
  }
  .dashboard-sidebar .sidebar-header .sidebar-logo {
    display: block !important;
    height: 40px;
    filter: brightness(0) invert(1);
  }
  .dashboard-sidebar .sidebar-nav {
    display: block !important;
  }
  .dashboard-sidebar .sidebar-nav ul li a {
    justify-content: flex-start;
    font-size: 1rem;
  }
  .dashboard-sidebar .sidebar-nav ul li a span.icon {
    font-size: 1.2rem;
    margin-right: 10px;
  }
}
/* --- RESPONSIVE TABLES & GRIDS --- */
@media (max-width: 768px) {
  .dashboard-main {
    padding: 1rem;
    padding-top: 70px;
  }
  .stat-card {
    margin-bottom: 1rem;
  }
  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  /* --- PLANNING PAGE RESPONSIVE --- */
  .planning-container {
    flex-direction: column;
    height: auto;
  }
  .planning-left-panel {
    width: 100% !important;
    min-width: 100% !important;
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem;
  }
  .planning-main-view {
    padding: 1rem;
  }
  .calendar-toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .calendar-toolbar .d-flex {
    flex-wrap: wrap;
  }
  /* --- WEEK VIEW GRID --- */
  .time-col-spacer,
  .bg-light.border-end {
    width: 40px !important;
  }
  .time-slot {
    font-size: 0.7rem;
    padding-top: 5px;
  }
  .day-col div {
    font-size: 0.8rem;
  }
  #week-header-row .day-col small {
    display: block;
    font-size: 0.7rem;
  }
}

/*# sourceMappingURL=app.css-Dv8gh-a.map */
