/* Cooking page override: minimalistic white scroll-down arrow, fade-in only */
.scroll-down-arrow i {
  font-size: 1.5rem;
  color: #fff;
  opacity: 0;
  animation: arrow-fade-in 1.2s 0.8s forwards;
}
@keyframes arrow-fade-in {
  from { opacity: 0; transform: translateY(0); }
  to { opacity: 0.85; transform: translateY(0); }
}

/* Blog gallery image frame styles */
.cooking-blog-gallery {
  margin-top: 7rem !important;
  margin-bottom: 3.5rem !important;
  max-width: 900px;
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
  justify-content: center;
}
.cooking-work-frame {
  width: 260px;
  height: 260px;
  background: rgba(255,255,255,0.04);
  border: 2px dashed #fff2;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.10);
  transition: border-color 0.2s, box-shadow 0.2s;
  margin-top: 0;
}
.cooking-work-frame:hover {
  border-color: #fff6;
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.18);
}
.cooking-work-img-placeholder {
  color: #fff8;
  font-size: 1.1rem;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  letter-spacing: 0.04em;
  text-align: center;
}
.cooking-social-icon:hover {
  color: #388bfd !important;
  opacity: 1 !important;
}

/* Bring gallery and social section lower */
.cooking-social-section {
  margin-top: 3.5rem !important;
}

/* Allow scrolling: make hero-split fixed height and push main content down */
.cooking-page .hero-split {
  height: 100vh;
  min-height: 600px;
  position: relative;
  z-index: 1;
}
.cooking-main-content {
  margin-top: 0;
  padding-top: 4rem;
}

@media (max-width: 900px) {
  .cooking-work-frame {
    width: 90vw;
    height: 40vw;
    min-height: 180px;
    max-width: 98vw;
  }
  .cooking-main-content {
    padding-top: 2rem;
  }
} 