/* ============================================
   PORTAL OFFICIEL DU SÉNAT DU BÉNIN
   Charte graphique inspirée de gouv.bj
   ============================================ */

:root {
  /* Couleurs institutionnelles Bénin */
  --benin-green: #008751;
  --benin-yellow: #FCD116;
  --benin-red: #E8112D;
  
  /* Palette principale */
  --primary: #1a3a5c;
  --primary-dark: #0d1f33;
  --primary-light: #2c5282;
  --accent: #FCD116;
  --accent-dark: #e6b800;
  --success: #008751;
  --danger: #E8112D;
  --warning: #FCD116;
  --warning-alt: #FF8C00;
  --dark: #0a1628;
  --darker: #060d18;
  --gray: #6c757d;
  --gray-light: #f0f2f5;
  --gray-alt: #e8eaed;
  --white: #ffffff;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #1a3a5c 0%, #2c5282 100%);
  --gradient-accent: linear-gradient(135deg, #FCD116 0%, #FF8C00 100%);
  --gradient-dark: linear-gradient(180deg, #0d1f33 0%, #1a3a5c 100%);
  --gradient-overlay: linear-gradient(to top, rgba(10,22,40,0.95) 0%, rgba(10,22,40,0.3) 100%);
  
  /* Typographie */
  --font-primary: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-heading: 'Segoe UI', system-ui, -apple-system, sans-serif;
  
  /* Espacements */
  --section-padding: 5rem;
  --section-padding-mobile: 2.5rem;
  
  /* Ombres */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.2);
  
  /* Bordures */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: #333;
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

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

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

img {
  max-width: 100%;
  height: auto;
}

/* ============================================
   HEADER - Barre supérieure liens rapides
   ============================================ */
.header-top-bar {
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 6px 0;
  font-size: 0.8rem;
}

.header-top-bar .quick-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}

.header-top-bar .quick-link {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-right: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
  white-space: nowrap;
}

.header-top-bar .quick-link:last-child {
  border-right: none;
}

.header-top-bar .quick-link:hover {
  color: var(--accent-dark);
  background: rgba(252,209,22,0.05);
}

.header-top-bar .quick-link i {
  width: 8px;
  height: 8px;
  background: var(--warning-alt);
  border-radius: 50%;
  margin-right: 8px;
  flex-shrink: 0;
}

/* ============================================
   NAVBAR PRINCIPALE
   ============================================ */
.main-navbar {
  background: var(--primary);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.main-navbar .nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
  padding: 12px 0;
}

.navbar-brand img {
  height: 50px;
  filter: brightness(0) invert(1);
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
  height: 100%;
}

.nav-item {
  position: relative;
  height: 100%;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 1.2rem 1.1rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  transition: var(--transition);
  height: 100%;
  white-space: nowrap;
  cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
  background: rgba(255,255,255,0.05);
}

.nav-link .dropdown-arrow {
  font-size: 0.6rem;
  margin-left: 6px;
  transition: var(--transition);
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 100;
  padding: 0.5rem 0;
  list-style: none;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown li a {
  display: block;
  padding: 0.6rem 1.5rem;
  color: #333;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav-dropdown li a:hover {
  background: var(--gray-light);
  color: var(--primary);
  padding-left: 1.8rem;
}

/* Social icons dans la navbar */
.nav-social {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 1rem;
  padding: 8px 16px;
  background: var(--gradient-accent);
  border-radius: 30px;
}

.nav-social a {
  color: var(--dark);
  font-size: 1.1rem;
  padding: 4px 6px;
  transition: var(--transition);
  opacity: 0.8;
}

.nav-social a:hover {
  opacity: 1;
  transform: scale(1.15);
}

/* Bouton recherche */
.search-toggle {
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 10px;
  transition: var(--transition);
  font-size: 1rem;
}

.search-toggle:hover {
  background: var(--accent);
  color: var(--dark);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* ============================================
   HERO BANNER
   ============================================ */
.hero-banner {
  position: relative;
  height: 85vh;
  min-height: 500px;
  background: var(--dark);
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 4rem 3rem;
  background: linear-gradient(to top, rgba(10,22,40,0.95) 0%, rgba(10,22,40,0.4) 60%, transparent 100%);
}

.hero-date {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.hero-date span {
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
}

.hero-title {
  color: white;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  max-width: 800px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-title a {
  color: white;
}

.hero-title a:hover {
  color: var(--accent);
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-accent);
  color: var(--dark);
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(252,209,22,0.4);
  color: var(--dark);
}

.hero-dots {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 3px solid white;
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
}

.hero-dot.active {
  background: var(--accent);
  border-color: var(--accent);
}

/* ============================================
   SECTIONS COMMUNES
   ============================================ */
.section-padding {
  padding: var(--section-padding) 0;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  position: relative;
  padding-left: 1.5rem;
}

.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 70%;
  background: var(--gradient-accent);
  border-radius: 3px;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--success);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.section-link i {
  background: var(--gradient-primary);
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}

.section-link:hover {
  color: var(--primary);
}

.section-link:hover i {
  transform: scale(1.1);
}

/* ============================================
   CARTES D'ARTICLES (Style gouv.bj)
   ============================================ */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.article-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.article-card-img {
  position: relative;
  width: 100%;
  padding-top: 60%;
  overflow: hidden;
  background: var(--gray-light);
}

.article-card-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.article-card:hover .article-card-img img {
  transform: scale(1.05);
}

.article-card-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--warning-alt);
  color: white;
  padding: 4px 14px;
  border-radius: 5px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.article-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  color: var(--gray);
  margin-bottom: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--gray-alt);
}

