/* MAIN CSS - Loaded via <link> with defer */

/* === Sections === */
section { padding: 5rem 0; }

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-header p { color: var(--text-muted); font-size: 1.1rem; margin-top: 0.75rem; }

.section-bg { background: var(--bg-secondary); }

.section-blue {
  background: var(--color-blue);
  position: relative;
}

.section-blue-gradient {
  background: var(--bg-secondary);
}

/* === Grid System === */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

/* === Service Cards === */
.card {
  background: var(--bg-cards);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2.5rem;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s, box-shadow 0.4s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Card Icon Box */
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.card-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
}

.card-blue .card-icon {
  background: rgba(0, 141, 228, 0.1);
  color: var(--color-blue-light);
}

.card:hover .card-icon, a.card:hover .card-icon, .card-clickable:hover .card-icon {
  transform: scale(1.08);
}

/* Hover effects strictly ONLY for clickable cards */
a.card, .card-clickable {
  cursor: pointer;
  color: var(--text-main);
  text-decoration: none;
}

a.card:hover, .card-clickable:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
  box-shadow: var(--card-shadow-hover);
}

a.card-blue:hover, .card-blue.card-clickable:hover {
  border-color: var(--color-blue-light);
  box-shadow: var(--card-shadow-hover);
}

a.card h3, .card-clickable h3 { color: var(--heading-color); }
a.card p, .card-clickable p { color: var(--text-muted); }

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.card-inline-icon {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.card-blue .card-inline-icon {
  color: var(--color-blue-light);
}
.card p { color: var(--text-muted); flex-grow: 1; margin-bottom: 1.5rem; line-height: 1.7; }

.card-link {
  color: var(--color-primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.card-blue .card-link {
  color: var(--color-blue-light);
}

.card-clickable:hover .card-link, a.card:hover .card-link { gap: 0.75rem; color: var(--color-primary); }
.card-blue.card-clickable:hover .card-link, a.card-blue:hover .card-link { color: var(--color-blue-light); }
.card-link::after { content: ' →'; }

/* === Process Steps === */
.step-number {
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lilita One', sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(213, 52, 54, 0.2);
}

/* Animated Process Flow Section (Inspiration roehler.nrw) */
.process-flow-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}

@media (max-width: 992px) {
  .process-flow-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.25rem 1.75rem 1.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.process-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.process-step-kicker {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.process-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 141, 228, 0.12);
  color: var(--color-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-icon-wrapper-red {
  background: rgba(213, 52, 54, 0.12);
  color: var(--color-primary);
}

.process-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

.process-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
  color: var(--heading-color);
}

.process-subheadline {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-blue-light);
  margin-bottom: 1rem;
}

/* High-Res Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 1.5rem;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(8px);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: -10px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-image-container {
  position: relative;
  max-width: 100%;
  max-height: 80vh;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #000;
  cursor: crosshair;
}

.lightbox-zoom-lens {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 4px rgba(0, 141, 228, 0.6), 0 20px 40px rgba(0, 0, 0, 0.75);
  pointer-events: none;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 10;
}

.lightbox-zoom-lens.active {
  opacity: 1;
  transform: scale(1);
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
}

.lightbox-caption {
  margin-top: 1rem;
  text-align: center;
  color: #ffffff;
}

.lightbox-title {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
}

.lightbox-specs {
  display: block;
  font-size: 0.85rem;
  color: #94a3b8;
  margin-top: 0.25rem;
}

.lightbox-zoom-hint {
  display: block;
  font-size: 0.8rem;
  color: var(--color-blue-light);
  margin-top: 0.4rem;
  font-weight: 600;
}

/* Testbilder Quality Showcase Cards */
.testbilder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
}

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

.testbild-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.testbild-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--color-blue-light);
}

.testbild-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #0f172a;
}

.testbild-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.testbild-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.testbild-overlay-zoom {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  gap: 0.5rem;
}

.testbild-card:hover .testbild-overlay-zoom {
  opacity: 1;
}

