/*
Theme Name: MSVolkswind
Theme URI: https://example.com/msvolkswind
Author: Your Name
Author URI: https://example.com
Description: A custom theme skeleton for MSVolkswind
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: msvolkswind
Tags: custom, skeleton
*/

/* Theme styles go here */

body {
  margin: 0;
  font-family: "Roboto Condensed", Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.msv-banner-content h1,
.msv-menu a {
  font-family: "Roboto Condensed", Arial, sans-serif;
}

.msv-header {
  position: fixed;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 90px);
  max-width: 1200px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  padding: 0 30px;
  height: 110px;
  display: flex;
  align-items: center;
}
.msv-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 110px;
  gap: 20px;
}
.msv-logo img {
  height: 80px;
  width: auto;
  display: block;
}
.msv-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.msv-menu {
  display: flex;
  gap: 20px;
  list-style: none;
  font-weight: bold;
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 1.05rem;
  margin: 0;
  padding: 0;
  align-items: center;
}
.msv-menu li {
  margin: 0;
}
.msv-menu a {
  color: #000;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 600;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.msv-menu a:hover,
.msv-menu .current-menu-item > a {
  color: #008080;
}

/* Responsive styles */
@media (max-width: 1000px) {
  .msv-header {
    width: calc(100% - 70px);
    padding: 0 20px;
    height: 90px;
  }
  .msv-header-inner {
    height: 90px;
  }
  .msv-logo img {
    height: 60px;
  }
  .msv-menu {
    gap: 16px;
    font-size: 0.95rem;
  }
}

@media (max-width: 860px) {
  .msv-header {
    height: auto;
  }
  .msv-header-inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    height: auto;
    padding: 12px 0;
  }
  .msv-logo {
    width: 100%;
    display: flex;
    justify-content: flex-start;
  }
  .msv-logo img {
    height: 48px;
  }
  .msv-nav {
    width: 100%;
    justify-content: center;
  }
  .msv-burger {
    display: flex;
  }
  .msv-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    transition: opacity 0.3s, visibility 0.3s;
    opacity: 0;
    visibility: hidden;
  }
  .msv-nav.active {
    display: flex;
    opacity: 1;
    visibility: visible;
  }
  .msv-menu {
    flex-direction: column;
    gap: 32px;
    width: 100%;
    align-items: center;
    font-size: 1.2rem;
  }
}

/* Burger menu styles */
.msv-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 1100;
}
.msv-burger span {
  display: block;
  width: 32px;
  height: 2px;
  margin: 5px 0;
  background: #008080;
  border-radius: 2px;
  transition: all 0.3s;
}
.msv-burger span:nth-child(3) {
  width: 24px;
}

@media (max-width: 860px) {
  .msv-burger {
    display: flex;
  }
  .msv-nav {
    display: none;
    width: 100%;
  }
  .msv-nav.active {
    display: flex;
  }
}

.msv-close {
  display: none;
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 2.5rem;
  color: #008080;
  cursor: pointer;
  z-index: 2100;
  line-height: 1;
}
@media (max-width: 860px) {
  .msv-nav.active .msv-close {
    display: block;
  }
}

.msv-main {
  padding-top: 100px;
  font-family: "Roboto Condensed", Arial, sans-serif;
}
.msv-main__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.msv-main__container {
  max-width: 1200px;
  font-weight: 400;
  margin: 0 auto;
  padding: 40px;
}

/* --- Mentions légales --- */
.msv-legal-box {
  background: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  padding: 48px 32px 40px 32px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.msv-legal-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: #008080;
  margin-bottom: 32px;
  text-align: center;
}
.msv-legal-section {
  margin-bottom: 32px;
}
.msv-legal-subtitle {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
  margin-top: 0;
}
.msv-legal-info {
  font-size: 1.05rem;
  color: #222;
  line-height: 1.7;
  padding-left: 12px;
}
.msv-legal-separator {
  border: none;
  border-top: 2px dashed #e0e0e0;
  margin: 32px 0;
}
@media (max-width: 700px) {
  .msv-legal-box {
    padding: 20px 8px 24px 8px;
  }
  .msv-legal-title {
    font-size: 1.5rem;
  }
}