/* ===============================
   Tom ramassage de feuilles / Tom's Leaf Removal Service
   Modern Dark Theme Stylesheet
=================================*/

/* Root variables for colors, fonts, spacing */
:root {
  --bg: #0f1a15;
  --bg-card: rgba(255, 255, 255, 0.05);
  --accent: #00ff99;
  --accent-2: #66ffd1;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.7);
  --radius: 12px;
  --font-main: 'Inter', sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-main);
  line-height: 1.6;
}

main {
  padding: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.2;
  margin: 0.2rem 0 0.6rem;
}

h1 { font-size: clamp(28px, 4vw, 40px); }
h2 { font-size: clamp(24px, 3vw, 32px); }
h3 { font-size: clamp(20px, 2.5vw, 26px); }

p {
  margin: 0 0 1rem;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 40px;
}

.lang-toggle {
  cursor: pointer;
  background: var(--accent);
  color: #00140a;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius);
  font-weight: 700;
}

.card {
  background: var(--bg-card);
  padding: 1.2rem;
  border-radius: var(--radius);
  margin-bottom: 1.2rem;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

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

.pricing .card {
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  font-weight: 700;
  cursor: pointer;
  border: none;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #00140a;
}

.btn.primary:hover {
  filter: brightness(1.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

input, textarea {
  padding: 0.8rem;
  border-radius: var(--radius);
  border: none;
  font-family: var(--font-main);
}

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

footer {
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.9rem;
  text-align: center;
  color: var(--muted);
}

/* Tiny text styles */
.tiny {
  font-size: 0.8rem;
}

.muted {
  color: var(--muted);
}
