/* ── CC Étterem Hero ── cinematic, szöveg + CTA ── */

.cc-eth {
  position: relative;
  height: 100svh;
  min-height: 600px;
  padding-top: 100px;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1C1812;
  font-family: 'Jost', sans-serif;
}

.cc-eth__bg {
  position: absolute;
  inset: -6%;
  background-size: cover;
  background-position: center 30%;
  background-color: #1C1812;
  will-change: transform;
  animation: cc-eth-kb 14s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/* Top + bottom vignett — szöveg olvashatóságáért */
.cc-eth__vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(20,16,12,0.55) 0%, transparent 38%),
    linear-gradient(to top,    rgba(20,16,12,0.52) 0%, transparent 45%);
  pointer-events: none;
}

/* Középső oszlop – badge › cím › vonal › CTA › nyíl */
.cc-eth__center {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  max-width: 860px;
  width: 100%;
}

/* ── Michelin badge ── */
.cc-eth__badge {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #A8957A;
  margin: 0 0 22px;
  padding: 10px 20px;
  background: rgba(20, 16, 12, 0.52);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(168, 149, 122, 0.18);
  border-radius: 5px;
  animation: cc-eth-rise 1s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

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

/* ── Főcím ── */
.cc-eth__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4.2vw, 56px);
  font-weight: 300;
  font-style: italic;
  color: #F7F2EC;
  line-height: 1.2;
  margin: 0 0 30px;
  text-shadow: 0 2px 24px rgba(20, 16, 12, 0.55);
  animation: cc-eth-rise 1s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

/* ── Vékony arany divider vonal ── */
.cc-eth__rule {
  width: 44px;
  height: 1px;
  background: rgba(168, 149, 122, 0.45);
  margin-bottom: 30px;
  animation: cc-eth-rise 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

/* ── CTA pár ── */
.cc-eth__ctas {
  display: flex;
  align-items: stretch;
  gap: 5px;
  animation: cc-eth-rise 1s cubic-bezier(0.16, 1, 0.3, 1) 0.75s both;
}

.cc-eth__cta {
  display: inline-flex;
  align-items: center;
  padding: 15px 44px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
  white-space: nowrap;
}

.cc-eth .cc-eth__cta--fill,
.cc-eth .cc-eth__cta--fill:visited {
  background: #F7F2EC;
  color: #1C1812;
  border: 1px solid #F7F2EC;
}
.cc-eth .cc-eth__cta--fill:hover {
  background: transparent;
  color: #F7F2EC !important;
  border-color: rgba(247, 242, 236, 0.6);
}

.cc-eth .cc-eth__cta--glass,
.cc-eth .cc-eth__cta--glass:visited {
  background: rgba(247, 242, 236, 0.08);
  color: #F7F2EC;
  border: 1px solid rgba(247, 242, 236, 0.32);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.cc-eth .cc-eth__cta--glass:hover {
  background: rgba(247, 242, 236, 0.18);
  color: #F7F2EC !important;
  border-color: rgba(247, 242, 236, 0.62);
}

.cc-eth__sep { display: none; }

/* ── Görgetési nyíl ── */
.cc-eth__scroll {
  color: rgba(247, 242, 236, 0.45);
  display: flex;
  margin-top: 22px;
  animation: cc-eth-bounce 2.6s ease-in-out 2.2s infinite;
}

/* ── Animációk ── */
@keyframes cc-eth-kb {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

@keyframes cc-eth-rise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes cc-eth-bounce {
  0%,  100% { transform: translateY(0);    opacity: 0.35; }
  55%        { transform: translateY(10px); opacity: 0.8; }
}

/* ── Mobil ── */
@media (max-width: 520px) {
  .cc-eth__badge {
    font-size: 9px;
    letter-spacing: 2.5px;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .cc-eth__badge-rule { width: 20px; }
  .cc-eth__title { margin-bottom: 24px; }
  .cc-eth__rule  { margin-bottom: 24px; }
  .cc-eth__ctas {
    flex-direction: column;
    align-items: stretch;
    width: calc(100vw - 48px);
  }
  .cc-eth__cta {
    justify-content: center;
    padding: 14px 32px;
  }
}
