/* ============================================================
   CAFE ORIX — FOOTER STYLES
   footer.css
============================================================ */

:root {
  --dark:   #312C51;
  --purple: #48426D;
  --peach:  #F0C38E;
  --pink:   #F1AA9B;
  --cream:  #FAF8F5;
  --border: rgba(240,195,142,.13);
}

/* ── BASE ── */
.orix-footer {
  position: relative;
  background: #0e0c1c;
  overflow: hidden;
  font-family: 'Nunito', sans-serif;
  color: #fff;
}

/* ── GLOW ORBS ── */
.f-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
}
.f-orb1 {
  width: 380px; height: 380px;
  background: rgba(240,195,142,.07);
  top: -100px; right: -80px;
  animation: orbPulse 6s ease-in-out infinite;
}
.f-orb2 {
  width: 280px; height: 280px;
  background: rgba(241,170,155,.06);
  bottom: 60px; left: -60px;
  animation: orbPulse 8s ease-in-out infinite reverse;
}
@keyframes orbPulse {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.12); }
}

/* ── TOP MARQUEE STRIP ── */
.f-top-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(240,195,142,.04);
  overflow: hidden;
  padding: 10px 0;
}
.f-strip-inner {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}
.f-strip-inner span {
  font-family: 'Poppins', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  color: var(--peach);
  letter-spacing: .4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.f-strip-inner i { color: var(--pink); font-size: .75rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── NEWSLETTER ── */
.f-newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 5%;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.fn-label {
  font-family: 'Poppins', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  color: var(--peach);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.fn-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  color: #fff;
  line-height: 1.2;
}
.fn-title span {
  background: linear-gradient(135deg, var(--peach), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fn-right { flex: 1; max-width: 460px; }
.fn-form {
  display: flex;
  gap: 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 6px 6px 6px 16px;
  transition: .3s;
}
.fn-form:focus-within {
  border-color: var(--peach);
  box-shadow: 0 0 0 3px rgba(240,195,142,.08);
}
.fn-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Nunito', sans-serif;
  font-size: .88rem;
  color: #fff;
}
.fn-input::placeholder { color: rgba(255,255,255,.3); }
.fn-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, var(--peach), var(--pink));
  color: var(--dark);
  font-family: 'Fredoka One', cursive;
  font-size: .88rem;
  cursor: pointer;
  transition: .3s;
  white-space: nowrap;
}
.fn-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(240,195,142,.3); }
.fn-note {
  font-family: 'Poppins', sans-serif;
  font-size: .72rem;
  color: rgba(255,255,255,.3);
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.fn-note i { color: var(--peach); }

/* ── MAIN GRID ── */
.f-main {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1.1fr 1.2fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 5%;
}

/* ── BRAND COL ── */
.f-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 16px;
}
.f-logo-icon {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--peach), var(--pink));
  display: flex; align-items: center; justify-content: center;
  color: var(--dark);
  font-size: .95rem;
  transition: .3s;
}
.f-logo:hover .f-logo-icon { transform: rotate(-8deg) scale(1.08); }
.f-logo-name {
  font-family: 'Fredoka One', cursive;
  font-size: 1.45rem;
  color: var(--peach);
}
.f-logo-name em { color: var(--pink); font-style: normal; }

.f-brand-desc {
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  color: rgba(255,255,255,.42);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 260px;
}

/* Socials */
.f-socials { display: flex; gap: 9px; margin-bottom: 20px; flex-wrap: wrap; }
.f-soc {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  text-decoration: none;
  transition: .3s;
}
.f-soc:hover {
  background: rgba(240,195,142,.12);
  border-color: var(--peach);
  color: var(--peach);
  transform: translateY(-3px);
}

/* Rating */
.f-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}
.f-stars { display: flex; gap: 2px; }
.f-stars i { color: var(--peach); font-size: .75rem; }
.f-rating span {
  font-family: 'Poppins', sans-serif;
  font-size: .75rem;
  color: rgba(255,255,255,.4);
}

