/* ============================
   LIDAN PIZZERIA — LANDING PAGE
   ============================== */

:root {
  --maroon:       #511110;
  --maroon-dark:  #3a0b0a;
  --maroon-light: #6b1a19;
  --gold:         #f3cf15;
  --gold-light:   #fcf8c8;
  --gold-dim:     #c9a90e;
  --gold-muted:   #a88c10;
  --cream:        #fcf8c8;
  --text-body:    #f0dfa0;
}

/* ---- Reset & base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  min-height: 100vh;
  overflow-x: hidden;
}

body {
  background-color: var(--maroon-dark);
  color: var(--cream);
  font-family: 'Cormorant Garamond', Georgia, serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* ---- Textured background ---- */
.bg-texture {
  position: fixed;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(0,0,0,0.03) 0px,
      rgba(0,0,0,0.03) 1px,
      transparent 1px,
      transparent 8px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(0,0,0,0.03) 0px,
      rgba(0,0,0,0.03) 1px,
      transparent 1px,
      transparent 8px
    );
  pointer-events: none;
  z-index: 0;
}

.bg-vignette {
  position: fixed;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 40%,
    rgba(0,0,0,0.55) 100%
  );
  pointer-events: none;
  z-index: 0;
}

/* ---- Top / bottom borders ---- */
.top-border,
.bottom-border {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 40px;
  position: relative;
  z-index: 2;
}

.border-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
  max-width: 380px;
}

.bottom-border .border-line {
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}

.border-diamond {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 2px;
}

/* ---- Main container ---- */
.container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;
  padding: 20px 30px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

/* ---- Hero / header ---- */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  animation: fadeUp 1.1s ease both;
}

.ornament-top,
.ornament-bottom {
  color: var(--gold-dim);
  font-size: 0.95rem;
  letter-spacing: 8px;
}

/* ---- Badge ---- */
.logo-wrap {
  margin: 10px 0 4px;
}

.logo-badge {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, var(--maroon-light) 0%, var(--maroon-dark) 100%);
  box-shadow:
    0 0 0 6px rgba(243, 207, 21, 0.12),
    0 0 30px rgba(243, 207, 21, 0.15),
    inset 0 0 20px rgba(0,0,0,0.4);
  animation: glow 3s ease-in-out infinite alternate;
}

.badge-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  gap: 2px;
}

.badge-top,
.badge-bottom {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.55rem;
  letter-spacing: 3px;
  color: var(--gold-dim);
  font-weight: 500;
  text-transform: uppercase;
}

.badge-year {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--gold);
  text-shadow: 0 0 12px rgba(243, 207, 21, 0.5);
}

/* ---- Title ---- */
.title {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.title-small {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 4vw, 1.3rem);
  font-weight: 300;
  letter-spacing: 0.6em;
  color: var(--gold-dim);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.title-large {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.8rem, 14vw, 7rem);
  font-weight: 900;
  font-style: italic;
  color: var(--gold);
  text-shadow:
    0 2px 0 var(--gold-muted),
    0 0 40px rgba(243, 207, 21, 0.25),
    0 4px 30px rgba(0,0,0,0.6);
  line-height: 0.9;
  letter-spacing: -0.01em;
}

.tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(0.85rem, 3vw, 1.05rem);
  font-weight: 400;
  color: var(--text-body);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 8px;
  opacity: 0.85;
}

/* ---- Coming soon section ---- */
.coming-soon {
  width: 100%;
  animation: fadeUp 1.3s ease 0.25s both;
}

.soon-frame {
  border: 1px solid rgba(243, 207, 21, 0.3);
  border-top: 2px solid var(--gold-dim);
  border-bottom: 2px solid var(--gold-dim);
  padding: 44px 48px;
  text-align: center;
  position: relative;
  background: rgba(81, 17, 16, 0.35);
  backdrop-filter: blur(4px);
}

/* Corner decorations */
.soon-frame::before,
.soon-frame::after {
  content: '◆';
  position: absolute;
  color: var(--gold);
  font-size: 0.7rem;
  top: -0.45rem;
}
.soon-frame::before { left: 20px; }
.soon-frame::after  { right: 20px; }

.soon-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  color: var(--gold-dim);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.soon-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 9vw, 4rem);
  font-weight: 700;
  font-style: italic;
  color: var(--cream);
  text-shadow: 0 0 24px rgba(252, 248, 200, 0.2);
  margin-bottom: 22px;
  line-height: 1.05;
}

.soon-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 3.5vw, 1.2rem);
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.9;
  opacity: 0.9;
}

/* ---- Info strip ---- */
.info-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeUp 1.5s ease 0.45s both;
  width: 100%;
  padding: 28px 24px;
  border-top: 1px solid rgba(243, 207, 21, 0.2);
  border-bottom: 1px solid rgba(243, 207, 21, 0.2);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-icon {
  font-size: 1.1rem;
  filter: grayscale(0.3) sepia(0.5);
}

.info-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(0.85rem, 3vw, 1rem);
  letter-spacing: 0.12em;
  color: var(--text-body);
  text-transform: uppercase;
  font-weight: 500;
}

.info-divider {
  color: var(--gold-dim);
  font-size: 0.5rem;
  opacity: 0.6;
}

/* ---- Floating decorative elements ---- */
.deco {
  position: fixed;
  font-size: 5rem;
  opacity: 0.035;
  pointer-events: none;
  z-index: 1;
  filter: grayscale(1) sepia(1);
}

.deco-1 {
  top: 5%;
  left: -2%;
  transform: rotate(-25deg);
  animation: float 8s ease-in-out infinite;
}

.deco-2 {
  bottom: 12%;
  right: 1%;
  font-size: 3rem;
  transform: rotate(15deg);
  animation: float 10s ease-in-out 2s infinite reverse;
}

.deco-3 {
  bottom: 5%;
  left: 3%;
  transform: rotate(20deg);
  animation: float 9s ease-in-out 1s infinite;
}

/* ---- Animations ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes glow {
  from { box-shadow: 0 0 0 6px rgba(243,207,21,0.10), 0 0 20px rgba(243,207,21,0.10), inset 0 0 20px rgba(0,0,0,0.4); }
  to   { box-shadow: 0 0 0 6px rgba(243,207,21,0.18), 0 0 40px rgba(243,207,21,0.22), inset 0 0 20px rgba(0,0,0,0.4); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-25deg); }
  50%       { transform: translateY(-18px) rotate(-20deg); }
}

/* ---- Responsive ---- */
@media (max-width: 520px) {
  .container { padding: 10px 18px 40px; gap: 40px; }
  .soon-frame { padding: 30px 22px; }
  .info-strip { flex-direction: column; gap: 14px; }
  .info-divider { display: none; }
}
