/* css/style.css – Meilleurs Casino design system */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background: #faf8f5;
  color: #1e1b2a;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* header */
header {
  background: #1a0e2e;
  color: white;
  padding: 0.8rem 0;
  border-bottom: 3px solid #d4af37;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo i {
  color: #d4af37;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}
nav a {
  font-weight: 500;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: 0.2s;
}
nav a:hover,
nav a.active {
  border-bottom-color: #d4af37;
  color: #f0d57a;
}
.hamburger {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
}

/* hero */
.hero {
  background: linear-gradient(135deg, #1a0e2e 0%, #2d1a4a 100%);
  color: white;
  padding: 5rem 0 4rem;
  text-align: center;
  border-bottom: 4px solid #d4af37;
}
.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}
.hero-content h1 span {
  color: #f0d57a;
}
.hero-content p {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 2rem;
}
.btn {
  display: inline-block;
  background: #d4af37;
  color: #1a0e2e;
  padding: 0.8rem 2rem;
  border-radius: 40px;
  font-weight: 700;
  transition: 0.2s;
  border: none;
  cursor: pointer;
}
.btn:hover {
  background: #b8922e;
  transform: scale(1.02);
}
.btn i {
  margin-left: 0.5rem;
}

/* features */
.features {
  padding: 3.5rem 0;
  background: white;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.card {
  background: #f8f5f0;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.02);
  transition: 0.2s;
  border: 1px solid #e8e0d5;
}
.card i {
  font-size: 2.8rem;
  color: #b8922e;
  margin-bottom: 1rem;
}
.card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.card p {
  color: #3d3550;
}

/* page */
.page-header {
  background: #f0ebe3;
  padding: 2.5rem 0;
  border-bottom: 1px solid #ddd4c8;
}
.page-header h1 {
  font-size: 2.5rem;
  color: #1a0e2e;
}
.page-header p {
  font-size: 1.1rem;
  color: #3d3550;
}

.content {
  padding: 3rem 0;
  flex: 1;
}

/* about */
.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}
.about-grid ul {
  list-style: none;
  margin-top: 1rem;
}
.about-grid li {
  margin: 0.8rem 0;
}
.about-grid li i {
  color: #d4af37;
  margin-right: 0.6rem;
  width: 1.2rem;
}

/* product */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.product-card {
  background: white;
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.03);
  border: 1px solid #e8e0d5;
  text-align: center;
}
.product-card i {
  color: #b8922e;
  margin-bottom: 1rem;
}
.product-card h3 {
  margin: 0.5rem 0;
}
.badge {
  display: inline-block;
  background: #f0ebe3;
  color: #1a0e2e;
  padding: 0.2rem 1rem;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 0.8rem;
}

/* services */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
}
.service-item {
  display: flex;
  gap: 1.5rem;
  background: #f8f5f0;
  padding: 1.5rem;
  border-radius: 20px;
  border-left: 6px solid #d4af37;
}
.service-item i {
  font-size: 2.2rem;
  color: #b8922e;
  min-width: 3rem;
}

/* contact */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd4c8;
  border-radius: 30px;
  font-size: 1rem;
  background: white;
}
.form-group textarea {
  border-radius: 20px;
  resize: vertical;
}
.feedback {
  margin-top: 1rem;
  font-weight: 500;
}
.contact-info {
  background: #f0ebe3;
  padding: 2rem;
  border-radius: 28px;
}
.contact-info p {
  margin: 1rem 0;
}
.contact-info i {
  width: 1.8rem;
  color: #b8922e;
}
.social a {
  display: inline-block;
  background: #1a0e2e;
  color: white;
  padding: 0.6rem 0.8rem;
  border-radius: 30px;
  margin-right: 0.5rem;
  font-size: 1.2rem;
  transition: 0.2s;
}
.social a:hover {
  background: #d4af37;
  color: #1a0e2e;
}

/* footer */
footer {
  background: #1a0e2e;
  color: #c5b8d0;
  padding: 1.8rem 0;
  margin-top: auto;
  border-top: 2px solid #2d1a4a;
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer-links a {
  margin-left: 1.5rem;
  color: #c5b8d0;
}
.footer-links a:hover {
  color: #f0d57a;
}

/* responsive */
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    background: #1a0e2e;
    padding: 1rem;
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    border-radius: 0 0 12px 12px;
  }
  nav ul.open {
    display: flex;
  }
  .hamburger {
    display: block;
  }
  .grid-3,
  .product-grid {
    grid-template-columns: 1fr;
  }
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
}