/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Global */
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #222;
  background: #f9f9f9;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
header {
  background: #111;
  color: #fff;
  padding: 1.2rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #00d9ff;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #fff;
}

/* Hero */
.hero {
  background: linear-gradient(120deg, #00c6ff, #0072ff);
  color: white;
  padding: 100px 0;
  text-align: center;
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn-primary {
  background: #fff;
  color: #0072ff;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #e6e6e6;
}

/* Sections */
.section {
  padding: 80px 0;
  background: #fff;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

/* Cards */
.cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background: #f0f0f0;
  padding: 2rem;
  border-radius: 8px;
  width: 300px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Contact */
.contact-form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
}

/* Footer */
footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #111;
    position: absolute;
    right: 0;
    top: 60px;
    width: 200px;
    text-align: right;
    padding: 1rem;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }
}
/* FAQ Section */
.faq-section .faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 1rem;
}

.faq-question {
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  text-align: left;
  padding: 0.5rem 0;
  transition: color 0.3s;
}

.faq-question:hover {
  color: #0072ff;
}

.faq-answer {
  display: none;
  margin-top: 0.5rem;
  color: #444;
}

.faq-answer.show {
  display: block;
}
[data-i18n] {
  transition: opacity 0.3s ease;
}

#language-switcher {
  margin-left: 2rem;
  padding: 0.4rem;
  border-radius: 4px;
  border: none;
  font-size: 0.95rem;
}
:root{
  --bg:#f7fbfb;
  --desk:#0b8f7a;
  --accent:#22d3b3;
  --mint:#a8fff0;
  --deep:#083f3a;
  --card:#e8fffb;
  --shadow: 0 12px 30px rgba(3,40,34,0.12);
  --soft-shadow: 0 8px 20px rgba(3,40,34,0.08);
  --monospace: ui-monospace, SFMono-Regular, Menlo, Monaco, "Roboto Mono", "Courier New", monospace;
}

/* RESET SIMPLE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f5f7fa;
  color: #222;
}

/* NAVBAR */
header {
  background: #111;
  padding: 15px;
}
nav {
  display: flex;
  gap: 20px;
  justify-content: center;
}
nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
nav a.active {
  color: #00c6ff;
}

/* SECTION PROJETS */
.project-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 60px;
}

/* PERSONNAGE */
.dev-character img {
  max-width: 280px;
  height: auto;
}

/* SOON BOX */
.soon-box {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: bold;
  color: #333;
  animation: float 3s ease-in-out infinite;
}

.soon-box em {
  font-style: italic;
  color: #444;
}

/* GEAR ANIMATION */
.gear {
  display: inline-block;
  font-size: 28px;
  animation: spin 2s linear infinite;
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
