/* ==========================================================================
   DadooApps - Design System & Stylesheet
   Color Palette derived from DadooApps logo: White base with Orange-Rose-Purple Gradient
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Color Palette derived from DadooApps Logo */
  --color-orange: #FF6B35;
  --color-rose: #E11D48;
  --color-purple: #7C3AED;
  --color-purple-dark: #5B21B6;
  
  /* Gradients */
  --grad-logo: linear-gradient(135deg, #FF6B35 0%, #E11D48 45%, #7C3AED 100%);
  --grad-logo-hover: linear-gradient(135deg, #FF8254 0%, #F43F5E 45%, #8B5CF6 100%);
  --grad-soft: linear-gradient(135deg, rgba(255, 107, 53, 0.06) 0%, rgba(225, 29, 72, 0.06) 50%, rgba(124, 58, 237, 0.06) 100%);
  --grad-subtle-border: linear-gradient(135deg, rgba(255, 107, 53, 0.25), rgba(225, 29, 72, 0.25), rgba(124, 58, 237, 0.25));

  /* Theme Backgrounds & Surfaces (White Theme) */
  --bg-main: #FFFFFF;
  --bg-alt: #F8F9FE;
  --bg-card: #FFFFFF;
  --bg-header: rgba(255, 255, 255, 0.88);
  
  /* Typography Colors */
  --text-main: #0F172A;
  --text-secondary: #475569;
  --text-muted: #64748B;
  --text-light: #94A3B8;

  /* UI Tokens */
  --border-light: rgba(226, 232, 240, 0.8);
  --border-focus: rgba(124, 58, 237, 0.4);
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.03);
  --shadow-md: 0 10px 30px rgba(124, 58, 237, 0.08);
  --shadow-hover: 0 20px 45px rgba(225, 29, 72, 0.14);
  --shadow-badge: 0 4px 15px rgba(255, 107, 53, 0.2);

  /* Dimensions & Radius */
  --radius-full: 9999px;
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.6;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--bg-main);
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(255, 107, 53, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(225, 29, 72, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 50% 85%, rgba(124, 58, 237, 0.05) 0%, transparent 45%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* Typography Utilities */
.gradient-text {
  background: var(--grad-logo);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==========================================================================
   Header & Centered Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: var(--bg-header);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-main);
  font-weight: 800;
  font-size: 1.35rem;
  transition: transform var(--transition-fast);
}

.brand-logo-link:hover {
  transform: translateY(-1px);
}

.brand-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.brand-title {
  letter-spacing: -0.02em;
}

.brand-title span {
  background: var(--grad-logo);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Centered Top Menu */
.centered-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  background: rgba(248, 249, 254, 0.8);
  padding: 5px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 4px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.55rem 1.25rem;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.nav-link svg {
  width: 18px;
  height: 18px;
  stroke: var(--text-muted);
  transition: stroke var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.9);
}

.nav-link:hover svg {
  stroke: var(--color-rose);
}

.nav-link.active {
  color: #FFFFFF;
  background: var(--grad-logo);
  box-shadow: 0 4px 15px rgba(225, 29, 72, 0.25);
}

.nav-link.active svg {
  stroke: #FFFFFF;
}

/* Header Right Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.discord-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.55rem 1.15rem;
  background: #5865F2;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 12px rgba(88, 101, 242, 0.25);
}

.discord-cta-btn:hover {
  background: #4752C4;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(88, 101, 242, 0.35);
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-main);
}

/* ==========================================================================
   Page Sections Framework
   ========================================================================== */
.main-content {
  flex: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem 1.5rem;
}

.section-page {
  display: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.section-page.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Section Header */
.section-title-wrapper {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3.5rem auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.35rem 1rem;
  background: var(--grad-soft);
  border: 1px solid rgba(225, 29, 72, 0.2);
  color: var(--color-rose);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   Page 1: ACCUEIL (HOME)
   ========================================================================== */
.hero-banner {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  padding: 3.5rem 2.5rem;
  margin-bottom: 4rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 3rem;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.04), rgba(124, 58, 237, 0.04));
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-headline {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.stat-item h4 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-purple);
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-logo-glow {
  position: absolute;
  width: 250px;
  height: 250px;
  background: var(--grad-logo);
  filter: blur(60px);
  opacity: 0.25;
  border-radius: 50%;
  animation: pulse-glow 4s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
  0% { transform: scale(0.9); opacity: 0.2; }
  100% { transform: scale(1.1); opacity: 0.35; }
}

.hero-logo-img {
  width: 260px;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 15px 25px rgba(124, 58, 237, 0.15));
  transition: transform var(--transition-bounce);
}

.hero-logo-img:hover {
  transform: scale(1.04) rotate(1deg);
}

/* Featured Project: OzBot */
.featured-project-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  border: 2px solid transparent;
  background-image: linear-gradient(white, white), var(--grad-subtle-border);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  padding: 3rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 4rem;
  position: relative;
  transition: all var(--transition-normal);
}

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

.project-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2.5rem;
  align-items: center;
}

.project-icon-wrapper {
  position: relative;
  text-align: center;
}

.project-icon-img {
  width: 180px;
  height: 180px;
  border-radius: 36px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.18);
  border: 4px solid #FFFFFF;
}

