* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Georgia, 'Times New Roman', serif;
  background: #f4efe6;
  color: #2b2118;
}

.hero {
  min-height: 85vh;
  background:
    linear-gradient(rgba(20, 12, 6, 0.65), rgba(20, 12, 6, 0.75)),
    url("images/1.jpg") center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-content {
  padding: 30px;
}

.hero h1 {
  font-size: 58px;
  letter-spacing: 2px;
  margin-bottom: 15px;
  color: #f2d59b;
}

.hero p {
  font-size: 22px;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background: #b37a38;
  color: white;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: bold;
}

.btn:hover {
  background: #8f5d25;
}

nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #1f1711;
  text-align: center;
  padding: 15px;
}

nav a {
  color: #f2d59b;
  text-decoration: none;
  margin: 0 18px;
  font-weight: bold;
}

nav a:hover {
  color: white;
}

.section {
  max-width: 1150px;
  margin: auto;
  padding: 70px 20px;
}

.section h2 {
  text-align: center;
  font-size: 38px;
  margin-bottom: 35px;
  color: #3b2818;
}

.section p {
  max-width: 800px;
  margin: auto;
  text-align: center;
  font-size: 19px;
  line-height: 1.8;
}

.dark {
  max-width: none;
  background: #2b2118;
  color: white;
}

.dark h2 {
  color: #f2d59b;
}

.marches {
  max-width: 900px;
  margin: auto;
  display: grid;
  gap: 15px;
}

.marches div {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(242,213,155,0.3);
  padding: 18px 22px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.marches strong {
  color: #f2d59b;
  font-size: 18px;
}

.marches span {
  text-align: right;
}

.marches small {
  display: block;
  color: #d5b77d;
  font-size: 13px;
}

.galerie {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.photo {
  height: 230px;
  background: #d8c6ad;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-section {
  max-width: none;
  background: #eadfce;
}

.contact-box {
  max-width: 1050px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 35px;
  background: white;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.infos {
  background: #2b2118;
  color: white;
  padding: 30px;
  border-radius: 14px;
}

.infos h3 {
  color: #f2d59b;
  font-size: 26px;
  margin-bottom: 20px;
}

.infos p {
  text-align: left;
  margin-bottom: 14px;
  font-size: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input,
textarea {
  padding: 15px;
  border: 1px solid #c9b89f;
  border-radius: 10px;
  font-size: 16px;
  font-family: Arial, sans-serif;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

button {
  background: #b37a38;
  color: white;
  border: none;
  padding: 16px;
  font-size: 17px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
}

button:hover {
  background: #8f5d25;
}

footer {
  background: #1f1711;
  color: #f2d59b;
  text-align: center;
  padding: 25px;
}

@media screen and (max-width: 768px) {
  .hero h1 {
    font-size: 38px;
  }

  nav a {
    display: inline-block;
    margin: 8px;
  }

  .contact-box {
    grid-template-columns: 1fr;
  }

  .marches div {
    flex-direction: column;
  }

  .marches span {
    text-align: left;
  }
}

.hero {
    position: relative;
    min-height: 85vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(20,12,6,0.65);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 30px;
}

.logo-container {
    margin-bottom: 25px;
}

.logo-container img {
    max-width: 220px;
    max-height: 140px;
    width: auto;
    height: auto;
}

.hero h1 {
    font-size: 58px;
    color: #f2d59b;
    margin-bottom: 15px;
}

.hero p {
    font-size: 22px;
    margin-bottom: 30px;
}
.hero-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.btn-shop{
    background:#f2d59b;
    color:#2b2118;
}

.btn-shop:hover{
    background:#ffffff;
}
.boutique-online{
    background:#2b2118;
    color:white;
    text-align:center;
    padding:80px 20px;
}

.boutique-online h2{
    color:#f2d59b;
    margin-bottom:20px;
}

.boutique-online p{
    max-width:700px;
    margin:0 auto 30px;
    line-height:1.8;
}
.photo img{
    width:100%;
    height:100%;
    object-fit:cover;
    cursor:pointer;
    transition:0.3s;
}

.photo img:hover{
    transform:scale(1.05);
}

.lightbox{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.9);
    z-index:9999;

    justify-content:center;
    align-items:center;
}

.lightbox img{
    max-width:90%;
    max-height:90%;
    border-radius:10px;
}

.close{
    position:absolute;
    top:20px;
    right:30px;

    color:white;
    font-size:50px;
    cursor:pointer;
}
.produits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}

.produit-card {
    background: white;
    border: 1px solid #d6c2a3;
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 8px 18px rgba(0,0,0,0.10);
}

.produit-card h3 {
    color: #8f5d25;
    font-size: 24px;
    margin-bottom: 12px;
}

.produit-card p {
    font-size: 16px;
    line-height: 1.6;
}

.reassurance {
    background: #1f1711;
    color: white;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1px;
}

.reassurance div {
    padding: 35px 25px;
    text-align: center;
    background: #2b2118;
}

.reassurance strong {
    display: block;
    color: #f2d59b;
    font-size: 20px;
    margin-bottom: 8px;
}

.reassurance span {
    font-size: 15px;
    color: #e6d7bd;
}
.hero-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    margin-top:30px;
    flex-wrap:wrap;
}

.hero-buttons .btn{
    min-width:260px;
    text-align:center;
}

.btn{
    display:inline-block;
    padding:16px 35px;
    border-radius:40px;
    text-decoration:none;
    font-weight:bold;
    font-size:18px;
    transition:0.3s;
}

.btn-contact{
    background:#b37a38;
    color:white;
}

.btn-contact:hover{
    background:#8f5d25;
    transform:translateY(-2px);
}

.btn-shop{
    background:#f2d59b;
    color:#2b2118;
}

.btn-shop:hover{
    background:white;
    transform:translateY(-2px);
}

.btn-produits{
    background:transparent;
    border:2px solid #f2d59b;
    color:#f2d59b;
}

.btn-produits:hover{
    background:#f2d59b;
    color:#2b2118;
    transform:translateY(-2px);
}
a {
    color: white;
    text-decoration: none;
}

a:visited {
    color: white;
}

a:hover {
    color: #f2d59b;
}
