/* ═══════════════════════════════════════════════════════
   ClickMenu — Restaurant LinkTree CSS
   Premium public-facing styles
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --lt-accent:     #F59E0B;
    --lt-accent-rgb: 245, 158, 11;
    --lt-bg:         #0d0d0d;
    --lt-card:       rgba(255,255,255,0.05);
    --lt-border:     rgba(255,255,255,0.08);
    --lt-text:       #ffffff;
    --lt-muted:      rgba(255,255,255,0.55);
    --lt-radius:     18px;
    --lt-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── ROOT ─────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body.lt-body {
    font-family: 'Outfit', sans-serif;
    background: var(--lt-bg);
    color: var(--lt-text);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.5;
}

/* ─── BACKGROUND ────────────────────────────────────── */
.lt-bg-layer {
    position: fixed;
    inset: 0;
    z-index: 0;
    background: var(--lt-bg);
}
.lt-bg-layer img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: blur(2px) brightness(0.6);
}
.lt-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.3) 40%,
        rgba(0,0,0,0.85) 100%
    );
}

/* ─── LAYOUT ────────────────────────────────────────── */
.lt-wrap {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
    padding: 50px 24px 80px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* ─── HEADER BLOCK ──────────────────────────────────── */
.lt-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.lt-logo-ring {
    width: 110px; height: 110px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, var(--lt-accent), rgba(var(--lt-accent-rgb),0.3));
    box-shadow: 0 0 40px rgba(var(--lt-accent-rgb), 0.35);
    animation: lt-pulse-ring 3s ease-in-out infinite;
}
@keyframes lt-pulse-ring {
    0%, 100% { box-shadow: 0 0 30px rgba(var(--lt-accent-rgb), 0.3); }
    50%       { box-shadow: 0 0 55px rgba(var(--lt-accent-rgb), 0.55); }
}
.lt-logo-ring img {
    width: 100%; height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: #111;
}

.lt-name {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.1;
}
.lt-tagline {
    font-size: 0.95rem;
    color: var(--lt-muted);
    font-weight: 400;
    max-width: 380px;
}

/* ─── STATUS BADGE ──────────────────────────────────── */
.lt-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    border: 1px solid currentColor;
}
.lt-status.open  { color: #22c55e; background: rgba(34,197,94,0.12); border-color: rgba(34,197,94,0.3); }
.lt-status.closed{ color: #ef4444; background: rgba(239,68,68,0.12);  border-color: rgba(239,68,68,0.3); }
.lt-status-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: currentColor;
    animation: lt-blink 1.5s ease-in-out infinite;
}
@keyframes lt-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
}

/* ─── SOCIAL ROW ────────────────────────────────────── */
.lt-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.lt-social-pill {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 18px;
    border-radius: 99px;
    background: var(--lt-card);
    border: 1px solid var(--lt-border);
    color: var(--lt-text);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--lt-transition);
    backdrop-filter: blur(10px);
}
.lt-social-pill:hover {
    background: rgba(var(--lt-accent-rgb), 0.15);
    border-color: rgba(var(--lt-accent-rgb), 0.4);
    color: var(--lt-accent);
    transform: translateY(-2px);
}
.lt-social-pill i { font-size: 1rem; }
.lt-social-pill.whatsapp:hover { background: rgba(37,211,102,0.15); border-color: rgba(37,211,102,0.4); color: #25d366; }
.lt-social-pill.instagram:hover { background: rgba(225,48,108,0.15); border-color: rgba(225,48,108,0.4); color: #e1306c; }
.lt-social-pill.facebook:hover  { background: rgba(24,119,242,0.15); border-color: rgba(24,119,242,0.4); color: #1877f2; }
.lt-social-pill.tiktok:hover    { background: rgba(0,0,0,0.3);       border-color: rgba(255,255,255,0.3); }

/* ─── ACTION BUTTONS ────────────────────────────────── */
.lt-actions { display: flex; flex-direction: column; gap: 12px; }

.lt-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    border-radius: var(--lt-radius);
    background: var(--lt-card);
    border: 1px solid var(--lt-border);
    color: var(--lt-text);
    text-decoration: none;
    transition: var(--lt-transition);
    backdrop-filter: blur(12px);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.lt-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(var(--lt-accent-rgb),0.08), transparent);
    opacity: 0;
    transition: var(--lt-transition);
}
.lt-btn:hover::before { opacity: 1; }
.lt-btn:hover {
    border-color: rgba(var(--lt-accent-rgb), 0.4);
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 8px 30px rgba(var(--lt-accent-rgb), 0.15);
}
.lt-btn-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(var(--lt-accent-rgb), 0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    color: var(--lt-accent);
    flex-shrink: 0;
    transition: var(--lt-transition);
}
.lt-btn:hover .lt-btn-icon {
    background: rgba(var(--lt-accent-rgb), 0.25);
    transform: scale(1.1);
}
.lt-btn-text { flex: 1; }
.lt-btn-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--lt-muted);
    margin-bottom: 3px;
}
.lt-btn-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--lt-text);
}
.lt-btn-arrow {
    color: var(--lt-muted);
    font-size: 0.9rem;
    transition: var(--lt-transition);
}
.lt-btn:hover .lt-btn-arrow {
    color: var(--lt-accent);
    transform: translateX(4px);
}

/* ─── SECTION TITLE ─────────────────────────────────── */
.lt-section-title {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--lt-muted);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}
.lt-section-title::before,
.lt-section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--lt-border);
}