.article-card-meta .dot {
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
}

.article-card-meta .category {
  color: var(--success);
  text-transform: uppercase;
  font-weight: 600;
}

.article-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.5;
  margin-bottom: 1rem;
  flex: 1;
}

.article-card-title a {
  color: inherit;
}

.article-card-title a:hover {
  color: var(--primary-light);
}

.article-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-primary);
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
  transition: var(--transition);
}

.article-card-btn:hover {
  background: var(--gradient-accent);
  color: var(--dark);
  box-shadow: 0 4px 15px rgba(252,209,22,0.3);
}

/* ============================================
   BANNIÈRE COMPTE RENDU CONSEIL MINISTRES
   ============================================ */
.cm-banner {
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}

.cm-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: var(--gradient-accent);
  z-index: 0;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.cm-banner-content {
  position: relative;
  z-index: 1;
  flex: 1;
}

.cm-banner-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 4px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.1);
}

.cm-banner-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.cm-banner h3 {
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.cm-banner .btn-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cm-banner .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.cm-banner .btn-outline:hover {
  color: white;
}

/* ============================================
   SECTION VIDÉOS
   ============================================ */
.videos-section {
  background: var(--gradient-accent);
  padding: var(--section-padding) 0;
  position: relative;
}

.videos-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>') repeat;
  opacity: 0.5;
}

.videos-section .section-title {
  color: white;
}

.videos-section .section-title::before {
  background: white;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.video-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.video-card-thumb {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.video-card-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.video-card:hover .video-card-thumb img {
  transform: scale(1.08);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3.5rem;
  color: white;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: var(--transition);
  z-index: 2;
}

.video-card:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.2);
}

.video-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-primary);
  color: white;
  padding: 4px 12px;
  border-radius: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
}

.video-card-title {
  color: white;
  font-weight: 600;
  margin-top: 0.8rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #172B4D;
  color: white;
}

.footer-newsletter {
  padding: 4rem 0;
  position: relative;
}

.footer-newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 135, 81, 0.92);
}

.footer-newsletter-content {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-newsletter-text {
  flex: 1;
  min-width: 300px;
}

.footer-newsletter-text h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.footer-newsletter-text p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.newsletter-form .form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 12px 18px;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  background: rgba(255,255,255,0.15);
  color: white;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.6);
}

.newsletter-form input:focus {
  outline: none;
  background: rgba(255,255,255,0.25);
}

.newsletter-form button {
  background: white;
  color: var(--success);
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.newsletter-form button:hover {
  background: var(--accent);
  color: var(--dark);
  transform: translateY(-2px);
}

.footer-social-box {
  background: var(--success);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  min-width: 250px;
}

.footer-social-box img {
  height: 60px;
  filter: brightness(0) invert(1);
  margin-bottom: 1.5rem;
}

.footer-social-box p {
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.footer-social-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.footer-social-icons a {
  font-size: 1.5rem;
  color: white;
  transition: var(--transition);
  opacity: 0.8;
}

.footer-social-icons a:hover {
  opacity: 1;
  transform: translateY(-3px);
  color: var(--accent);
}

.footer-main {
  background: #172B4D;
  padding: 3rem 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}

.footer-links h4 {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.9);
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links ul li a::before {
  content: '';
  width: 5px;
  height: 5px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  flex-shrink: 0;
}

.footer-links ul li a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

.footer-bottom a {
  color: var(--accent);
  font-weight: 600;
}

.footer-flag {
  display: flex;
  gap: 0;
  padding: 1.5rem 0;
}

.footer-flag i {
  flex: 1;
  height: 4px;
}

.footer-flag i:nth-child(1) { background: var(--benin-green); }
.footer-flag i:nth-child(2) { background: var(--benin-yellow); }
.footer-flag i:nth-child(3) { background: var(--benin-red); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .articles-grid,
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  :root {
    --section-padding: 3rem;
  }
  
  .hero-banner {
    height: 60vh;
    min-height: 400px;
  }
  
  .hero-title {
    font-size: 1.5rem;
  }
  
  .hero-overlay {
    padding: 2rem 1.5rem;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--primary);
    flex-direction: column;
    padding: 5rem 1.5rem 2rem;
    transition: var(--transition);
    overflow-y: auto;
    z-index: 999;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-item {
    width: 100%;
  }
  
  .nav-link {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255,255,255,0.05);
    border-radius: 0;
    padding: 0;
    display: none;
  }
  
  .nav-item:hover .nav-dropdown,
  .nav-dropdown.show {
    display: block;
  }
  
  .nav-dropdown li a {
    color: rgba(255,255,255,0.8);
    padding-left: 2rem;
  }
  
  .nav-social {
    margin: 1rem 0;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .articles-grid,
  .videos-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-banner {
    height: 50vh;
    min-height: 350px;
  }
  
  .hero-title {
    font-size: 1.2rem;
  }
  
  .hero-btn {
    padding: 10px 20px;
    font-size: 0.75rem;
  }
  
  .cm-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  
  .cm-banner h3 {
    font-size: 1.2rem;
  }
  
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .header-top-bar .quick-links {
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .hero-banner {
    height: 40vh;
    min-height: 280px;
  }
  
  .hero-overlay {
    padding: 1.5rem 1rem;
  }
  
  .hero-title {
    font-size: 1rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Overlay menu mobile */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}

.menu-overlay.active {
  display: block;
}

/* Container */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