.project-status-badge {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #10B981;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #FFFFFF;
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.project-info-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.project-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.project-tag {
  background: var(--grad-soft);
  color: var(--color-rose);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(225, 29, 72, 0.15);
}

.project-description {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.project-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-md);
}

.feature-pill svg {
  stroke: var(--color-rose);
}

/* Action Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.9rem 2rem;
  background: var(--grad-logo);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 8px 25px rgba(225, 29, 72, 0.3);
}

.btn-primary:hover {
  background: var(--grad-logo-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(225, 29, 72, 0.4);
}

.btn-primary svg {
  transition: transform var(--transition-fast);
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

/* Upcoming Projects Grid */
.upcoming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.upcoming-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 1.75rem;
  transition: all var(--transition-fast);
  position: relative;
}

.upcoming-card:hover {
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

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

.upcoming-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--grad-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-purple);
}

.upcoming-status {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--bg-alt);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.upcoming-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.upcoming-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   Page 2: QUI SOMMES-NOUS (ABOUT US)
   ========================================================================== */
.about-profile-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  padding: 3.5rem 3rem;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 3.5rem;
  position: relative;
  overflow: hidden;
}

.about-profile-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background: var(--grad-logo);
}

.profile-avatar-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.avatar-wrapper {
  position: relative;
  margin-bottom: 1.25rem;
}

.profile-avatar-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #FFFFFF;
  box-shadow: 0 15px 35px rgba(225, 29, 72, 0.18);
  background: #F1F5F9;
}

.discord-status-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  background: #22C55E;
  border: 4px solid #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.4);
}

.profile-name-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-alt);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.profile-name-tag:hover {
  border-color: var(--color-rose);
  background: #FFFFFF;
  box-shadow: var(--shadow-sm);
}

.profile-role-badge {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-rose);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-bio-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.bio-greeting {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

.bio-quote-box {
  background: var(--grad-soft);
  border-left: 4px solid var(--color-rose);
  padding: 1.5rem 1.75rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.6;
}

.bio-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.skills-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.skill-tag {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

/* Philosophy Cards Grid */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.philosophy-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.philosophy-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 107, 53, 0.3);
}

.philosophy-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--grad-logo);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  box-shadow: 0 6px 16px rgba(225, 29, 72, 0.25);
}

.philosophy-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.philosophy-desc {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* ==========================================================================
   Page 3: AMBASSADEURS (AMBASSADORS)
   ========================================================================== */
.ambassador-hero-banner {
  background: var(--grad-soft);
  border: 1px solid rgba(225, 29, 72, 0.2);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  overflow: hidden;
}

.ambassador-hero-banner h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.ambassador-explanation {
  font-size: 1.12rem;
  color: var(--text-secondary);
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 500;
}

.ambassador-explanation strong {
  color: var(--color-rose);
}

/* Ambassadors Grid */
.ambassadors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.ambassador-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  padding: 2.25rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ambassador-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(124, 58, 237, 0.3);
}

.ambassador-card.mystery {
  background: linear-gradient(180deg, #FFFFFF 0%, #FAF5FF 100%);
  border-style: dashed;
  border-color: rgba(124, 58, 237, 0.35);
}

.ambassador-avatar-wrapper {
  position: relative;
  margin-bottom: 1.25rem;
}

.ambassador-avatar-img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #FFFFFF;
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.15);
  background: #F1F5F9;
  transition: transform var(--transition-fast);
}

.ambassador-card:hover .ambassador-avatar-img {
  transform: scale(1.06);
}

.ambassador-vip-badge {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-logo);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: var(--shadow-badge);
}

.ambassador-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  margin-top: 0.5rem;
  margin-bottom: 0.35rem;
}

.ambassador-tag {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.ambassador-perks-list {
  list-style: none;
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.ambassador-perk-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.ambassador-perk-item svg {
  stroke: var(--color-rose);
  flex-shrink: 0;
}

/* Ambassador Program Benefits Section */
.perks-banner {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.perks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.perk-box {
  display: flex;
  gap: 1.25rem;
}

.perk-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: var(--grad-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-rose);
  flex-shrink: 0;
}

.perk-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.perk-info p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border-light);
  padding: 3rem 1.5rem 2rem 1.5rem;
  margin-top: auto;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.2rem;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: color var(--transition-fast);
}

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

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 0.5rem;
}

/* Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--text-main);
  color: #FFFFFF;
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-notification.show {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 900px) {
  .header-container {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .centered-nav {
    position: static;
    transform: none;
    order: 3;
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
  }

  .hero-banner {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.5rem;
    text-align: center;
  }

  .hero-banner::before {
    display: none;
  }

  .hero-stats {
    justify-content: center;
  }

  .project-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .project-icon-wrapper {
    margin: 0 auto;
  }

  .project-info-header {
    justify-content: center;
  }

  .project-features-list {
    justify-content: center;
  }

  .about-profile-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2.5rem 1.5rem;
  }

  .bio-greeting {
    font-size: 1.8rem;
  }

  .skills-tags {
    justify-content: center;
  }

  .hero-headline {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .nav-list {
    width: 100%;
    justify-content: space-around;
  }

  .nav-link span {
    display: none;
  }

  .nav-link {
    padding: 0.6rem 1rem;
  }

  .discord-cta-btn span {
    display: none;
  }

  .discord-cta-btn {
    padding: 0.55rem;
  }
}