/* ─── HORARIOS ──────────────────────────────────────── */
.lt-hours-card {
    background: var(--lt-card);
    border: 1px solid var(--lt-border);
    border-radius: var(--lt-radius);
    padding: 24px;
    backdrop-filter: blur(12px);
}
.lt-hours-grid { display: flex; flex-direction: column; gap: 0; }
.lt-hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--lt-border);
    font-size: 0.9rem;
}
.lt-hours-row:last-child { border-bottom: none; }
.lt-hours-day { font-weight: 600; color: var(--lt-muted); text-transform: capitalize; }
.lt-hours-day.today { color: var(--lt-accent); font-weight: 700; }
.lt-hours-time { font-weight: 500; }
.lt-hours-closed { color: var(--lt-muted); font-style: italic; font-size: 0.8rem; }

/* ─── MAPA ──────────────────────────────────────────── */
.lt-map-card {
    background: var(--lt-card);
    border: 1px solid var(--lt-border);
    border-radius: var(--lt-radius);
    overflow: hidden;
    backdrop-filter: blur(12px);
}
.lt-map-info {
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.lt-map-info i { color: var(--lt-accent); font-size: 1.2rem; }
.lt-map-info-text .lt-map-label { font-size: 0.75rem; color: var(--lt-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.lt-map-info-text .lt-map-addr { font-weight: 600; font-size: 0.95rem; margin-top: 2px; }
.lt-map-frame {
    width: 100%;
    height: 220px;
    border: none;
    display: block;
    filter: grayscale(30%) contrast(1.05);
}
.lt-map-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: rgba(var(--lt-accent-rgb), 0.1);
    border-top: 1px solid var(--lt-border);
    color: var(--lt-accent);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--lt-transition);
}
.lt-map-link:hover { background: rgba(var(--lt-accent-rgb), 0.2); }

/* ─── EVENTOS ───────────────────────────────────────── */
.lt-events {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.lt-event-card {
    display: flex;
    flex-direction: column;
    background: var(--lt-card);
    border: 1px solid var(--lt-border);
    border-radius: var(--lt-radius);
    overflow: hidden;
    backdrop-filter: blur(12px);
    transition: var(--lt-transition);
    text-decoration: none;
    color: var(--lt-text);
    height: 100%;
}
.lt-event-card:hover {
    border-color: rgba(var(--lt-accent-rgb), 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.45);
}
.lt-event-img {
    width: 100%;
    height: 180px;
    flex-shrink: 0;
    overflow: hidden;
}
.lt-event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lt-event-img-placeholder {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, rgba(var(--lt-accent-rgb),0.15), rgba(var(--lt-accent-rgb),0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}
.lt-event-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.lt-event-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.lt-event-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--lt-accent);
    background: rgba(var(--lt-accent-rgb), 0.12);
    border-radius: 6px;
    padding: 3px 9px;
}
.lt-event-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}
.lt-event-desc {
    font-size: 0.85rem;
    color: var(--lt-muted);
    line-height: 1.5;
    margin-bottom: 16px;
    flex-grow: 1;
}
.lt-event-time {
    font-size: 0.78rem;
    color: var(--lt-muted);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.lt-event-reserve {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--lt-accent);
    margin-top: auto;
    transition: transform 0.2s ease;
}
.lt-event-card:hover .lt-event-reserve {
    transform: translateX(4px);
}

/* ─── GALERÍA ───────────────────────────────────────── */
.lt-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.lt-gallery-item {
    display: block;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--lt-transition);
}
.lt-gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: var(--lt-transition);
}
.lt-gallery-item:hover { transform: scale(1.02); box-shadow: 0 8px 25px rgba(0,0,0,0.4); }
.lt-gallery-item:hover img { transform: scale(1.08); }



/* ─── POWERED BY ────────────────────────────────────── */
.lt-footer {
    text-align: center;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.lt-powered {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: var(--lt-transition);
}
.lt-powered:hover { color: rgba(255,255,255,0.7); }
.lt-powered-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lt-accent); }
.lt-dev {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.2);
}
.lt-dev a { color: var(--lt-accent); text-decoration: none; font-weight: 700; }

/* ─── ENTRANCE ANIMATIONS ───────────────────────────── */
.lt-fade-up {
    opacity: 0;
    transform: translateY(24px);
    animation: lt-fadeUp 0.5s ease forwards;
}
@keyframes lt-fadeUp {
    to { opacity: 1; transform: translateY(0); }
}
.lt-fade-up:nth-child(1) { animation-delay: 0.05s; }
.lt-fade-up:nth-child(2) { animation-delay: 0.12s; }
.lt-fade-up:nth-child(3) { animation-delay: 0.19s; }
.lt-fade-up:nth-child(4) { animation-delay: 0.26s; }
.lt-fade-up:nth-child(5) { animation-delay: 0.33s; }
.lt-fade-up:nth-child(6) { animation-delay: 0.40s; }
.lt-fade-up:nth-child(7) { animation-delay: 0.47s; }
.lt-fade-up:nth-child(8) { animation-delay: 0.54s; }
.lt-fade-up:nth-child(9) { animation-delay: 0.61s; }

/* ─── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 480px) {
    .lt-wrap { padding: 36px 16px 60px; gap: 24px; }
    .lt-name { font-size: 1.6rem; }
    .lt-gallery { grid-template-columns: repeat(3, 1fr); gap: 6px; }
    .lt-btn { padding: 15px 18px; }
    .lt-btn-icon { width: 38px; height: 38px; font-size: 1rem; }
}
