/* ===================================
   FONTS
=================================== */

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('./poppins-v24-latin/poppins-v24-latin-300.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('./poppins-v24-latin/poppins-v24-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('./poppins-v24-latin/poppins-v24-latin-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('./poppins-v24-latin/poppins-v24-latin-700.woff2') format('woff2');
}

/* ===================================
   GLOBAL
=================================== */

body{
  margin:0;
  font-family:'Poppins',sans-serif;
  background:#0f172a;
  color:white;
  line-height:1.6;
}

/* ===================================
   HEADER
=================================== */

header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px;
  background:#020617;
  position:sticky;
  top:0;
  z-index:1000;
}

header h1{
  margin:0;
  color:#38bdf8;
  font-size:18px;
}

/* ===================================
   MENU BURGER
=================================== */

.menu-toggle{
  display:none;
  font-size:22px;
  cursor:pointer;
  color:white;
}

/* ===================================
   NAVIGATION
=================================== */

nav{
  display:flex;
  gap:15px;
}

nav a{
  color:white;
  text-decoration:none;
  font-size:14px;
  opacity:.9;
  transition:color .3s ease;
}

nav a:hover{
  color:#38bdf8;
}

/* ===================================
   HERO
=================================== */

.hero{
  text-align:center;
  padding:40px 20px 20px;
}

.hero h1 {
  font-size: 32px;
  color: #38bdf8;
  margin-bottom: 15px;
}

.hero h2{
  font-size:32px;
  color:#38bdf8;
  margin-bottom:15px;
}

.hero p{
  font-size:16px;
  color:#cbd5e1;
  max-width:700px;
  margin:0 auto 20px;
  line-height:1.8;
}

/* ===================================
   SECTION TITLES
=================================== */

.section-title {
  color: #38bdf8;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

/* ===================================
   CENTERED SECTION
=================================== */

.centered-section {
  text-align: center;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 15px 40px;
}

/* ===================================
   CONTACT SECTION
=================================== */

.contact-section{
  max-width:1100px;
  margin:auto;
  padding:20px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}

.contact-card{
  background:#020617;
  padding:25px;
  border-radius:12px;
  box-shadow:0 4px 20px rgba(0,0,0,.35);
  text-align: center;
}

.contact-card h3{
  margin-bottom:30px;
  color:#38bdf8;
  font-size:22px;
}

/* Tag pour catégoriser les produits */
.tag {
  display: inline-block;
  background-color: #0ea5e9;
  color: white;
  font-weight: 700;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 15px;
  user-select: none;
}

/* Style pour le prix */
.price {
  color: #38bdf8;
  font-weight: 700;
  font-size: 20px;
  margin: 10px 0;
}

/* Conteneur pour prix et bouton alignés verticalement */
.price-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}
/* ===================================
   CONTACT INFO
=================================== */

.contact-info{
  margin-bottom:25px;
}

.contact-info strong{
  display:block;
  margin-bottom:8px;
  color:white;
}

.contact-info p,
.contact-info a{
  color:#cbd5e1;
  text-decoration:none;
  line-height:1.7;
}

.contact-info a:hover{
  color:#38bdf8;
}

/* ===================================
   IMAGE MAP
=================================== */

.map-container{
  margin-top:20px;
  border-radius:12px;
  overflow:hidden;
}

.map-container img{
  width:100%;
  height:auto;
  display:block;
  border-radius:12px;
  object-fit:cover;
}

/* ===================================
   FORMULAIRE
=================================== */

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

input,
textarea{
  width:100%;
  padding:14px;
  border:none;
  border-radius:8px;
  background:#0f172a;
  color:white;
  font-family:'Poppins',sans-serif;
  box-sizing:border-box;
  font-size:15px;
}

input::placeholder,
textarea::placeholder{
  color:#94a3b8;
}

input:focus,
textarea:focus{
  outline:2px solid #38bdf8;
}

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

/* ===================================
   BUTTON
=================================== */

.btn{
  background:#38bdf8;
  color:#020617;
  border:none;
  padding:14px;
  border-radius:8px;
  font-weight:700;
  font-size:16px;
  cursor:pointer;
  transition:0.3s;
  min-height:48px;
  text-decoration: none;
}

.btn:hover{
  background:#0ea5e9;
  color:white;
}

.btn:focus{
  outline:3px solid white;
  outline-offset:3px;
}

/* ===================================
   FOOTER
=================================== */

footer{
  text-align:center;
  padding:20px;
  background:#020617;
  margin-top:30px;
  color:#cbd5e1;
  font-size:14px;
}

/* ===================================
   SOCIAL
=================================== */

.social-buttons{
  display:flex;
  justify-content:center;
  gap:15px;
  margin-bottom:10px;
}

.social-buttons a{
  color:#38bdf8;
  transition:.3s;
}

.social-buttons a:hover{
  color:#0ea5e9;
}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:700px){

  .menu-toggle{
    display:block;
  }

  nav{
    position:absolute;
    top:60px;
    right:0;
    background:#020617;
    flex-direction:column;
    width:220px;
    padding:15px;
    display:none;
  }

  nav.active{
    display:flex;
  }

  nav a{
    padding:10px 0;
    font-size:16px;
  }

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

  .hero h2{
    font-size:28px;
  }
}