/* ── COL TITLES ── */
.f-col-title {
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  color: var(--peach);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.f-col-title i { font-size: .85rem; }

/* ── LINKS ── */
.f-list { list-style: none; padding: 0; }
.f-list li { margin-bottom: 10px; }
.f-list a {
  font-family: 'Poppins', sans-serif;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: .3s;
}
.f-list a i {
  font-size: .6rem;
  color: var(--pink);
  opacity: 0;
  transform: translateX(-4px);
  transition: .3s;
}
.f-list a:hover { color: var(--peach); padding-left: 4px; }
.f-list a:hover i { opacity: 1; transform: translateX(0); }

/* ── HOURS ── */
.f-hours { list-style: none; padding: 0; }
.f-hours li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-family: 'Poppins', sans-serif;
  font-size: .78rem;
  color: rgba(255,255,255,.45);
}
.f-hours li:last-child { border-bottom: none; }
.f-time {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  color: rgba(255,255,255,.7);
  white-space: nowrap;
}

/* Live status */
.f-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50px;
  padding: 7px 14px;
  margin-top: 16px;
  font-family: 'Poppins', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
}
.f-status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #6BCB77;
  animation: blink 1.5s ease-in-out infinite;
}
.f-status.closed .f-status-dot { background: var(--pink); animation: none; }
@keyframes blink {
  0%,100% { opacity: 1; } 50% { opacity: .3; }
}

/* ── CONTACT LIST ── */
.f-contact { list-style: none; padding: 0; }
.f-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 13px;
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  line-height: 1.5;
}
.f-contact li i {
  color: var(--peach);
  font-size: .85rem;
  margin-top: 2px;
  flex-shrink: 0;
  width: 14px;
}
.f-contact a {
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: .3s;
}
.f-contact a:hover { color: var(--peach); }

/* ── DIVIDER ── */
.f-divider {
  height: 1px;
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--border), var(--peach), var(--border), transparent);
  opacity: .6;
}

/* ── BOTTOM BAR ── */
.f-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 22px 5%;
  position: relative;
}
.f-copy {
  font-family: 'Poppins', sans-serif;
  font-size: .78rem;
  color: rgba(255,255,255,.28);
}
.f-copy i { color: var(--pink); }
.f-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.f-bottom-links a {
  font-family: 'Poppins', sans-serif;
  font-size: .76rem;
  color: rgba(255,255,255,.3);
  text-decoration: none;
  transition: .3s;
}
.f-bottom-links a:hover { color: var(--peach); }

/* Back to top */
.f-top-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(240,195,142,.1);
  border: 1px solid var(--border);
  color: var(--peach);
  font-size: .85rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: .35s;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}
.f-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.f-top-btn:hover {
  background: var(--peach);
  color: var(--dark);
  transform: translateY(-3px);
}

/* ── TOAST ── */
.f-toast {
  position: fixed;
  bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(30px);
  background: rgba(20,18,45,.97);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 11px 22px;
  display: flex; align-items: center; gap: 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700; font-size: .85rem;
  color: #fff;
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: .35s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
}
.f-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.f-toast i { color: var(--peach); font-size: .9rem; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 900px) {
  .f-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .f-brand { grid-column: 1 / -1; }
  .f-brand-desc { max-width: 100%; }
}

@media (max-width: 600px) {
  .f-newsletter {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 5%;
    gap: 18px;
  }
  .fn-right { max-width: 100%; width: 100%; }
  .fn-btn span { display: none; }
  .fn-btn { padding: 10px 14px; }

  .f-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 5%;
  }

  .f-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .f-top-btn {
    position: absolute;
    right: 5%; top: 22px;
  }
}

@media (max-width: 380px) {
  .fn-form { flex-direction: column; padding: 10px; }
  .fn-btn { width: 100%; justify-content: center; }
  .fn-btn span { display: inline; }
}