/*
Theme Name: French'Brick Tailwind
Version: 1.0.0
Author: OpenAI
Description: Thème WordPress PHP classique avec Tailwind CSS
*/
:root {
  --primary: #0b2e83;
  --secondary: #e30613;
  --light: #f8fafc;
  --dark: #111827;
  --gray: #64748b;
  --blue: #153f9d;
}

body {
  font-family: "Montserrat", sans-serif;
}

.custom-logo {
  max-height: 70px;
  width: auto;
}

.custom-logo-link {
  display: flex;
  align-items: center;
}

.menu-item {
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;
}

/* LEGO BRICKS */
.bricks {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
}

.brick {
  width: 80px;
  height: 40px;
  background: white;
  border-radius: 8px;
  position: relative;
}

.brick:before,
.brick:after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: white;
  top: -8px;
}

.brick:before {
  left: 18px;
}

.brick:after {
  right: 18px;
}

/* SECTIONS */

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary);
}

.section-title p {
  color: var(--gray);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background: white;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
}

.card h3 {
  color: var(--primary);
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
}
