@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
/* Paderf Tech — Theme
   Palette alignée avec EcoStepBurger:
   --primary: #327887 (turquoise), --accent: #FD991A (orange)
   Police: Inter (moderne, professionnelle, excellente lisibilité)
*/

:root {
  --background: #ffffff;
  --foreground: #0f172a;

  --muted: #f3f4f6;
  --muted-foreground: #64748b;

  --primary: #327887;
  --primary-foreground: #ffffff;

  --accent: #FD991A;
  --accent-foreground: #3a2200;

  --ring: rgba(50, 120, 135, 0.45);

  --container: 1280px;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;

  /* Typography scale */
  --fs-xs: 12px;
  --fs-sm: 14px;
  --fs-md: 18px;
  --fs-lg: 20px;
  --fs-xl: 24px;
  --fs-2xl: 32px;
  --fs-3xl: 44px;
  --fs-4xl: 64px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #0b1020;
    --foreground: #e5e7eb;

    --muted: #111827;
    --muted-foreground: #9ca3af;

    --primary: #3A8D9F;
    --primary-foreground: #0b1020;

    --accent: #FFB45A;
    --accent-foreground: #0b1020;

    --ring: rgba(58, 141, 159, 0.5);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  font-size: var(--fs-md);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color .15s ease, background-color .15s ease, opacity .15s ease;
}

button {
  font: inherit;
  border: 1px solid transparent;
  cursor: pointer;
  transition: color .15s ease, background-color .15s ease, border-color .15s ease, opacity .15s ease, transform .12s ease;
}

a:focus-visible,
button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--background), 0 0 0 4px var(--primary);
  border-radius: var(--radius-sm);
}

/* Layout */
.container {
  max-width: var(--container);
  padding: 0 20px;
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section--muted {
  background: var(--muted);
}

.section__header {
  margin-bottom: 28px;
}

.section__eyebrow {
  display: inline-block;
  font-size: var(--fs-sm);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 8px;
}

.section__title {
  font-size: var(--fs-3xl);
  line-height: 1.15;
  margin: 0 0 8px 0;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Smaller title for Partners section */
.partners-section .section__title {
  font-size: var(--fs-2xl);
}

.section__subtitle {
  font-size: var(--fs-lg);
  color: var(--muted-foreground);
  margin: 0;
}

/* Header / Nav */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid rgba(100,116,139,0.15);
}
@media (prefers-color-scheme: dark) {
  .header {
    background: rgba(11,16,32,0.7);
    border-bottom-color: rgba(156,163,175,0.18);
  }
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: 80px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: var(--fs-xl);
}

.nav__brand img {
  width: 64px;
  height: 64px;
  border-radius: 0;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
}
@media (min-width: 1024px) {
  .nav__brand img {
    width: 80px;
    height: 80px;
  }
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Mobile menu toggle button */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 50;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--foreground);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }
  
  .nav__links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--background);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid rgba(100,116,139,0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    z-index: 45;
  }
  
  .nav__links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav__link,
  .nav__cta {
    width: 100%;
    text-align: center;
  }
}

.nav__link {
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--muted-foreground);
}
.nav__link:hover {
  color: var(--foreground);
  background: rgba(100,116,139,0.12);
}
.nav__cta {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 10px 14px;
  border-radius: 9999px;
  font-weight: 600;
  box-shadow: 0 4px 14px -6px var(--ring);
  border: 1px solid rgba(50,120,135,0.18);
}
.nav__cta:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

/* Hero */
.hero {
  padding: 88px 0 64px 0;
  min-height: 520px;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(50,120,135,0.20), transparent 60%);
}

.hero__content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero__content {
    grid-template-columns: 1fr;
  }
}

.hero__title {
  font-size: clamp(40px, 6vw, 60px);
  line-height: 1.05;
  margin: 0 0 12px 0;
}

