/* Section 1: Bannière - XD Refactor */
.msv-banner {
  position: relative;
  min-height: 700px;
  background-size: cover;
  background-position: center;
  background-image: url('../../img/Volkswind-015.png'); /* Default fallback image */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 0;
  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent linear-gradient(192deg, #00000000 0%, #0F1F3352 100%) 0% 0% no-repeat padding-box;
    backdrop-filter: brightness(0.95);
    z-index: 1;
  }
  > * {
    position: relative;
    z-index: 2;
  }
}

.msv-banner-content {
  padding: 120px 80px 0 80px;
  color: #fff;
  max-width: 1200px;
  width: calc(100% - 160px);
}
.msv-banner-content h1 {
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 1.1;
  color: #fff;
  max-width: 900px;
  font-family: 'Roboto Condensed', Arial, sans-serif;
}
.msv-banner-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  max-width: 450px;
  color: #fff;
  margin-bottom: 40px;
}
.msv-banner-cta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}
.msv-btn.msv-btn-primary {
  background: #fff;
  color: #000;
  border-radius: 6px;
  padding: 16px 32px;
  font-size: 1.15rem;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  display: inline-block;
}
.msv-btn.msv-btn-primary:hover {
  background: #f0f0f0;
  color: #008080;
  transform: translateY(-2px);
}
.msv-banner-news {
  background: #005258;
  color: #fff;
  padding: 36px 40px;
  border-radius: 6px;
  min-width: 420px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.msv-news-label {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 10px;
  color: #b2d8d8;
  font-weight: 400;
}
.msv-news-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.msv-news-title {
  font-size: 1.2rem;
  color: #fff;
}
.msv-btn.msv-btn-secondary {
  background: #fff;
  color: #000;
  border-radius: 4px;
  padding: 8px 32px;
  font-size: 1.1rem;
  border: none;
  margin-top: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  display: inline-block;
}
.msv-btn.msv-btn-secondary:hover {
  background: #f0f0f0;
  color: #008080;
  transform: translateY(-2px);
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
  .msv-banner {
    min-height: 600px;
  }
  .msv-banner-content {
    padding: 80px 40px 0 40px;
    width: calc(100% - 80px);
  }
  .msv-banner-content h1 {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 768px) {
  .msv-banner {
    min-height: 600px;
  }
  .msv-banner-content {
    padding: 100px 24px 0 24px;
    width: calc(100% - 48px);
  }
  .msv-banner-content h1 {
    font-size: 2.4rem;
    max-width: 100%;
  }
  .msv-banner-subtitle {
    font-size: 1.1rem;
    max-width: 100%;
  }
  .msv-banner-news {
    min-width: unset;
    flex: 1;
    padding: 20px;
    border-radius: 3px;
  }
  .msv-banner-cta {
    flex-direction: column;
    width: 100%;
  }
  .msv-btn {
    flex: 1;
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .msv-banner {
    min-height: 500px;
  }
  .msv-banner-content h1 {
    font-size: 2rem;
  }
  .msv-banner-subtitle {
    font-size: 1rem;
  }
  .msv-news-content {
    flex-direction: column;
    align-items: stretch;
  }
  .msv-banner-news {
    padding: 16px;
    background-color: #005258ee;
    margin-bottom: -120px;
  }
}
