/* Page-owned styles for vyber-sefkuchare */

.chef-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--color-space-void);
}

.chef-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: chefHeroZoom 20s ease-out forwards;
}

@keyframes chefHeroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

.chef-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 15, 26, 0.6), rgba(10, 15, 26, 0.9));
  z-index: 1;
}

.chef-hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-inline: auto;
  padding-inline: var(--container-padding);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}

.chef-hero__content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  max-width: 20ch;
  margin-block-end: 0;
}

.chef-hero__lead {
  font-size: var(--text-body-size);
  max-width: 60ch;
  margin-block-end: 0;
}

.chef-hero__support {
  font-size: var(--text-small-size);
  color: var(--color-mist-blue);
  max-width: 60ch;
  margin-block-end: 0;
}

.chef-hero__cta {
  margin-block-start: var(--space-md);
}

.chef-philosophy {
  background-color: var(--color-space-void);
}

.chef-philosophy__grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-xl);
  align-items: center;
}

.chef-philosophy__text {
  min-width: 0;
}

.chef-philosophy__text h2 {
  margin-block-end: var(--space-md);
}

.chef-philosophy__text p {
  max-width: 70ch;
  margin-block-end: var(--space-md);
}

.chef-philosophy__signature {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: var(--text-h3-size);
  color: var(--color-mist-blue);
  margin-block-start: var(--space-md);
}

.chef-philosophy__figure {
  margin: 0;
  min-width: 0;
}

.chef-philosophy__image {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-medium);
  border: var(--border-subtle);
  filter: saturate(0.85) sepia(0.1) hue-rotate(190deg);
}

.chef-menu {
  background-color: var(--color-midnight-blue);
}

.chef-menu__heading {
  text-align: center;
  margin-block-end: var(--space-xl);
}

.chef-menu__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-xl);
}

.chef-menu__card {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  background: var(--surface-card-gradient);
  border: var(--border-subtle);
  border-radius: var(--radius-large);
  padding: var(--card-padding);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  min-width: 0;
}

.chef-menu__card-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.chef-menu__card-text h3 {
  margin-block-end: 0;
}

.chef-menu__card-text p {
  max-width: 60ch;
  margin-block-end: 0;
}

.chef-menu__list {
  list-style: none;
  padding-inline-start: 0;
  margin-block-end: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.chef-menu__list li {
  padding-inline-start: var(--space-lg);
  position: relative;
  color: var(--color-silver-white);
}

.chef-menu__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-mist-blue);
}

.chef-menu__figure {
  margin: 0;
  min-width: 0;
}

.chef-menu__image {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-medium);
  border: var(--border-subtle);
  filter: saturate(0.85) sepia(0.1) hue-rotate(190deg);
}

.chef-ingredients {
  background-color: var(--color-space-void);
}

.chef-ingredients__lead {
  max-width: 70ch;
  margin-block-end: var(--space-xl);
}

.chef-ingredients__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-lg);
}

.chef-ingredients__card {
  background: var(--surface-card-gradient);
  border: var(--border-subtle);
  border-radius: var(--radius-medium);
  padding: var(--card-padding);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.chef-ingredients__card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.chef-ingredients__icon {
  font-size: 2rem;
  line-height: 1;
  color: var(--color-mist-blue);
}

.chef-ingredients__card h3 {
  font-size: var(--text-h3-size);
  margin-block-end: 0;
}

.chef-ingredients__card p {
  font-size: var(--text-small-size);
  max-width: 50ch;
  margin-block-end: 0;
}

.chef-allergens {
  background-color: var(--color-midnight-blue);
}

.chef-allergens__container {
  max-width: 800px;
  margin-inline: auto;
  background: rgba(13, 27, 42, 0.8);
  border: var(--border-subtle);
  border-radius: var(--radius-large);
  padding: var(--card-padding);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.chef-allergens__container h2 {
  margin-block-end: var(--space-md);
}

.chef-allergens__container p {
  max-width: 70ch;
  margin-block-end: var(--space-md);
}

.chef-allergens__list {
  list-style: none;
  padding-inline-start: 0;
  margin-block-end: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.chef-allergens__list li {
  padding-inline-start: var(--space-lg);
  position: relative;
  color: var(--color-silver-white);
}

.chef-allergens__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-mist-blue);
}

.chef-quote {
  background-color: var(--color-space-void);
  position: relative;
}

.chef-quote::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(75, 0, 130, 0.25), transparent 70%);
  animation: chefQuoteGlow 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes chefQuoteGlow {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

.chef-quote__container {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
}

.chef-quote__blockquote {
  border-inline-start: none;
  padding-inline-start: 0;
  margin-block-end: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.chef-quote__blockquote p {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.4;
  font-style: italic;
  color: var(--color-silver-white);
  max-width: 50ch;
  margin-inline: auto;
  margin-block-end: 0;
}

.chef-quote__author {
  font-family: var(--font-heading);
  font-size: var(--text-h3-size);
  color: var(--color-mist-blue);
  font-style: italic;
}

.chef-cta {
  background: linear-gradient(145deg, var(--color-midnight-blue), rgba(75, 0, 130, 0.3));
}

.chef-cta__container {
  max-width: 600px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}

.chef-cta__container h2 {
  margin-block-end: 0;
}

.chef-cta__container p {
  max-width: 60ch;
  margin-block-end: 0;
}

.chef-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  margin-block-start: var(--space-md);
}

.chef-cta__btn {
  min-width: 200px;
}

.chef-cta__contact {
  font-size: var(--text-small-size);
  color: var(--color-mist-blue);
  margin-block-start: var(--space-sm);
}

.chef-cta__contact a {
  color: var(--color-mist-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.chef-cta__contact a:hover {
  color: var(--color-silver-white);
}

@media (max-width: 1024px) {
  .chef-ingredients__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .chef-hero {
    min-height: 80vh;
  }

  .chef-hero__content h1 {
    font-size: clamp(2.25rem, 8vw, 3rem);
  }

  .chef-hero__lead,
  .chef-hero__support {
    font-size: var(--text-small-size);
  }

  .chef-philosophy__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .chef-philosophy__text p {
    max-width: 100%;
  }

  .chef-philosophy__image {
    max-height: 300px;
  }

  .chef-menu__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .chef-menu__card {
    padding: var(--card-padding-mobile);
  }

  .chef-ingredients__grid {
    grid-template-columns: 1fr;
  }

  .chef-ingredients__card {
    padding: var(--card-padding-mobile);
  }

  .chef-allergens__container {
    padding: var(--card-padding-mobile);
  }

  .chef-quote__blockquote p {
    font-size: 1.5rem;
  }

  .chef-cta__actions {
    flex-direction: column;
    width: 100%;
  }

  .chef-cta__btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .chef-hero__content {
    padding-inline: var(--space-md);
  }

  .chef-hero__content h1 {
    font-size: 2rem;
  }

  .chef-hero__lead,
  .chef-hero__support {
    font-size: 0.875rem;
  }

  .chef-philosophy__signature {
    font-size: 1.25rem;
  }

  .chef-menu__heading {
    font-size: 1.75rem;
  }

  .chef-ingredients__lead {
    font-size: var(--text-small-size);
  }

  .chef-quote__blockquote p {
    font-size: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .chef-hero__image {
    animation: none;
  }

  .chef-quote::before {
    animation: none;
  }

  .chef-ingredients__card,
  .chef-menu__card,
  .chef-cta__btn,
  .chef-hero__cta {
    transition: none;
  }
}
