:root {
  --bleu-principal: #4E6E91;
  --bleu-clair: #A8BBD4;
  --jaune-soleil: #E8C64C;
  --beige-sable: #F3EFD9;
  --texte-fonce: #1F2933;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--beige-sable);
  color: var(--texte-fonce);
}

a { text-decoration: none; color: inherit; }

header {
  background: var(--beige-sable);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 10;
}

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

.logo {
  font-size: 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bleu-principal);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
  font-family: "Gill Sans MT", "Gill Sans", Calibri, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--bleu-principal);
}

nav a {
  padding-bottom: 2px;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--jaune-soleil);
  transition: width .2s ease;
}

nav a:hover::after { width: 100%; }


/* HERO */

.hero {
  min-height: 85vh;
  background:
    linear-gradient(
      rgba(78, 110, 145, 0.72),
      rgba(78, 110, 145, 0.72)
    ),
    url('Logo/surf-hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
}

.hero-inner {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-tagline {
  font-family: "Gill Sans MT";
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: 11px;
  color: var(--bleu-clair);
  margin-bottom: 14px;
}

.hero-title {
  font-size: 46px;
  margin: 0 0 4px;
}

.hero-underline {
  width: 80px;
  height: 3px;
  background: var(--jaune-soleil);
  margin: 10px 0 18px;
}

.hero-subtitle { font-size: 18px; margin-bottom: 22px; }

.hero-text {
  font-size: 14px;
  line-height: 1.6;
  opacity: .95;
  max-width: 480px;
}

.hero-buttons {
  margin-top: 26px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  padding: 9px 20px;
  border-radius: 999px;
  font-family: "Gill Sans MT";
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.btn-primary {
  background: var(--jaune-soleil);
  color: #222;
  border-color: var(--jaune-soleil);
}

.btn-primary:hover { background: #f0d771; }

.hero-logo {
  width: 140%;
  max-width: 900px;
  border-radius: 15px;
  object-fit: cover;
}



main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 16px 40px;
}

section { margin-bottom: 60px; }

.section-title {
  text-transform: uppercase;
  letter-spacing: .20em;
  font-size: 22px;
  margin-bottom: 6px;
}

.section-subtitle {
  font-family: "Gill Sans MT";
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: #6b7280;
  margin-bottom: 20px;
}

.collection-intro {
  max-width: 600px;
  font-size: 14px;
  line-height: 1.6;
}

.products-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 26px;
}

.product-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  text-align: center;
}

.product-images {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 10px;
}

.product-images img {
  width: 48%;
  border-radius: 12px;
}

.product-name {
  font-size: 16px;
  font-weight: bold;
  margin-top: 2px;
}

.product-color {
  font-size: 13px;
  color: #6b7280;
  margin-top: 4px;
}



#infolettre {
  background: var(--bleu-principal);
  color: #fff;
  padding: 26px 18px;
  border-radius: 20px;
}

#infolettre .section-title { color: #fff; }
#infolettre .section-subtitle { color: var(--bleu-clair); }

#infolettre p {
  max-width: 520px;
  font-size: 14px;
  line-height: 1.6;
}

.iframe-wrapper {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

#infolettre iframe {
  max-width: 100%;
  border-radius: 12px;
  border: none;
  background: #000;
}



footer {
  text-align: center;
  padding: 20px 0 30px;
  font-size: 12px;
  color: #6b7280;
}



@media(max-width:850px){
  .hero-inner { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
}
