/*
Theme Name: Listiko Coming Soon
Theme URI: https://listiko.com
Author: Listiko Marketplace
Author URI: https://listiko.com
Description: Página de Coming Soon para Listiko Marketplace - Tienda de comida online
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: listiko
Tags: one-column, custom-colors, custom-logo, coming-soon, food, restaurant
*/

/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-bg:        #ede8e1;
  --color-orange:    #e87722;
  --color-orange-lt: #f59142;
  --color-green:     #37b34a;
  --color-green-dk:  #2a9d3c;
  --color-dark:      #111110;
  --color-dark-2:    #1c1c1a;
  --color-white:     #ffffff;
  --color-text:      #3a3630;
  --color-muted:     #8a8070;
  --color-border:    rgba(255,255,255,0.18);

  --font-display: 'Sora', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --radius-card:  28px;
  --radius-btn:   50px;
  --radius-input: 50px;

  --shadow-card:  0 24px 80px rgba(0,0,0,0.18);
  --shadow-btn:   0 6px 24px rgba(232,119,34,0.38);
  --shadow-green: 0 6px 24px rgba(55,179,74,0.38);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =========================================
   GOOGLE FONTS IMPORT  (via functions.php)
   ========================================= */

/* =========================================
   LAYOUT WRAPPER
   ========================================= */
.lk-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px 0;
  gap: 0;
}

/* =========================================
   HERO CARD
   ========================================= */
.lk-hero {
  width: 100%;
  max-width: 720px;
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 56px 48px 44px;
  text-align: center;
  box-shadow: var(--shadow-card);
  animation: fadeUp 0.7s ease both;
}

/* Background image layer */
.lk-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/images/hero-food.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Dark overlay */
.lk-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,10,8,0.72) 0%,
    rgba(20,18,14,0.80) 50%,
    rgba(12,10,8,0.90) 100%
  );
  z-index: 1;
}

/* Subtle vignette ring */
.lk-hero__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.4) 100%);
}

.lk-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
}

/* Orange icon circle */
.lk-hero__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(232,119,34,0.55);
}

.lk-hero__icon svg {
  width: 28px;
  height: 28px;
  fill: var(--color-white);
}

/* Heading */
.lk-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 520px;
}

/* Subtitle */
.lk-hero__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  max-width: 400px;
  line-height: 1.65;
}

/* WhatsApp button */
.lk-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-btn);
  border: 2px solid rgba(255,255,255,0.35);
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.lk-btn-whatsapp:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

.lk-btn-whatsapp svg {
  width: 18px;
  height: 18px;
  fill: var(--color-white);
  flex-shrink: 0;
}

/* Small note */
.lk-hero__note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.42);
  font-style: italic;
}

/* =========================================
   ATTENTION SECTION
   ========================================= */
.lk-attention {
  width: 100%;
  max-width: 720px;
  padding: 72px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  animation: fadeUp 0.7s 0.2s ease both;
}

/* Badge pill */
.lk-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,119,34,0.12);
  color: var(--color-orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  border: 1px solid rgba(232,119,34,0.25);
}

.lk-badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-orange);
  animation: pulse-dot 1.8s ease infinite;
}

.lk-attention__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--color-dark);
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.lk-attention__text {
  font-size: 1rem;
  color: var(--color-muted);
  max-width: 420px;
  line-height: 1.7;
}

.lk-btn-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--color-green);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  padding: 17px 38px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-green);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
}

.lk-btn-green:hover {
  background: var(--color-green-dk);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(55,179,74,0.48);
}

.lk-btn-green svg {
  width: 20px;
  height: 20px;
  fill: var(--color-white);
  flex-shrink: 0;
}

/* =========================================
   DIVIDER
   ========================================= */
.lk-divider {
  width: 100%;
  max-width: 560px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
  margin: 0 auto;
}

/* =========================================
   SOCIAL SECTION
   ========================================= */
.lk-social {
  width: 100%;
  max-width: 720px;
  padding: 56px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  animation: fadeUp 0.7s 0.35s ease both;
}

.lk-social__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.01em;
}

.lk-social__grid {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}

.lk-social__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
}

.lk-social__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.lk-social__item:hover .lk-social__icon {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.lk-social__icon--facebook  { background: #e8752a; }
.lk-social__icon--instagram { background: #e87b5a; }
.lk-social__icon--tiktok  { background: #1a1a1a; }
.lk-social__icon--youtube   { background: #e87722; }

.lk-social__icon svg {
  width: 22px;
  height: 22px;
  fill: var(--color-white);
}

.lk-social__label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text);
}

/* =========================================
   FOOTER
   ========================================= */
.lk-footer {
  width: 100%;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 36px 24px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: fadeUp 0.7s 0.45s ease both;
}

.lk-footer__links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.lk-footer__links a {
  font-size: 0.85rem;
  color: var(--color-text);
  transition: color 0.2s;
}

.lk-footer__links a:hover {
  color: var(--color-orange);
}

.lk-footer__copy {
  font-size: 0.78rem;
  color: var(--color-muted);
  line-height: 1.7;
}

.lk-footer__copy span {
  color: #e05555;
}

/* =========================================
   FLOATING CHAT BUTTON
   ========================================= */
.lk-chat-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.lk-chat-fab:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.6);
}

.lk-chat-fab svg {
  width: 24px;
  height: 24px;
  fill: var(--color-white);
}

/* Badge on FAB */
.lk-chat-fab__badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #e05555;
  border: 2px solid var(--color-bg);
  font-size: 0.62rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.55; transform: scale(1.4); }
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 600px) {
  .lk-page { padding: 20px 12px 0; }

  .lk-hero { padding: 44px 24px 36px; min-height: 380px; border-radius: 20px; }

  .lk-attention { padding: 52px 20px; }

  .lk-social { padding: 40px 20px; }
  .lk-social__grid { gap: 20px; }

  .lk-footer__links { gap: 18px; }

  .lk-chat-fab { bottom: 20px; right: 20px; }
}