.hero__subtitle {
  font-size: var(--fs-xl);
  color: var(--muted-foreground);
  margin: 0 0 20px 0;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Andromo-like feature strip (pills) */
.feature-strip {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.feature-strip__item {
  background: var(--muted);
  border: 1px solid rgba(100,116,139,0.18);
  color: var(--foreground);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: var(--fs-sm);
}
@media (prefers-color-scheme: dark) {
  .feature-strip__item {
    background: #111827;
    border-color: rgba(156,163,175,0.18);
  }
}

/* Showcase frame for hero preview image */
.showcase {
  background: var(--background);
  border: 1px solid rgba(100,116,139,0.18);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 20px 60px -30px rgba(2,6,23,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}
.showcase__img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  display: block;
}

/* Centered hero variant */
.hero--center .hero__content {
  align-items: center;
}
.hero--center .hero__title {
  text-align: left;
}
@media (max-width: 900px) {
  .hero--center .hero__title,
  .hero--center .hero__subtitle {
    text-align: left;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
}

.btn--primary {
  background: var(--primary);
  color: var(--primary-foreground);
  border: 1px solid rgba(50,120,135,0.18);
  box-shadow: 0 10px 30px -12px var(--ring);
}
.btn--primary:hover { filter: brightness(1.05); transform: translateY(-1px); }

.btn--accent {
  background: var(--accent);
  color: #ffffff;
  border: 1px solid rgba(253,153,26,0.25);
  box-shadow: 0 10px 30px -12px rgba(253,153,26,0.35);
}
.btn--accent:hover { filter: brightness(1.05); transform: translateY(-1px); }

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 1000px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--background);
  border: 1px solid rgba(100,116,139,0.18);
  border-radius: var(--radius-lg);
  padding: 18px;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(50,120,135,0.28);
  box-shadow: 0 16px 32px -24px rgba(2,6,23,0.35);
}

/* Elevated card variant with better shadow and structure */
.card--elevated {
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.card--elevated:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: var(--primary);
}

.card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card__thumb {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #f9fafb;
  border: 1px solid rgba(100,116,139,0.18);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

@media (prefers-color-scheme: dark) {
  .card__thumb {
    background: #1f2937;
  }
}

.card__thumb img {
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
  display: block;
}

.card__thumb--empty {
  background: linear-gradient(135deg, rgba(50,120,135,0.1) 0%, rgba(253,153,26,0.1) 100%);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card__thumb-placeholder {
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--muted-foreground);
  text-align: center;
  padding: 20px;
}

.card__title {
  font-size: var(--fs-xl);
  margin: 0 0 8px 0;
  font-weight: 700;
}

.card__text {
  color: var(--muted-foreground);
  margin: 0 0 16px 0;
  flex: 1;
  line-height: 1.6;
}

.card__button {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

/* Lists with checks */
.list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0;
}
.list li::before {
  content: "✔";
  color: var(--accent);
  font-weight: 700;
  margin-top: 3px;
}

/* Partner strip */
.partners {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
  justify-items: center;
}
@media (max-width: 900px) {
  .partners { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .partners { grid-template-columns: repeat(2, 1fr); }
}
.partner__logo {
  opacity: 0.9;
  transition: opacity .15s ease, transform .12s ease;
  max-height: 72px;
}
.partner__logo:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* Lightbox */
.lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.lightbox-backdrop.active { display: flex; }
.lightbox-backdrop .lightbox-image {
  max-width: 90vw;
  max-height: 90vh;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  border-radius: 8px;
}
.zoomable { cursor: zoom-in; }

/* Footer */
.footer {
  border-top: 1px solid rgba(100,116,139,0.15);
  padding: 28px 0;
  color: var(--muted-foreground);
  background: linear-gradient(180deg, transparent, rgba(100,116,139,0.08));
}
.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.footer a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-18 { margin-bottom: 18px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.grid-2 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
}

/* Scroll reveal animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.scroll-reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger animations for cards */
.scroll-reveal:nth-child(1) { transition-delay: 0.1s; }
.scroll-reveal:nth-child(2) { transition-delay: 0.2s; }
.scroll-reveal:nth-child(3) { transition-delay: 0.3s; }
.scroll-reveal:nth-child(4) { transition-delay: 0.4s; }
.scroll-reveal:nth-child(5) { transition-delay: 0.5s; }
.scroll-reveal:nth-child(6) { transition-delay: 0.6s; }

/* Enhanced CTA styles */
.btn--primary,
.btn--accent {
  position: relative;
  overflow: hidden;
}

.btn--primary::before,
.btn--accent::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn--primary:hover::before,
.btn--accent:hover::before {
  width: 300px;
  height: 300px;
}

/* Icon styles for inline SVG */
.icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
}

.icon-sm {
  width: 18px;
  height: 18px;
}

.icon-lg {
  width: 32px;
  height: 32px;
}

/* Feature cards with icons */
.feature-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--background);
  border: 1px solid rgba(100,116,139,0.18);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: 0 12px 24px -12px var(--ring);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(50,120,135,0.1);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.feature-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
}

