/* static/css/landing.css */
:root {
  --primary: #156F0D;
  --secondary: #197B0E;
  --tertiary: #1E8E12;
  --light: #ffffff;
  --bg: #f9fbf8;
  --dark: #000000;
  --text: #333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.header {
  text-align: center;
  margin-bottom: 3rem;
}

.logo {
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.hero {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.candle {
  font-size: 3rem;
  margin-bottom: 1.8rem;
  animation: flicker 1.5s infinite alternate;
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1.4rem;
  font-weight: 400;
}

.subtitle {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.coming-soon {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--secondary);
  margin-bottom: 2.5rem;
}

.candle-container {
  position: relative;
  width: 60px;
  height: 100px;
  margin: 2rem auto;
}

.candle-body {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 70px;
  background: #f0e6d2;
  border-radius: 4px 4px 2px 2px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.flame {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-40%);
  width: 16px;
  height: 30px;
  background: #ffcc00;
  border-radius: 50% 50% 20% 20%;
  box-shadow: 
    0 20px 10px #ff9900,
    10px 0 20px #ff6600;
  animation: flicker 1.8s infinite alternate;
  z-index: 2;
}

@keyframes flicker {
  0%, 100% {
    opacity: 1;
    transform: translateX(-50%) scale(.8);
  }
  50% {
    opacity: 0.85;
    transform: translateX(-52%) scale(1.02);
  }
}

/* Optionnel : formulaire email
.email-form {
  display: flex;
  gap: 0.6rem;
  max-width: 400px;
  margin: 0 auto 2.5rem;
}
.email-form input {
  flex: 1;
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}
.email-form button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  cursor: pointer;
}
.email-form button:hover {
  background: var(--tertiary);
}
*/

.footer-note {
  margin-top: auto;
  padding-top: 2rem;
  color: #777;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 600px) {
  .logo { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .subtitle { font-size: 1rem; }
}

/* Ajoute ceci en bas de landing.css */

/* Mobile-first adjustments */
@media (max-width: 480px) {
  .container {
    padding: 1.5rem 1rem;
  }
  .logo {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .subtitle {
    font-size: 1rem;
    padding: 0 10px;
  }
  .candle-container {
    transform: scale(0.9);
  }
  .coming-soon {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  .footer-note {
    font-size: 0.9rem;
    padding-top: 1.5rem;
  }
}