/* ── CC Étterem · Aktuális Étlap ── candlelit menu aesthetic ── */

.cc-etlap {
  background: #1C1812;
  padding: 96px 24px 80px;
  font-family: 'Jost', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Dekoratív ghost "Menü" háttérszöveg */
.cc-etlap::after {
  content: 'Menü';
  position: absolute;
  bottom: -0.12em;
  right: -0.04em;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(200px, 28vw, 420px);
  color: rgba(168, 149, 122, 0.045);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ── Belépő animációk ── */
.cc-etlap__header,
.cc-etlap__col,
.cc-etlap__footer {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
}

.cc-etlap--in .cc-etlap__header      { opacity: 1; transform: none; transition-delay: 0s; }
.cc-etlap--in .cc-etlap__col--left   { opacity: 1; transform: none; transition-delay: 0.2s; }
.cc-etlap--in .cc-etlap__col--right  { opacity: 1; transform: none; transition-delay: 0.35s; }
.cc-etlap--in .cc-etlap__footer      { opacity: 1; transform: none; transition-delay: 0.5s; }

/* ── Header ── */
.cc-etlap__header {
  text-align: center;
  margin-bottom: 60px;
}

.cc-etlap__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(168, 149, 122, 0.65);
  margin: 0 0 20px;
}

.cc-etlap__eyebrow-rule {
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(168, 149, 122, 0.4);
  flex-shrink: 0;
}

/* Script "Menü" cím */
.cc-etlap__meniu {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(51px, 7.5vw, 87px);
  color: #A8957A;
  line-height: 1;
  margin: 0;
  letter-spacing: -0.01em;
}

/* ── Kétoszlopos rács ── */
.cc-etlap__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 920px;
  margin: 0 auto 52px;
  position: relative;
}

/* Hajszálvékony arany elválasztó */
.cc-etlap__grid::before {
  content: '';
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 50%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(168, 149, 122, 0.22) 15%,
    rgba(168, 149, 122, 0.22) 85%,
    transparent
  );
  transform: translateX(-50%);
  pointer-events: none;
}

.cc-etlap__col {
  padding: 0 52px;
}

.cc-etlap__col--left  { padding-left: 0; }
.cc-etlap__col--right { padding-right: 0; }

/* ── Kategória ── */
.cc-etlap__category {
  margin-bottom: 44px;
}

.cc-etlap__category:last-child {
  margin-bottom: 0;
}

.cc-etlap__cat-label {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #A8957A;
  margin: 0 0 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(168, 149, 122, 0.28);
}

/* ── Fogás sorok ── */
.cc-etlap__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cc-etlap__item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(168, 149, 122, 0.09);
}

.cc-etlap__item:last-child {
  border-bottom: none;
}

.cc-etlap__item--special .cc-etlap__name {
  color: rgba(168, 149, 122, 0.8);
  font-style: italic;
}

.cc-etlap__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: #F7F2EC;
  line-height: 1.45;
  flex: 1;
}

/* Allergén jelölők */
.cc-etlap__tag {
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-size: 9px;
  letter-spacing: 0.5px;
  color: rgba(168, 149, 122, 0.55);
  margin-left: 3px;
  vertical-align: middle;
}

.cc-etlap__price {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #A8957A;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.5px;
  min-width: 60px;
  text-align: right;
}

/* ── Footer ── */
.cc-etlap__footer {
  max-width: 920px;
  margin: 0 auto;
}

.cc-etlap__footer-rule {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(168, 149, 122, 0.22) 20%,
    rgba(168, 149, 122, 0.22) 80%,
    transparent
  );
  margin-bottom: 28px;
}

.cc-etlap__footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 36px;
}

.cc-etlap__note {
  font-size: 11px;
  font-weight: 300;
  font-style: italic;
  color: rgba(247, 242, 236, 0.32);
  line-height: 1.85;
  margin: 0;
}

.cc-etlap__allergen-legend {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: right;
  flex-shrink: 0;
}

.cc-etlap__allergen-legend span {
  font-size: 9px;
  font-weight: 400;
  color: rgba(168, 149, 122, 0.45);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* PDF gomb */
.cc-etlap__pdf-wrap {
  text-align: center;
}

.cc-etlap__pdf {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(168, 149, 122, 0.7);
  text-decoration: none;
  border: 1px solid rgba(168, 149, 122, 0.25);
  padding: 13px 32px;
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.cc-etlap__pdf:hover,
.cc-etlap__pdf:visited:hover {
  color: #F7F2EC !important;
  border-color: rgba(247, 242, 236, 0.35);
  background: rgba(168, 149, 122, 0.08);
}

/* ── Mobil ── */
@media (max-width: 680px) {
  .cc-etlap { padding: 72px 20px 60px; }
  .cc-etlap__meniu { font-size: clamp(60px, 16vw, 80px); }
  .cc-etlap__grid {
    grid-template-columns: 1fr;
    margin-bottom: 36px;
  }
  .cc-etlap__grid::before { display: none; }
  .cc-etlap__col { padding: 0; }
  .cc-etlap__col--left {
    border-bottom: 1px solid rgba(168, 149, 122, 0.15);
    padding-bottom: 36px;
    margin-bottom: 36px;
  }
  .cc-etlap__footer-inner {
    flex-direction: column;
    gap: 20px;
  }
  .cc-etlap__allergen-legend { text-align: left; }
}


/* ── Étlap intro (dark bg-on belül, főcím fölött) ── */
.cc-etlap__intro {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 72px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1),
              transform 0.9s cubic-bezier(0.16,1,0.3,1);
}

.cc-etlap--in .cc-etlap__intro { opacity: 1; transform: none; }

.cc-etlap__intro-heading {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(30px, 4.5vw, 56px);
  color: #F7F2EC;
  line-height: 1.15;
  margin: 0 0 28px;
  letter-spacing: -0.02em;
}

.cc-etlap__intro-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 24px;
}

.cc-etlap__intro-orn-rule {
  display: block;
  width: 44px;
  height: 1px;
  background: rgba(168, 149, 122, 0.4);
  flex-shrink: 0;
}

.cc-etlap__intro-body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.85;
  color: rgba(247, 242, 236, 0.52);
  margin: 0 auto;
  max-width: 520px;
}

@media (max-width: 680px) {
  .cc-etlap__intro { margin-bottom: 52px; }
}