.testbild-info {
  padding: 1.25rem 1.5rem;
}

.testbild-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
  color: var(--heading-color);
}

.testbild-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.process-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.process-card-footer {
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--heading-color);
}

/* Curved Animated Arrow */
.process-arrow-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.5rem;
}

.process-curved-arrow {
  width: 90px;
  height: 40px;
  overflow: visible;
}

.arrow-dash-line {
  stroke-dasharray: 6 4;
  animation: dashFlow 1.5s linear infinite;
}

@keyframes dashFlow {
  from { stroke-dashoffset: 20; }
  to { stroke-dashoffset: 0; }
}

@media (max-width: 992px) {
  .process-arrow-cell {
    display: none;
  }
}

.process-cta-box {
  margin-top: 3.5rem;
  text-align: center;
}

.process-cta-box .btn {
  padding: 1rem 2.25rem;
  font-size: 1.1rem;
}

.process-cta-note {
  margin-top: 0.85rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* === Tables === */
.table-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
  background: var(--bg-cards);
  border: 1px solid var(--border);
  border-radius: 12px;
}

table { width: 100%; border-collapse: collapse; }
th, td { padding: 1.25rem 1.5rem; text-align: left; border-bottom: 1px solid var(--border); }
th {
  color: var(--heading-color);
  background: rgba(0, 141, 228, 0.08);
  font-family: 'Lilita One', sans-serif;
  font-weight: 400;
}
tr:last-child td { border-bottom: none; }

/* === Pricing === */
.pricing-tier {
  background: var(--bg-cards);
  padding: 3rem 2rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.pricing-tier.featured {
  border-color: var(--color-primary);
  box-shadow: 0 0 40px rgba(213, 52, 54, 0.15);
  position: relative;
}

.pricing-tier.featured::before {
  content: 'Beliebt';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: white;
  padding: 0.3rem 1.25rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: bold;
}

.price {
  font-size: 3rem;
  font-family: 'Lilita One', sans-serif;
  color: var(--heading-color);
  margin: 1.5rem 0 0.5rem;
}

.price-suffix { font-size: 1rem; color: var(--text-muted); font-family: 'Roboto', sans-serif; }

.pricing-tier ul { list-style: none; text-align: left; margin: 2rem 0; flex-grow: 1; }
.pricing-tier ul li {
  padding: 0.6rem 0;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.pricing-tier ul li::before { content: '✓'; color: var(--color-primary); font-weight: bold; font-size: 1.1rem; }

/* === FAQ / Accordion === */
.faq-section { max-width: 800px; margin: 0 auto; }

details {
  background: var(--bg-cards);
  margin-bottom: 0.75rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s;
}

details:hover, details[open] { border-color: var(--color-primary); }

summary {
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-family: 'Roboto', sans-serif;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s;
  flex-shrink: 0;
}
details[open] summary::after { transform: rotate(45deg); }

.details-content { padding: 0 1.5rem 1.5rem; color: var(--text-muted); line-height: 1.8; }

/* === Forms === */
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; color: var(--text-main); }

input, textarea, select {
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  color: var(--text-main);
  border-radius: 8px;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(213, 52, 54, 0.15);
}

textarea { min-height: 150px; resize: vertical; }
select { appearance: none; cursor: pointer; }

.hidden { display: none !important; }

/* === Stats / Counter === */
.stats-section-dark {
  background: #0f172a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3.5rem 0 3rem;
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  border: none;
  margin: 0;
  padding: 0;
}

.stat-item { text-align: center; }
.stat-number {
  font-size: 3rem;
  font-family: 'Lilita One', sans-serif;
  color: #ffffff !important; /* Alle Zahlen in PURE WEISS */
}

.stat-number-red {
  color: #ffffff !important;
}
.stat-label { color: rgba(255, 255, 255, 0.85); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-top: 0.25rem; }

/* === USP Section (Information panels - static without hover animation) === */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.usp-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--bg-cards);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}

