/* ============================================================
   VARIABLES GLOBALES
   ============================================================ */
:root {
  --primary: #1a73e8;
  --primary-light: #4d97ff;
  --primary-dark: #1558b0;

  --text: #111;
  --text-light: #444;
  --background: #ffffff;
  --background-alt: #f5f7fa;

  --border: #e5e7eb;
  --radius: 12px;

  --transition: 0.25s ease;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
}

/* DARK MODE */
body.dark {
  --text: #f5f5f5;
  --text-light: #d6d6d6;
  --background: #121212;
  --background-alt: #1a1a1a;
  --border: #333;
  --shadow-sm: 0 2px 8px rgba(255,255,255,0.05);
  --shadow-md: 0 8px 24px rgba(255,255,255,0.08);
}

/* ============================================================
   RESET & BASE
   ============================================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--background);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

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

a:hover {
  color: var(--primary-dark);
}

/* ============================================================
   HEADER
   ============================================================ */

.header {
  position: sticky;
  top: 0;
  background: var(--background);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition);
}

.header-content {
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 42px;
}

.nav {
  display: flex;
  gap: 25px;
}

.nav a {
  font-weight: 500;
  color: var(--text-light);
  padding: 4px 6px;
  border-radius: 6px;
  transition: var(--transition);
}

.nav a:hover,
.nav a.active {
  color: var(--primary);
  background: var(--background-alt);
}

.dark-toggle {
  border: 1px solid var(--border);
  background: var(--background-alt);
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.dark-toggle:hover {
  background: var(--border);
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  padding: 80px 0;
  background: var(--background);
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 25px;
}

.hero-image {
  flex: 1;
  min-width: 300px;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn-primary {
  background: var(--primary);
  color: white !important;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* ============================================================
   FEATURES
   ============================================================ */

.features {
  padding: 80px 0;
  text-align: center;
}

.feature-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.feature-card {
  padding: 25px;
  background: var(--background-alt);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-card img {
  height: 120px;
  margin: auto;
  margin-bottom: 20px;
}

/* ============================================================
   CTA SECTION
   ============================================================ */

.cta {
  background: var(--primary);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cta h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

/* ============================================================
   PAGE HEADERS
   ============================================================ */

.page-header {
  padding: 60px 0 40px 0;
  text-align: center;
  background: var(--background-alt);
}

.page-header h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-section {
  padding: 60px 0;
}

.about-list {
  margin-top: 20px;
  padding-left: 20px;
}

.about-list li {
  margin-bottom: 8px;
  color: var(--text-light);
}

/* ============================================================
   PROJECTS PAGE
   ============================================================ */

.projects-section {
  padding: 60px 0;
}

.project-card {
  background: var(--background-alt);
  padding: 25px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   LEGAL TEXTS (CGU / PRIVACY / LEGAL)
   ============================================================ */

.legal-text {
  padding: 50px 0;
  line-height: 1.8;
}

.legal-text h2 {
  margin-top: 30px;
  margin-bottom: 10px;
}

.legal-text p,
.legal-text li {
  color: var(--text-light);
}

.legal-text ul {
  padding-left: 20px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--background-alt);
  padding: 60px 0 20px 0;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 15px;
}

.footer a {
  display: block;
  margin-bottom: 6px;
  color: var(--text-light);
}

.footer a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  color: var(--text-light);
  font-size: 14px;
}
.fade-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

section, .feature-card, .project-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all .7s ease-out;
}

.store-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 10px;
}

.store-buttons img {
  height: 55px;
  transition: .2s ease;
}

.store-buttons img:hover {
  transform: scale(1.05);
}

.footer-grid div.follow-block {
  text-align: center;
}

.follow-block a {
  display: inline-block;
  margin: 4px 8px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switch {
  border: 1px solid var(--border);
  background: var(--background-alt);
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: var(--transition);
}

.lang-switch:hover {
  background: var(--border);
}



/* ============================================================
   RESPONSIVE
   ============================================================ */

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

  .nav {
    display: none;   /* (Tu pourras ajouter un menu mobile plus tard si tu veux) */
  }
}
/* ============================================================
   CREATOR SECTION
   ============================================================ */

.creator {
  background: var(--background);
  padding: 80px 0;
}

.creator-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
  gap: 40px;
  align-items: center;
}

.creator-grid h2 {
  font-size: 30px;
  margin-bottom: 16px;
}

.creator-grid p {
  color: var(--text-light);
  margin-bottom: 12px;
}

.creator-grid img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

/* Responsive for creator block */
@media (max-width: 900px) {
  .creator-grid {
    grid-template-columns: 1fr;
  }
}
