/* ── CC Étterem · Asztalfoglalás ── cinematic invitation ── */

.cc-foglalas {
  position: relative;
  background-color: #1C1812;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 72vh;
  padding: 110px 24px 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  font-family: 'Jost', sans-serif;
  box-sizing: border-box;
}

.cc-foglalas__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(20,16,12,0.52) 0%, transparent 28%),
    linear-gradient(to top,    rgba(20,16,12,0.75) 0%, transparent 42%),
    rgba(20, 16, 12, 0.62);
  z-index: 0;
}

.cc-foglalas__watermark {
  position: absolute;
  bottom: -0.15em;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(160px, 22vw, 320px);
  color: rgba(168, 149, 122, 0.055);
  letter-spacing: -0.02em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  line-height: 1;
}

.cc-foglalas__inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ── Reveal animations ── */
.cc-foglalas__ornament,
.cc-foglalas__heading,
.cc-foglalas__rule,
.cc-foglalas__eyebrow,
.cc-foglalas__channels {
  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-foglalas--in .cc-foglalas__ornament  { opacity: 1; transform: none; transition-delay: 0s; }
.cc-foglalas--in .cc-foglalas__heading   { opacity: 1; transform: none; transition-delay: 0.15s; }
.cc-foglalas--in .cc-foglalas__rule      { opacity: 1; transform: none; transition-delay: 0.28s; }
.cc-foglalas--in .cc-foglalas__eyebrow   { opacity: 1; transform: none; transition-delay: 0.4s; }
.cc-foglalas--in .cc-foglalas__channels  { opacity: 1; transform: none; transition-delay: 0.56s; }

/* ── Ornament (gyémánt + rules) ── */
.cc-foglalas__ornament {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
}

.cc-foglalas__orn-rule {
  display: block;
  width: 52px;
  height: 1px;
  background: rgba(168, 149, 122, 0.42);
}

/* ── Főcím ── */
.cc-foglalas__heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(40px, 6vw, 72px);
  color: #F7F2EC;
  line-height: 1.1;
  margin: 0 0 28px;
  letter-spacing: -0.01em;
}

/* ── Arany vonal ── */
.cc-foglalas__rule {
  width: 52px;
  height: 1px;
  background: rgba(168, 149, 122, 0.5);
  margin-bottom: 24px;
}

/* ── Eyebrow ── */
.cc-foglalas__eyebrow {
  font-weight: 300;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.3px;
  color: rgba(247, 242, 236, 0.48);
  margin: 0 0 56px;
  line-height: 1.85;
  max-width: 540px;
}

/* ── Kapcsolati csatornák ── */
.cc-foglalas__channels {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: rgba(247, 242, 236, 0.055);
  border: 1px solid rgba(168, 149, 122, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  width: 100%;
  max-width: 680px;
}

.cc-foglalas__channel {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 48px 36px;
  text-decoration: none;
  transition: background 0.35s ease;
}

.cc-foglalas__channel:hover {
  background: rgba(168, 149, 122, 0.09);
}

.cc-foglalas__ch-divider {
  width: 1px;
  flex-shrink: 0;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(168, 149, 122, 0.28) 20%,
    rgba(168, 149, 122, 0.28) 80%,
    transparent
  );
}

.cc-foglalas__ch-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #A8957A;
}

.cc-foglalas__ch-label svg {
  color: rgba(168, 149, 122, 0.65);
  flex-shrink: 0;
}

.cc-foglalas__ch-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 400;
  color: #F7F2EC;
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.cc-foglalas__channel:hover .cc-foglalas__ch-value {
  color: rgba(247, 242, 236, 0.75);
}

/* ── Mobil ── */
@media (max-width: 600px) {
  .cc-foglalas { padding: 90px 20px 80px; min-height: auto; }
  .cc-foglalas__channels { flex-direction: column; max-width: 100%; }
  .cc-foglalas__ch-divider { width: 100%; height: 1px; }
  .cc-foglalas__channel { padding: 32px 24px; }
  .cc-foglalas__ch-value { white-space: normal; word-break: break-all; }
}
