/* Pillar of Fire & FutureForm Foundation - Static Site Styles */

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

html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #F4F3F5;
  color: #111111;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  line-height: 1.1;
}

a {
  text-decoration: none;
  color: inherit;
}

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

ul {
  list-style: none;
}

/* ===== Layout Utilities ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .container { padding: 0 24px; }
}

@media (min-width: 1024px) {
  .container { padding: 0 32px; }
}

.min-h-screen {
  min-height: 100vh;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

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

.justify-between {
  justify-content: space-between;
}

.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }
.gap-12 { gap: 48px; }
.gap-16 { gap: 64px; }

.text-center { text-align: center; }

.hidden { display: none; }

@media (min-width: 768px) {
  .md-flex { display: flex; }
  .md-hidden { display: none; }
  .md-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .md-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .md-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.grid {
  display: grid;
  gap: 32px;
}

.grid-1 { grid-template-columns: 1fr; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

@media (min-width: 768px) {
  .md-col-span-2 { grid-column: span 2; }
}

/* ===== Colors ===== */
.bg-white { background-color: #FFFFFF; }
.bg-gray { background-color: #F4F3F5; }
.bg-black { background-color: #111111; }
.bg-red { background-color: #E52630; }
.bg-yellow { background-color: #FFD700; }

.text-white { color: #FFFFFF; }
.text-black { color: #111111; }
.text-red { color: #E52630; }
.text-yellow { color: #FFD700; }
.text-gray { color: rgba(17, 17, 17, 0.7); }
.text-gray-light { color: rgba(17, 17, 17, 0.6); }
.text-white-90 { color: rgba(255, 255, 255, 0.9); }
.text-white-80 { color: rgba(255, 255, 255, 0.8); }
.text-white-70 { color: rgba(255, 255, 255, 0.7); }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }

/* ===== Typography ===== */
.text-xs { font-size: 12px; }
.text-sm { font-size: 14px; }
.text-base { font-size: 16px; }
.text-lg { font-size: 18px; }
.text-xl { font-size: 20px; }
.text-2xl { font-size: 24px; }
.text-3xl { font-size: 30px; }
.text-4xl { font-size: 36px; }
.text-5xl { font-size: 48px; }
.text-6xl { font-size: 60px; }
.text-7xl { font-size: 72px; }
.text-8xl { font-size: 96px; }

@media (min-width: 768px) {
  .md-text-2xl { font-size: 24px; }
  .md-text-3xl { font-size: 30px; }
  .md-text-4xl { font-size: 36px; }
  .md-text-5xl { font-size: 48px; }
  .md-text-6xl { font-size: 60px; }
  .md-text-7xl { font-size: 72px; }
}

@media (min-width: 1024px) {
  .lg-text-7xl { font-size: 72px; }
  .lg-text-8xl { font-size: 96px; }
}

.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.leading-none { line-height: 1; }
.leading-relaxed { line-height: 1.625; }

/* ===== Spacing ===== */
.p-4 { padding: 16px; }
.p-6 { padding: 24px; }
.p-8 { padding: 32px; }
.p-10 { padding: 40px; }
.p-12 { padding: 48px; }

.px-4 { padding-left: 16px; padding-right: 16px; }
.px-5 { padding-left: 20px; padding-right: 20px; }
.px-6 { padding-left: 24px; padding-right: 24px; }

.py-2 { padding-top: 8px; padding-bottom: 8px; }
.py-3 { padding-top: 12px; padding-bottom: 12px; }
.py-4 { padding-top: 16px; padding-bottom: 16px; }
.py-8 { padding-top: 32px; padding-bottom: 32px; }
.py-16 { padding-top: 64px; padding-bottom: 64px; }
.py-20 { padding-top: 80px; padding-bottom: 80px; }
.py-24 { padding-top: 96px; padding-bottom: 96px; }
.py-32 { padding-top: 128px; padding-bottom: 128px; }

@media (min-width: 768px) {
  .md-p-8 { padding: 32px; }
  .md-p-10 { padding: 40px; }
  .md-p-12 { padding: 48px; }
  .md-py-24 { padding-top: 96px; padding-bottom: 96px; }
  .md-py-32 { padding-top: 128px; padding-bottom: 128px; }
  .md-py-40 { padding-top: 160px; padding-bottom: 160px; }
}

.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-10 { margin-bottom: 40px; }
.mb-12 { margin-bottom: 48px; }
.mb-16 { margin-bottom: 64px; }

.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }

.mx-auto { margin-left: auto; margin-right: auto; }

.max-w-md { max-width: 448px; }
.max-w-xl { max-width: 576px; }
.max-w-2xl { max-width: 672px; }
.max-w-3xl { max-width: 768px; }
.max-w-4xl { max-width: 896px; }
.max-w-5xl { max-width: 1024px; }
.max-w-7xl { max-width: 1280px; }

/* ===== Borders ===== */
.border-2 { border: 2px solid #000; }
.border-4 { border: 4px solid #000; }
.border-b-4 { border-bottom: 4px solid #000; }
.border-t-4 { border-top: 4px solid #000; }
.border-y-4 { border-top: 4px solid #000; border-bottom: 4px solid #000; }
.border-l-2 { border-left: 2px solid #000; }
.border-white { border-color: #fff; }
.border-gray-800 { border-color: #1f2937; }

/* ===== Hard Shadow System ===== */
.hard-shadow {
  box-shadow: 4px 4px 0px 0px #000;
}

.hard-shadow-sm {
  box-shadow: 2px 2px 0px 0px #000;
}

.hard-shadow-hover {
  transition: all 0.2s ease;
}

.hard-shadow-hover:hover {
  box-shadow: 6px 6px 0px 0px #000;
  transform: translate(-2px, -2px);
}

/* ===== Sticker Badges ===== */
.sticker-badge {
  display: inline-block;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #FFD700;
  color: #111111;
  box-shadow: 3px 3px 0px 0px #000;
}

.sticker-badge-red {
  display: inline-block;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #E52630;
  color: #FFFFFF;
  box-shadow: 3px 3px 0px 0px #000;
}

/* ===== Buttons ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  transition: all 0.2s ease;
  background: #E52630;
  color: #FFFFFF;
  min-height: 48px;
  padding: 12px 32px;
  box-shadow: 4px 4px 0px 0px #000;
  border: 2px solid #000;
  cursor: pointer;
  font-size: 14px;
}

.btn-primary:hover {
  box-shadow: 6px 6px 0px 0px #000;
  transform: translate(-2px, -2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  transition: all 0.2s ease;
  background: #FFD700;
  color: #111111;
  min-height: 48px;
  padding: 12px 32px;
  box-shadow: 4px 4px 0px 0px #000;
  border: 2px solid #000;
  cursor: pointer;
  font-size: 14px;
}

.btn-secondary:hover {
  box-shadow: 6px 6px 0px 0px #000;
  transform: translate(-2px, -2px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  transition: all 0.2s ease;
  background: #FFFFFF;
  color: #111111;
  min-height: 48px;
  padding: 12px 32px;
  box-shadow: 4px 4px 0px 0px #000;
  border: 2px solid #000;
  cursor: pointer;
  font-size: 14px;
}

.btn-white:hover {
  box-shadow: 6px 6px 0px 0px #000;
  transform: translate(-2px, -2px);
}

.btn-lg {
  font-size: 18px;
  padding: 16px 40px;
}

.w-full { width: 100%; }

/* ===== Cards ===== */
.card-brutal {
  background: #fff;
  border: 2px solid #000;
  padding: 32px;
  box-shadow: 4px 4px 0px 0px #000;
}

@media (min-width: 768px) {
  .card-brutal {
    padding: 48px;
  }
}

.card-brutal:hover {
  box-shadow: 6px 6px 0px 0px #000;
  transform: translate(-2px, -2px);
  transition: all 0.2s ease;
}

/* ===== Header/Navigation ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 4px solid #000;
}

.header-nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .header-nav { padding: 0 24px; }
}

@media (min-width: 1024px) {
  .header-nav { padding: 0 32px; }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Replace your existing .logo-icon code with this block */

.logo-icon {
  width: 72px !important;           /* Let the image define the width */
  height: 72px !important;          /* Sets a fixed height for the header */
  background: transparent !important; /* Forces the red background to be invisible */
  border: none !important;          /* Removes the black border */
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: none !important;      /* Removes any shadow effects */
}

/* Add this to make sure the image inside fits perfectly */
.logo-icon img {
  height: 100% !important;
  width: auto !important;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: none;
  align-items: center;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
}

.nav-link {
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  transition: color 0.2s ease;
  color: #111111;
}

.nav-link:hover {
  color: #E52630;
}

.nav-link.active {
  color: #E52630;
}

.nav-link-border {
  border-left: 2px solid #000;
}

.mobile-menu-btn {
  display: flex;
  width: 48px;
  height: 48px;
  background: #FFD700;
  border: 2px solid #000;
  align-items: center;
  justify-content: center;
  box-shadow: 4px 4px 0px 0px #000;
  cursor: pointer;
}

@media (min-width: 768px) {
  .mobile-menu-btn { display: none; }
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
  color: #111111;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 80px;
  background: #fff;
  z-index: 40;
  border-top: 4px solid #000;
}

.mobile-menu.open {
  display: block;
}

@media (min-width: 768px) {
  .mobile-menu { display: none !important; }
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 8px;
}

.mobile-nav-link {
  display: block;
  padding: 16px 24px;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  border: 2px solid #000;
  background: #fff;
  color: #111111;
}

.mobile-nav-link:hover {
  background: #F4F3F5;
}

.mobile-nav-link.active {
  background: #E52630;
  color: #fff;
}

/* ===== Hero Sections ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 16px;
}

@media (min-width: 640px) {
  .hero-content { padding: 96px 24px; }
}

@media (min-width: 768px) {
  .hero-content { padding: 160px 24px; }
}

@media (min-width: 1024px) {
  .hero-content { padding: 160px 32px; }
}

.hero-inner {
  max-width: 896px;
}

.hero-centered {
  max-width: 896px;
  text-align: center;
  margin: 0 auto;
}

/* ===== Section Styles ===== */
.section {
  padding: 80px 0;
}

@media (min-width: 768px) {
  .section { padding: 128px 0; }
}

.section-header {
  padding: 96px 0;
}

@media (min-width: 768px) {
  .section-header { padding: 160px 0; }
}

/* ===== Icon Boxes ===== */
.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #000;
}

.icon-box-sm {
  width: 40px;
  height: 40px;
}

.icon-box-md {
  width: 56px;
  height: 56px;
}

.icon-box-lg {
  width: 64px;
  height: 64px;
}

.icon-box-xl {
  width: 80px;
  height: 80px;
}

.icon-box svg {
  width: 50%;
  height: 50%;
}

/* ===== Form Styles ===== */
.form-input {
  width: 100%;
  padding: 16px 24px;
  border: 2px solid #000;
  background: #fff;
  color: #111111;
  font-weight: 500;
  font-size: 16px;
}

.form-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px #E52630;
}

.form-input::placeholder {
  color: rgba(17, 17, 17, 0.5);
}

.form-label {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 8px;
}

.form-select {
  width: 100%;
  padding: 16px 24px;
  border: 2px solid #000;
  background: #fff;
  color: #111111;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
}

.form-select:focus {
  outline: none;
  box-shadow: 0 0 0 2px #E52630;
}

.form-textarea {
  width: 100%;
  padding: 16px 24px;
  border: 2px solid #000;
  background: #fff;
  color: #111111;
  font-weight: 500;
  font-size: 16px;
  resize: none;
}

.form-textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px #E52630;
}

/* ===== Footer ===== */
.footer {
  background: #111111;
  color: #fff;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 16px;
}

@media (min-width: 640px) {
  .footer-content { padding: 64px 24px; }
}

@media (min-width: 768px) {
  .footer-content { padding: 96px 24px; }
}

@media (min-width: 1024px) {
  .footer-content { padding: 96px 32px; }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-title {
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  margin-bottom: 24px;
}

.footer-link {
  color: #d1d5db;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #E52630;
}

.footer-bottom {
  border-top: 1px solid #1f2937;
  margin-top: 48px;
  padding-top: 32px;
}

.footer-initiative {
  text-align: center;
  margin-bottom: 24px;
  font-size: 14px;
  color: #9ca3af;
}

.footer-initiative strong {
  color: #FFD700;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (min-width: 768px) {
  .footer-legal {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-legal-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
}

.footer-legal-links a {
  color: #6b7280;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: #E52630;
}

/* ===== News Ticker ===== */
.news-ticker-wrapper {
  max-width: 100%;
  overflow: hidden;
}

.news-ticker-bar {
  background: #111111;
  color: #fff;
  padding: 16px 0;
  border-top: 4px solid #000;
  border-bottom: 4px solid #000;
}

.news-ticker {
  display: flex;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}

@media (max-width: 768px) {
  .news-ticker {
    animation: ticker 40s linear infinite;
  }
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.news-ticker-item {
  margin: 0 48px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.pulse-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #E52630;
  margin-right: 16px;
  animation: pulse-live 2s ease-in-out infinite;
}

@keyframes pulse-live {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ===== Story Cards ===== */
.story-card {
  background: #fff;
  border: 2px solid #000;
  box-shadow: 4px 4px 0px 0px #000;
  transition: all 0.2s ease;
  overflow: hidden;
}

.story-card:hover {
  box-shadow: 6px 6px 0px 0px #000;
  transform: translate(-2px, -2px);
}

.story-card-image {
  height: 200px;
  background: linear-gradient(135deg, #E52630 0%, #FFD700 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-card-content {
  padding: 24px;
}

.story-card-badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #FFD700;
  color: #111111;
  margin-bottom: 12px;
}

.story-card-title {
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  color: #111111;
  margin-bottom: 12px;
  line-height: 1.3;
}

.story-card-excerpt {
  color: rgba(17, 17, 17, 0.7);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.story-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: rgba(17, 17, 17, 0.6);
}

.story-card-meta svg {
  width: 14px;
  height: 14px;
}

/* ===== Filter Buttons ===== */
.filter-btn {
  padding: 12px 20px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 14px;
  border: 2px solid #000;
  transition: all 0.2s ease;
  min-height: 48px;
  background: #fff;
  color: #111111;
  cursor: pointer;
}

.filter-btn:hover {
  background: #F4F3F5;
}

.filter-btn.active {
  background: #FFD700;
  box-shadow: 4px 4px 0px 0px #000;
}

/* ===== UK Map ===== */
.uk-map-container {
  background: #fff;
  border: 2px solid #000;
  padding: 40px;
  aspect-ratio: 3/4;
  box-shadow: 4px 4px 0px 0px #000;
}

/* ===== City Cards ===== */
.city-card {
  background: #fff;
  border: 2px solid #000;
  padding: 24px;
  transition: all 0.2s ease;
}

.city-card:hover {
  box-shadow: 6px 6px 0px 0px #000;
  transform: translate(-2px, -2px);
}

/* ===== Team Cards ===== */
.team-card {
  text-align: center;
}

.team-avatar {
  width: 112px;
  height: 112px;
  background: #E52630;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  border: 2px solid #000;
  box-shadow: 4px 4px 0px 0px #000;
}

/* ===== Testimonial Cards ===== */
.testimonial-card {
  background: #fff;
  border: 2px solid #000;
  padding: 32px;
  box-shadow: 4px 4px 0px 0px #000;
}

@media (min-width: 768px) {
  .testimonial-card { padding: 48px; }
}

.testimonial-quote {
  font-size: 18px;
  color: #111111;
  line-height: 1.625;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .testimonial-quote { font-size: 20px; }
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: #E52630;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  border: 2px solid #000;
}

/* ===== Info Cards ===== */
.info-card {
  background: #F4F3F5;
  border: 2px solid #000;
  padding: 24px;
  box-shadow: 4px 4px 0px 0px #000;
}

/* ===== Stats ===== */
.stat-value {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .stat-value { font-size: 72px; }
}

.stat-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* ===== Divider ===== */
.divider {
  width: 96px;
  height: 4px;
  background: #E52630;
  margin: 0 auto;
}

/* ===== Responsive Utilities ===== */
@media (max-width: 639px) {
  .sm-hidden { display: none; }
}

@media (min-width: 640px) {
  .sm-inline { display: inline; }
  .sm-flex { display: flex; }
}

/* ===== Flex Shrink ===== */
.flex-shrink-0 {
  flex-shrink: 0;
}

/* ===== Z-index ===== */
.z-10 { z-index: 10; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* ===== Position ===== */
.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }
.fixed { position: fixed; }
.inset-0 { inset: 0; }

/* ===== Width/Height ===== */
.w-px { width: 1px; }
.h-8 { height: 32px; }
.h-20 { height: 80px; }
.h-24 { height: 96px; }
.h-32 { height: 128px; }

/* ===== Overflow ===== */
.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }

/* ===== Object Fit ===== */
.object-cover { object-fit: cover; }

/* ===== Transition ===== */
.transition-colors { transition: color 0.2s ease; }
.transition-all { transition: all 0.2s ease; }

/* ===== Visibility for Back Link ===== */
.back-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(17, 17, 17, 0.6);
  transition: color 0.2s ease;
}

.back-link:hover {
  color: #E52630;
}

.back-link svg {
  width: 16px;
  height: 16px;
}

/* ===== Spacer ===== */
.spacer {
  height: 96px;
  background: #fff;
}

@media (min-width: 768px) {
  .spacer { height: 128px; }
}

/* ===== Toast Notification ===== */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #111111;
  color: #fff;
  padding: 16px 24px;
  border: 2px solid #000;
  box-shadow: 4px 4px 0px 0px #000;
  z-index: 100;
  display: none;
}

.toast.show {
  display: block;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.toast-title {
  font-weight: 900;
  margin-bottom: 4px;
}

.toast-message {
  font-size: 14px;
  color: #d1d5db;
}

/* ===== AOS Animations ===== */
[data-aos] {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}