.feature-card__content h3 {
  margin: 0 0 8px 0;
  font-size: var(--fs-lg);
}

.feature-card__content p {
  margin: 0;
  color: var(--muted-foreground);
  font-size: var(--fs-sm);
}

/* Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.stat-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--background);
  border: 1px solid rgba(100,116,139,0.18);
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: 0 12px 24px -12px var(--ring);
}

.stat-number {
  font-size: var(--fs-4xl);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: var(--fs-md);
  color: var(--muted-foreground);
  font-weight: 500;
}

/* Testimonials Section */
.testimonials-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto 32px auto;
  min-height: 200px;
}

.testimonial {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.testimonial.active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.testimonial__content {
  background: var(--background);
  border: 1px solid rgba(100,116,139,0.18);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}

.testimonial__quote {
  font-size: var(--fs-xl);
  line-height: 1.6;
  color: var(--foreground);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial__quote::before {
  content: '"';
  color: var(--primary);
  font-size: 48px;
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 4px;
}

.testimonial__quote::after {
  content: '"';
  color: var(--primary);
  font-size: 48px;
  line-height: 0;
  vertical-align: -0.4em;
  margin-left: 4px;
}

.testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial__author strong {
  color: var(--foreground);
  font-weight: 600;
}

.testimonial__author span {
  color: var(--muted-foreground);
  font-size: var(--fs-sm);
}

/* Ensure testimonial logos keep their aspect ratio and don't look stretched */
.testimonial__author .partner__logo,
.testimonial__author img {
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain;
  align-self: center;
  margin-bottom: 6px;
}

.testimonials-nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.testimonial-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(100,116,139,0.3);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.testimonial-btn:hover {
  background: rgba(100,116,139,0.5);
  transform: scale(1.2);
}

.testimonial-btn.active {
  background: var(--primary);
  transform: scale(1.3);
}

/* FAQ Section */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--background);
  border: 1px solid rgba(100,116,139,0.18);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--foreground);
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: rgba(100,116,139,0.05);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px 24px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 100;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
  }
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: -200px;
  left: 0;
  right: 0;
  background: var(--background);
  border-top: 1px solid rgba(100,116,139,0.18);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  padding: 20px;
  z-index: 90;
  transition: bottom 0.4s ease;
}

.cookie-consent.show {
  bottom: 0;
}

.cookie-consent__content {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-consent__content p {
  margin: 0;
  flex: 1;
  min-width: 250px;
  color: var(--muted-foreground);
}

.cookie-consent__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn--small {
  padding: 8px 16px;
  font-size: var(--fs-sm);
}

@media (max-width: 680px) {
  .cookie-consent__content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-consent__actions {
    width: 100%;
  }
  
  .cookie-consent__actions button {
    flex: 1;
  }
}

/* Glassmorphism effects */
.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

@media (prefers-color-scheme: dark) {
  .glass {
    background: rgba(17, 24, 39, 0.7);
    border: 1px solid rgba(75, 85, 99, 0.3);
  }
}

/* Loading attribute for lazy images */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded,
img[loading="lazy"]:not([src]) {
  opacity: 1;
}
