:root{
  --teal:#2f7b78;
  --teal-dark:#238a7a;
  --text:#238a7a;
  --yellow:#d7c53f;
  --bg:#ffffff;
  --danger:#e54b3b;
}

*{box-sizing:border-box}

body{
  margin:0;
  background:var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  color:var(--text);
}

.page{
  width:100%;
}

/* Navbar */
.top-nav{
  width:100%;
  padding:18px 0 6px;
}

.nav-inner{
  max-width:1100px;
  margin:0 auto;
  padding:0 16px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
}

.nav-logo{
  height:58px;
  width:auto;
  display:block;
}

.nav-menu{
  display:flex;
  align-items:stretch;
  margin-top:2px;
}

.nav-item{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:34px;
  padding:0 26px;
  background:var(--teal);
  color:#fff;
  text-decoration:none;
  font-weight:700;
  font-size:13px;
  letter-spacing:.2px;
  text-transform:none;
  white-space:nowrap;
}

/* Right chevron */
.nav-item:not(:last-child)::after{
  content:"";
  position:absolute;
  top:0;
  right:-22px;
  width:0;
  height:0;
  border-top:17px solid transparent;
  border-bottom:17px solid transparent;
  border-left:22px solid var(--teal);
  z-index:2;
}

/* Cut left side for joined look */
.nav-item:not(:first-child){
  padding-left:34px;
}
.nav-item:not(:first-child)::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:0;
  height:0;
  border-top:17px solid transparent;
  border-bottom:17px solid transparent;
  border-left:22px solid var(--bg);
  z-index:3;
}

.nav-item--active{
  background:var(--teal-dark);
}
.nav-item--active:not(:last-child)::after{
  border-left-color:var(--teal-dark);
}

/* Content / hero */
.hero{
  max-width: min(1180px, 100%);
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(14px, 4vw, 20px) clamp(24px, 5vw, 36px);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 3vw, 26px);
  align-items: flex-start;
  box-sizing: border-box;
}

.hero-left{
  flex: 1 1 min(100%, 420px);
  min-width: 0;
  padding-top: 8px;
}

.hero-photo-wrap{
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(15, 31, 30, 0.08);
}

.hero-photo{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px 12px 0 0;
}

.hero-banner{
  position: relative;
  left: auto;
  bottom: auto;
  background: #238a7a;
  color: white;
  font-weight: 700;
  padding: clamp(14px, 3vw, 20px) clamp(14px, 3vw, 20px);
  font-size: clamp(15px, 2.5vw, 18px);
  line-height: 1.35;
  width: 100%;
  margin: 0;
  border-radius: 0 0 12px 12px;
  text-align: center;
  box-sizing: border-box;
}

.hero-paragraph{
  font-size: clamp(16px, 2.4vw, 17px);
  line-height: 1.6;
  margin: 1.25rem 0 0;
}

/* Espace sous le bloc photo + bandeau (remplace l’ancien margin inline ~70px sur desktop) */
.hero-paragraph--after-banner{
  margin-top: clamp(1rem, 4vw, 3.25rem);
}

.hero-right{
  flex: 1 1 min(100%, 380px);
  min-width: 0;
  padding-top: 4px;
}

.hero-right p{
  margin: 0 0 14px;
  font-size: clamp(16px, 2.4vw, 17px);
  line-height: 1.6;
}

.hero-highlight{
  color: var(--danger);
  font-weight: 700;
}

.hero-bottom{
  display:flex;
  gap:18px;
  align-items:flex-start;
  margin-top:10px;
}

.hero-times{
  background:var(--teal);
  padding:14px 18px 16px;
  width:270px;
  color:#fff;
}

.hero-times__title{
  text-align:center;
  font-weight:800;
  color:#f3d25a;
  font-size:20px;
  margin-top:0;
}

.hero-times__rule{
  width:92px;
  height:2px;
  background:#bda63b;
  margin:6px auto 16px;
  opacity:.75;
}

.hero-times__row{
  text-align:center;
  margin-top:10px;
}

.hero-times__day{
  font-weight:800;
  font-size:14px;
}

.hero-times__hours{
  font-weight:700;
  font-size:14px;
  margin-top:4px;
}

.hero-social{
  display:flex;
  gap:14px;
  padding-top:22px; /* align with card */
}

.social-btn{
  width:46px;
  height:46px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:2px;
  text-decoration:none;
}
.social-btn svg{
  width:26px;
  height:26px;
  fill:#fff;
}

.social--insta{ background:#d81b7a; }
.social--fb{ background:#214f9a; }
.social--tw{ background:#39a6e6; }
.social--yt{ background:#d51b1b; }

/* Tablette : deux colonnes si la place, sinon une */
@media (min-width: 901px) {
  .hero {
    flex-wrap: nowrap;
  }
  .hero-left {
    flex: 0 1 52%;
    max-width: 52%;
  }
  .hero-right {
    flex: 0 1 48%;
    max-width: 48%;
  }
}

/* Mobile : une colonne, ordre lecture naturel */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    align-items: stretch;
    max-width: 100%;
    padding-left: clamp(12px, 4vw, 18px);
    padding-right: clamp(12px, 4vw, 18px);
  }
  .hero-left,
  .hero-right {
    flex: 1 1 auto;
    max-width: 100%;
    width: 100%;
  }
  .hero-paragraph--after-banner {
    margin-top: 1.15rem;
  }
  .hero-photo-wrap {
    border-radius: 14px;
  }
  .hero-photo {
    border-radius: 14px 14px 0 0;
  }
  .hero-banner {
    border-radius: 0 0 14px 14px;
    font-size: clamp(14px, 4vw, 17px);
    padding: 14px 12px;
  }
  .hero-times {
    width: 100%;
  }
  .hero-bottom {
    flex-direction: column;
  }
  .hero-social {
    padding-top: 0;
    justify-content: flex-start;
  }
  .hero-paragraph,
  .hero-text {
    text-align: left;
  }
}

