/* ================================================
   BEE AT HOME — style.css?v=1
   Pop Art / Memphis Design — COLOR EXPLOSION
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Nunito:wght@400;600;700;800&display=swap');

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

:root {
  --pink:   #ec4899;
  --yellow: #fbbf24;
  --blue:   #3b82f6;
  --lime:   #84cc16;
  --purple: #a855f7;
  --orange: #f97316;
  --red:    #ef4444;
  --dark:   #1a1a2e;
  --white:  #ffffff;
  --cream:  #fffbeb;
  --shadow-dark: 6px 6px 0 #1a1a2e;
  --font-display: 'Bangers', 'Impact', 'Arial Black', sans-serif;
  --font-body:    'Nunito', 'Trebuchet MS', Arial, sans-serif;
  --radius: 0.5rem;
  --radius-lg: 1.5rem;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--dark);
  background: var(--cream);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: 0.04em; line-height: 1.1; }
h1 { font-size: clamp(2.8rem, 7vw, 6rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: 1.3rem; }
p  { margin-bottom: 1rem; }

/* ---------- UTILITY ---------- */
.container  { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.text-center { text-align: center; }
.text-pink   { color: var(--pink); }
.text-yellow { color: var(--yellow); }
.text-blue   { color: var(--blue); }
.text-lime   { color: var(--lime); }
.text-white  { color: var(--white); }

/* ---------- STRIPE BAR ---------- */
.stripe-bar {
  height: 12px;
  background: repeating-linear-gradient(
    45deg,
    var(--pink) 0px, var(--pink) 10px,
    var(--yellow) 10px, var(--yellow) 20px,
    var(--blue) 20px, var(--blue) 30px,
    var(--lime) 30px, var(--lime) 40px
  );
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  padding: 0.75rem 2rem;
  border: 3px solid var(--dark);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translate(-3px, -3px); }
.btn:active { transform: translate(3px, 3px); box-shadow: none !important; }
.btn-pink   { background: var(--pink);   color: var(--white);  box-shadow: 6px 6px 0 #881337; }
.btn-pink:hover   { box-shadow: 9px 9px 0 #881337; }
.btn-yellow { background: var(--yellow); color: var(--dark);   box-shadow: 6px 6px 0 #92400e; }
.btn-yellow:hover { box-shadow: 9px 9px 0 #92400e; }
.btn-blue   { background: var(--blue);   color: var(--white);  box-shadow: 6px 6px 0 #1e3a8a; }
.btn-blue:hover   { box-shadow: 9px 9px 0 #1e3a8a; }
.btn-lime   { background: var(--lime);   color: var(--dark);   box-shadow: 6px 6px 0 #3f6212; }
.btn-lime:hover   { box-shadow: 9px 9px 0 #3f6212; }
.btn-white  { background: var(--white); color: var(--dark);    box-shadow: 6px 6px 0 rgba(0,0,0,0.4); }
.btn-white:hover  { box-shadow: 9px 9px 0 rgba(0,0,0,0.5); }
.btn-outline { background: transparent; color: var(--dark); border: 3px solid var(--dark); box-shadow: var(--shadow-dark); }
.btn-outline:hover { background: var(--dark); color: var(--yellow); box-shadow: 9px 9px 0 var(--dark); }

/* ---------- NAV ---------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--dark);
  border-bottom: 4px solid var(--yellow);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.5rem;
  max-width: 1300px;
  margin: 0 auto;
}
.nav-logo img { height: 44px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 0.2rem; }
.nav-links a {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--white);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: all var(--transition);
}
.nav-links a:nth-child(1):hover, .nav-links a:nth-child(1).active { background: var(--pink);   color: var(--white); border-color: var(--pink); }
.nav-links a:nth-child(2):hover, .nav-links a:nth-child(2).active { background: var(--yellow); color: var(--dark);  border-color: var(--yellow); }
.nav-links a:nth-child(3):hover, .nav-links a:nth-child(3).active { background: var(--blue);   color: var(--white); border-color: var(--blue); }
.nav-links a:nth-child(4):hover, .nav-links a:nth-child(4).active { background: var(--lime);   color: var(--dark);  border-color: var(--lime); }
.nav-links a:nth-child(5):hover, .nav-links a:nth-child(5).active { background: var(--purple); color: var(--white); border-color: var(--purple); }
.nav-links a:nth-child(6):hover, .nav-links a:nth-child(6).active { background: var(--orange); color: var(--white); border-color: var(--orange); }
.nav-cta {
  font-family: var(--font-display);
  font-size: 1.1rem;
  background: var(--pink);
  color: var(--white);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
  border: 2px solid var(--white);
  transition: all var(--transition);
}
.nav-cta:hover { background: var(--yellow); color: var(--dark); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 0.3rem; }
.nav-toggle span { display: block; width: 28px; height: 3px; background: var(--white); border-radius: 2px; transition: all var(--transition); }

@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 1rem;
    gap: 0.5rem;
    border-bottom: 4px solid var(--pink);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.3rem; padding: 0.6rem 1rem; width: 100%; text-align: center; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
}

/* ---------- PAGE HERO TEMPLATES ---------- */
.page-hero {
  margin-top: 72px;
  padding: 5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--dark);
}
.page-hero h1 { position: relative; z-index: 1; }
.page-hero p  { position: relative; z-index: 1; font-size: 1.2rem; max-width: 640px; margin: 1rem auto 0; font-weight: 700; }
.page-hero-dots::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.18) 2px, transparent 2px);
  background-size: 26px 26px;
}
.page-hero-stripes::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-45deg, rgba(255,255,255,0.08) 0px, rgba(255,255,255,0.08) 5px, transparent 5px, transparent 15px);
}

/* ---------- HERO (HOME) ---------- */
.hero {
  margin-top: 72px;
  min-height: calc(100vh - 72px);
  position: relative;
  display: flex;
  align-items: center;
  background-image: url('/images/hero-colorful.jpg');
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(26, 26, 46, 0.75);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 4rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  background: var(--yellow);
  color: var(--dark);
  padding: 0.3rem 1rem;
  border: 3px solid var(--dark);
  box-shadow: 4px 4px 0 var(--dark);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.hero h1 { color: var(--white); text-shadow: 5px 5px 0 var(--pink); margin-bottom: 1rem; max-width: 800px; }
.hero h1 span { color: var(--yellow); }
.hero-sub { font-size: 1.25rem; color: rgba(255,255,255,0.9); max-width: 560px; margin-bottom: 2.5rem; font-weight: 700; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- SECTION TITLES ---------- */
.section-title { display: inline-block; position: relative; margin-bottom: 0.5rem; }
.section-title::after { content: ''; display: block; height: 6px; border-radius: 3px; margin-top: 0.3rem; }
.title-pink::after   { background: var(--pink); }
.title-yellow::after { background: var(--yellow); }
.title-blue::after   { background: var(--blue); }
.title-lime::after   { background: var(--lime); }
.title-purple::after { background: var(--purple); }
.section-lead { font-size: 1.15rem; font-weight: 600; max-width: 640px; margin: 0 auto 3rem; color: #444; }

/* ---------- GRID HELPERS ---------- */
.grid-2    { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4    { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ---------- HOME: INTRO ---------- */
.intro-section { background: var(--cream); position: relative; overflow: hidden; }
.intro-section::before { content: ''; position: absolute; top: -60px; right: -60px; width: 300px; height: 300px; background: var(--yellow); border-radius: 50%; opacity: 0.2; z-index: 0; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.intro-img-wrap { position: relative; }
.intro-img-wrap img { border: 4px solid var(--dark); border-radius: var(--radius-lg); box-shadow: 10px 10px 0 var(--pink); width: 100%; object-fit: cover; aspect-ratio: 4/3; }
.intro-img-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--yellow); border: 3px solid var(--dark); border-radius: 50%;
  width: 110px; height: 110px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.95rem; line-height: 1.2; text-align: center;
  box-shadow: 4px 4px 0 var(--dark);
}
.intro-img-badge strong { font-size: 2rem; line-height: 1; }
@media (max-width: 768px) { .intro-grid { grid-template-columns: 1fr; } }

/* ---------- HOME: SERVICES PREVIEW ---------- */
.services-preview { background: linear-gradient(135deg, var(--dark) 0%, #16213e 100%); position: relative; overflow: hidden; }
.services-preview::before { content: ''; position: absolute; bottom: -80px; left: -80px; width: 400px; height: 400px; background: var(--pink); border-radius: 50%; opacity: 0.1; }
.services-preview::after  { content: ''; position: absolute; top: -60px; right: -60px; width: 250px; height: 250px; background: var(--blue); border-radius: 50%; opacity: 0.15; }
.service-card { background: rgba(255,255,255,0.07); border: 2px solid rgba(255,255,255,0.2); border-radius: var(--radius-lg); padding: 2rem 1.5rem; text-align: center; transition: all var(--transition); position: relative; z-index: 1; }
.service-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-6px); border-color: var(--yellow); box-shadow: 0 12px 40px rgba(251,191,36,0.2); }
.service-icon { width: 70px; height: 70px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 1rem; border: 3px solid var(--dark); box-shadow: 4px 4px 0 rgba(0,0,0,0.4); }
.service-card h3 { color: var(--white); margin-bottom: 0.5rem; }
.service-card p  { color: rgba(255,255,255,0.72); font-size: 0.95rem; margin: 0; }

/* ---------- HOME: CUISINE BANNER ---------- */
.cuisine-banner { position: relative; min-height: 420px; display: flex; align-items: center; background-image: url('/images/cuisine-coloree.jpg'); background-size: cover; background-position: center; background-attachment: fixed; }
.cuisine-banner .overlay { position: absolute; inset: 0; background: rgba(26,26,46,0.75); }
.cuisine-banner .content { position: relative; z-index: 2; max-width: 700px; padding: 3rem 1.5rem; margin: 0 auto; text-align: center; }
.cuisine-banner h2 { color: var(--yellow); text-shadow: 4px 4px 0 var(--pink); margin-bottom: 1rem; }
.cuisine-banner p  { color: rgba(255,255,255,0.9); font-size: 1.15rem; margin-bottom: 2rem; }

/* ---------- HOME: MOOD BOARD CTA ---------- */
.mood-cta { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; }
.mood-cta-img { position: relative; overflow: hidden; }
.mood-cta-img img { width: 100%; height: 100%; object-fit: cover; }
.mood-cta-content { background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%); display: flex; flex-direction: column; justify-content: center; padding: 4rem 3rem; position: relative; overflow: hidden; }
.mood-cta-content::before { content: ''; position: absolute; bottom: -60px; right: -60px; width: 250px; height: 250px; background: rgba(255,255,255,0.12); border-radius: 50%; }
.mood-cta-content h2 { color: var(--white); text-shadow: 4px 4px 0 rgba(0,0,0,0.3); margin-bottom: 1rem; }
.mood-cta-content p  { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 2rem; font-weight: 700; }
@media (max-width: 768px) { .mood-cta { grid-template-columns: 1fr; } .mood-cta-img { height: 300px; } .mood-cta-content { padding: 3rem 2rem; } }

/* ---------- HOME: NUMBERS ---------- */
.numbers-section { background: var(--yellow); border-top: 4px solid var(--dark); border-bottom: 4px solid var(--dark); padding: 3.5rem 0; }
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.number-item .big { font-family: var(--font-display); font-size: clamp(3rem, 7vw, 5rem); color: var(--dark); line-height: 1; text-shadow: 4px 4px 0 var(--pink); }
.number-item .label { font-weight: 700; font-size: 1rem; color: var(--dark); text-transform: uppercase; letter-spacing: 0.08em; }
@media (max-width: 640px) { .numbers-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- HOME: CLIENT LINK BLOCK ---------- */
.client-link-block { background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%); padding: 5rem 1.5rem; text-align: center; position: relative; overflow: hidden; }
.client-link-block h2 { color: var(--yellow); margin-bottom: 1rem; }
.client-link-block p  { color: rgba(255,255,255,0.92); font-size: 1.15rem; max-width: 700px; margin: 0 auto 1.5rem; font-weight: 600; }
.school-link { color: var(--yellow) !important; font-weight: 800; border-bottom: 3px solid var(--yellow); padding-bottom: 2px; transition: all var(--transition); }
.school-link:hover { color: var(--white) !important; border-color: var(--white); }

/* ---------- BLOG CARDS (HOME PREVIEW) ---------- */
.blog-card { background: var(--white); border: 3px solid var(--dark); border-radius: var(--radius-lg); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); display: flex; flex-direction: column; }
.blog-card:hover { transform: translate(-5px, -5px); }
.blog-card:nth-child(1):hover { box-shadow: 9px 9px 0 var(--pink); }
.blog-card:nth-child(2):hover { box-shadow: 9px 9px 0 var(--blue); }
.blog-card:nth-child(3):hover { box-shadow: 9px 9px 0 var(--lime); }
.blog-card-img  { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-body h3 { margin-bottom: 0.5rem; font-size: 1.3rem; }
.blog-card-body p  { flex: 1; color: #555; margin-bottom: 1rem; font-size: 0.95rem; }
.blog-card-meta { font-size: 0.85rem; color: #888; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.75rem; }
.blog-card-link { font-family: var(--font-display); font-size: 1.1rem; color: var(--pink); display: inline-flex; align-items: center; gap: 0.4rem; transition: gap var(--transition); }
.blog-card-link:hover { gap: 0.8rem; color: var(--purple); }
.blog-card-link::after { content: '→'; }

/* ---------- REALISATIONS ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-bottom: 3rem; }
.filter-btn { font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.06em; padding: 0.5rem 1.2rem; border: 3px solid var(--dark); border-radius: 99px; background: var(--white); cursor: pointer; transition: all var(--transition); box-shadow: 3px 3px 0 var(--dark); }
.filter-btn:hover, .filter-btn.active { background: var(--dark); color: var(--yellow); box-shadow: none; transform: translate(2px, 2px); }
.project-card { background: var(--white); border: 3px solid var(--dark); border-radius: var(--radius-lg); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); }
.project-card:hover { transform: translate(-5px, -5px); box-shadow: 10px 10px 0 var(--pink); }
.project-card-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.project-card-body { padding: 1.25rem; }
.project-card-body h3 { margin-bottom: 0.25rem; font-size: 1.2rem; }
.project-card-body p  { font-size: 0.9rem; color: #666; margin: 0; }
.project-tag { display: inline-block; font-family: var(--font-display); font-size: 0.85rem; letter-spacing: 0.08em; padding: 0.2rem 0.75rem; border-radius: 99px; border: 2px solid currentColor; margin-bottom: 0.5rem; }

/* ---------- SERVICES PAGE ---------- */
.service-big-card { display: grid; grid-template-columns: 1fr 1fr; border: 3px solid var(--dark); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 3rem; box-shadow: 6px 6px 0 var(--dark); }
.service-big-card.reverse { direction: rtl; }
.service-big-card.reverse > * { direction: ltr; }
.service-big-img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.service-big-body { padding: 3rem 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.service-big-body h2 { margin-bottom: 1rem; }
.service-big-body p  { color: #555; margin-bottom: 1.5rem; }
.service-feature-list { list-style: none; margin-bottom: 2rem; }
.service-feature-list li { padding: 0.5rem 0; border-bottom: 2px dashed rgba(0,0,0,0.1); display: flex; align-items: center; gap: 0.75rem; font-weight: 700; }
.service-feature-list li::before { content: '✦'; color: var(--pink); font-size: 1.2rem; flex-shrink: 0; }
@media (max-width: 768px) { .service-big-card { grid-template-columns: 1fr; direction: ltr; } .service-big-img { min-height: 220px; } }

/* Tarifs */
.tarif-section { background: linear-gradient(135deg, var(--dark) 0%, #16213e 100%); padding: 5rem 0; }
.tarif-card { background: rgba(255,255,255,0.06); border: 3px solid rgba(255,255,255,0.2); border-radius: var(--radius-lg); padding: 2.5rem 2rem; text-align: center; transition: all var(--transition); position: relative; overflow: hidden; }
.tarif-card.featured { border-color: var(--yellow); background: rgba(251,191,36,0.12); transform: scale(1.05); }
.tarif-card.featured::before { content: 'POPULAIRE'; position: absolute; top: 1.2rem; right: -2.5rem; background: var(--pink); color: var(--white); font-family: var(--font-display); font-size: 0.85rem; padding: 0.3rem 3rem; transform: rotate(45deg); letter-spacing: 0.1em; }
.tarif-card:hover { transform: translateY(-8px); border-color: var(--pink); }
.tarif-card.featured:hover { transform: scale(1.07) translateY(-8px); }
.tarif-card h3 { color: var(--yellow); font-size: 1.8rem; margin-bottom: 0.5rem; }
.tarif-price { font-family: var(--font-display); font-size: 3rem; color: var(--white); margin: 1rem 0; line-height: 1; }
.tarif-price span { font-size: 1.2rem; }
.tarif-card ul { text-align: left; margin: 1.5rem 0; }
.tarif-card ul li { color: rgba(255,255,255,0.8); padding: 0.4rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 0.95rem; }
.tarif-card ul li::before { content: '✓ '; color: var(--lime); font-weight: 800; }

/* ---------- PHILOSOPHIE ---------- */
.manifesto-block { background: var(--dark); padding: 5rem 1.5rem; }
.manifesto-quote { max-width: 900px; margin: 0 auto; text-align: center; font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.3; color: var(--white); position: relative; padding: 2rem; }
.manifesto-quote::before { content: '"'; font-size: 8rem; color: var(--pink); position: absolute; top: -2rem; left: 0; line-height: 1; opacity: 0.4; }
.value-card { border: 3px solid var(--dark); border-radius: var(--radius-lg); padding: 2rem; position: relative; overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); background: var(--white); }
.value-card:hover { transform: translate(-4px, -4px); box-shadow: 8px 8px 0 var(--dark); }
.value-card::before { content: attr(data-num); position: absolute; top: -0.5rem; right: 0.75rem; font-family: var(--font-display); font-size: 5rem; opacity: 0.1; line-height: 1; color: var(--dark); }
.value-card h3 { margin-bottom: 0.75rem; }
.process-step { display: flex; gap: 2rem; align-items: flex-start; padding: 2.5rem 0; border-bottom: 2px dashed rgba(0,0,0,0.12); }
.process-step:last-child { border-bottom: none; }
.step-num { flex-shrink: 0; width: 70px; height: 70px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 2rem; border: 3px solid var(--dark); box-shadow: 4px 4px 0 var(--dark); }
.step-content h3 { margin-bottom: 0.5rem; }
.step-content p   { color: #555; margin: 0; }

/* ---------- CONTACT ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-form-wrap { background: var(--white); border: 3px solid var(--dark); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: 8px 8px 0 var(--dark); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 0.4rem; letter-spacing: 0.04em; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.85rem 1rem; border: 2px solid var(--dark); border-radius: var(--radius); font-family: var(--font-body); font-size: 1rem; background: var(--cream); transition: border-color var(--transition), box-shadow var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--pink); box-shadow: 4px 4px 0 var(--pink); }
.form-group textarea { min-height: 140px; resize: vertical; }
.contact-info-item { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.2rem; background: var(--white); border: 2px solid var(--dark); border-radius: var(--radius); margin-bottom: 1rem; font-weight: 700; transition: transform var(--transition), box-shadow var(--transition); }
.contact-info-item:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--pink); }
.contact-info-item .icon { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; border: 2px solid var(--dark); }

/* ---------- BLOG LIST ---------- */
.blog-list-card { background: var(--white); border: 3px solid var(--dark); border-radius: var(--radius-lg); overflow: hidden; display: grid; grid-template-columns: 320px 1fr; transition: transform var(--transition), box-shadow var(--transition); margin-bottom: 2.5rem; }
.blog-list-card:hover { transform: translate(-5px, -5px); box-shadow: 10px 10px 0 var(--pink); }
.blog-list-card:nth-child(even):hover { box-shadow: 10px 10px 0 var(--blue); }
.blog-list-img { width: 100%; height: 100%; min-height: 240px; object-fit: cover; }
.blog-list-body { padding: 2rem; display: flex; flex-direction: column; }
.blog-list-body h2 { font-size: 1.8rem; margin-bottom: 0.5rem; }
.blog-list-body p  { color: #555; flex: 1; margin-bottom: 1.5rem; }
.blog-list-meta { font-size: 0.85rem; color: #999; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.75rem; }
@media (max-width: 700px) { .blog-list-card { grid-template-columns: 1fr; } .blog-list-img { min-height: 200px; } }

/* ---------- ARTICLE ---------- */
.article-hero { margin-top: 72px; background: var(--dark); min-height: 400px; display: flex; align-items: flex-end; position: relative; overflow: hidden; }
.article-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.article-hero-content { position: relative; z-index: 2; padding: 3rem 1.5rem; max-width: 900px; margin: 0 auto; width: 100%; }
.article-hero-content h1 { color: var(--white); text-shadow: 4px 4px 0 var(--pink); margin-bottom: 1rem; }
.article-meta { color: rgba(255,255,255,0.72); font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; }
.article-body { max-width: 860px; margin: 0 auto; padding: 4rem 1.5rem; }
.article-body h2 { color: var(--pink); margin: 2.5rem 0 1rem; }
.article-body h3 { color: var(--blue); margin: 2rem 0 0.75rem; }
.article-body p  { color: #444; margin-bottom: 1.2rem; }
.article-body ul { list-style: disc; padding-left: 1.8rem; margin-bottom: 1.2rem; }
.article-body ul li { color: #444; padding: 0.2rem 0; }
.article-body img { width: 100%; border: 3px solid var(--dark); border-radius: var(--radius-lg); box-shadow: 8px 8px 0 var(--pink); margin: 2rem 0; }
.article-pullquote { background: linear-gradient(135deg, var(--pink), var(--purple)); color: var(--white); font-family: var(--font-display); font-size: 1.6rem; line-height: 1.4; padding: 2rem 2.5rem; border-radius: var(--radius-lg); border: 3px solid var(--dark); box-shadow: 6px 6px 0 var(--dark); margin: 2.5rem 0; position: relative; }
.article-pullquote::before { content: '"'; position: absolute; top: -1.5rem; left: 1rem; font-size: 5rem; opacity: 0.25; }
.article-nav { display: flex; justify-content: space-between; gap: 1rem; padding: 2rem 1.5rem; max-width: 860px; margin: 0 auto; border-top: 3px solid var(--dark); flex-wrap: wrap; }

/* ---------- TAG ---------- */
.tag { display: inline-block; font-family: var(--font-display); font-size: 0.9rem; letter-spacing: 0.08em; padding: 0.2rem 0.8rem; border: 2px solid currentColor; border-radius: 99px; text-transform: uppercase; margin: 0.2rem; }
.tag-pink   { color: var(--pink); }
.tag-blue   { color: var(--blue); }
.tag-lime   { color: var(--lime); }
.tag-purple { color: var(--purple); }
.tag-orange { color: var(--orange); }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--dark);
  border-top: 8px solid transparent;
  border-image: repeating-linear-gradient(90deg, var(--pink) 0px, var(--pink) 40px, var(--yellow) 40px, var(--yellow) 80px, var(--blue) 80px, var(--blue) 120px, var(--lime) 120px, var(--lime) 160px) 1;
  color: rgba(255,255,255,0.85);
  padding: 4rem 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px)  { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 48px; margin-bottom: 1rem; }
.footer-brand p   { color: rgba(255,255,255,0.58); font-size: 0.95rem; max-width: 280px; }
.footer-col h4 { font-family: var(--font-display); font-size: 1.2rem; color: var(--yellow); margin-bottom: 1rem; letter-spacing: 0.06em; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: rgba(255,255,255,0.65); transition: color var(--transition); font-size: 0.95rem; }
.footer-col ul li a:hover { color: var(--pink); }
.footer-bottom { border-top: 2px solid rgba(255,255,255,0.1); padding: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.85rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--yellow); }

/* ---------- 404 ---------- */
.page-404 { margin-top: 72px; min-height: calc(100vh - 72px); display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--dark) 0%, #16213e 100%); text-align: center; padding: 4rem 1.5rem; }
.page-404-inner h1 { font-size: clamp(6rem, 20vw, 14rem); line-height: 1; background: linear-gradient(135deg, var(--pink), var(--yellow), var(--blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; }
.page-404-inner h2 { color: var(--white); margin-bottom: 1rem; }
.page-404-inner p  { color: rgba(255,255,255,0.7); max-width: 480px; margin: 0 auto 2rem; font-size: 1.1rem; }

/* ---------- SITEMAP ---------- */
.sitemap-tree { max-width: 900px; margin: 0 auto; padding: 4rem 1.5rem; }
.sitemap-section { background: var(--white); border: 3px solid var(--dark); border-radius: var(--radius-lg); padding: 2rem; margin-bottom: 2rem; box-shadow: 5px 5px 0 var(--dark); }
.sitemap-section h2 { font-size: 1.5rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; }
.sitemap-section ul li { padding: 0.4rem 0; border-bottom: 1px dashed rgba(0,0,0,0.1); }
.sitemap-section ul li:last-child { border-bottom: none; }
.sitemap-section ul li a { color: var(--blue); font-weight: 700; }
.sitemap-section ul li a:hover { color: var(--pink); }

/* ---------- ANIMATIONS ---------- */
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes spin   { to { transform: rotate(360deg); } }
.bounce { animation: bounce 2s ease-in-out infinite; }
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* Text logo - replaces image */
.logo-text {
  font-family: "Bangers", "Impact", sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #fff;
  white-space: nowrap;
}