.usp-check {
  width: 36px;
  height: 36px;
  background: rgba(213, 52, 54, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
  font-weight: bold;
  font-size: 1.1rem;
}

/* === CTA Banner === */
.cta-banner, .cta-banner-blue {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4rem 2rem;
  border-radius: 16px;
  text-align: center;
  margin: 3rem 0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.cta-banner h2, .cta-banner-blue h2 { color: #ffffff; margin-bottom: 1rem; }
.cta-banner p, .cta-banner-blue p { color: #94a3b8; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-banner .btn, .cta-banner-blue .btn { background: var(--color-primary); color: #ffffff; border-color: var(--color-primary); }
.cta-banner .btn:hover, .cta-banner-blue .btn:hover { background: var(--color-primary-hover); border-color: var(--color-primary-hover); transform: translateY(-2px); box-shadow: var(--glow-red); color: #ffffff; }

/* === Image showcase === */
.image-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.image-showcase img {
  border-radius: 12px;
  aspect-ratio: 1;
  object-fit: cover;
  border: 2px solid var(--border);
}

/* === Footer (Dunkler eleganter Abschluss) === */
footer {
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  background: #0f172a;
  color: #f8fafc;
  margin-top: 0;
}

.footer-col h4 { font-size: 1.1rem; margin-bottom: 1.25rem; color: #ffffff; }
.footer-col p { color: #94a3b8; line-height: 1.7; font-size: 0.95rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul li a { color: #94a3b8; font-size: 0.95rem; }
.footer-col ul li a:hover { color: #ffffff; }

.footer-bottom {
  text-align: center;
  color: #94a3b8;
  padding-top: 2rem;
  border-top: 1px solid #1e293b;
  font-size: 0.85rem;
}

.footer-bottom a { color: #cbd5e1; }
.footer-bottom a:hover { color: #ffffff; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 { font-size: 1.1rem; margin-bottom: 1.25rem; color: var(--color-primary); }
.footer-col p { color: var(--text-muted); line-height: 1.7; font-size: 0.95rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.95rem; }
.footer-col ul li a:hover { color: var(--color-primary); }

.footer-bottom {
  text-align: center;
  color: var(--text-muted);
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
}

.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--color-primary); }

/* === Scroll Animations === */
.animate-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* === Breadcrumbs === */
.breadcrumbs {
  padding: 1rem 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--color-primary); }
.breadcrumbs span { margin: 0 0.5rem; }

/* === Two Column Layout === */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

/* === Responsive === */
@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  section { padding: 3rem 0; }
  .grid, .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { gap: 2rem; }
  .cta-banner { padding: 3rem 1.5rem; }
  .usp-grid { grid-template-columns: 1fr; }
}

/* === Instagram Section (50/50 Layout) === */
.instagram-2col-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  background: var(--bg-cards);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--card-shadow);
}

.instagram-left-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.instagram-right-col {
  width: 100%;
}

.instagram-2x2-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (max-width: 992px) {
  .instagram-2col-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2rem;
  }
}

.instagram-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--card-shadow);
}

.instagram-profile-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

.instagram-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  flex-shrink: 0;
}

.instagram-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--bg-cards);
}

.instagram-info {
  flex-grow: 1;
}

.instagram-handle-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.instagram-handle {
  font-family: 'Lilita One', sans-serif;
  font-size: 1.6rem;
  color: var(--heading-color);
}

.instagram-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 0.75rem;
}

.instagram-stat {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.instagram-stat strong {
  color: var(--heading-color);
  font-weight: 700;
}

.instagram-bio {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.instagram-post {
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid var(--border);
  text-decoration: none;
}

.instagram-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.instagram-post-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.82);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: white;
  padding: 1rem;
  text-align: center;
}

.instagram-overlay-stats {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
}

.instagram-overlay-stats span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.instagram-overlay-action {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.instagram-post:hover .instagram-post-overlay {
  opacity: 1;
}

.instagram-post:hover img {
  transform: scale(1.05);
}
