/* Custom Styles & Animations */

/* Noise Texture for "Organic/Real" feel */
.noise-overlay {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}

/* Typography Details */
.text-stroke-white {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    color: transparent;
}

/* Scroll Reveal Animation Classes */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-text {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-100 { transition-delay: 100ms; animation-delay: 100ms; }
.delay-200 { transition-delay: 200ms; animation-delay: 200ms; }
.delay-300 { transition-delay: 300ms; animation-delay: 300ms; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Popup Animations */
.popup-visible {
    opacity: 1 !important;
    pointer-events: auto !important;
}

.popup-visible .transform {
    transform: translateY(0) !important;
}

/* Slide-in specific */
.slide-in-visible {
    transform: translateX(0) !important;
}

/* Pattern Dots */
.pattern-dots {
    background-image: radial-gradient(#00cccc 1px, transparent 1px);
    background-size: 10px 10px;
    opacity: 0.3;
}

/* Menu item image - mobile first */
.menu-item-image img {
    transform-origin: center center;
}

/* Animación al entrar en vista - respeta prefers-reduced-motion */
@media (prefers-reduced-motion: no-preference) {
    .scroll-reveal.visible .menu-item-image img {
        animation: menuImageReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    
    .scroll-reveal.delay-100.visible .menu-item-image img {
        animation-delay: 0.1s;
    }
    
    .scroll-reveal.delay-200.visible .menu-item-image img {
        animation-delay: 0.15s;
    }
    
    .scroll-reveal.delay-300.visible .menu-item-image img {
        animation-delay: 0.2s;
    }
}

@keyframes menuImageReveal {
    from {
        opacity: 0;
        transform: scale(0.96);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* ESTILOS PARA EL GOOGLE BADGE */
.review-widget {
    font-family: 'Roboto', sans-serif;
    background-color: #1a1a1a;
    border-radius: 16px;
    padding: 28px 32px;
    text-align: center;
    color: #ffffff;
    width: 220px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    transform: scale(.8);
  }

  .review-widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
  }

  .google-logo {
    margin-bottom: 16px;
  }

  .google-logo img {
    width: 36px;
    height: 36px;
    display: block;
    margin: 0 auto;
  }

  .title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
    letter-spacing: 0.02em;
  }

  .verified-icon {
    color: #ff9800;
    font-size: 16px;
    margin-bottom: 16px;
  }

  .rating-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
  }

  .score {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
  }

  .stars {
    display: flex;
    flex-wrap: nowrap;
    gap: 2px;
    color: #fbbc04;
    font-size: 18px;
    letter-spacing: 0;
  }

  .stars i {
    flex-shrink: 0;
  }

  .reviews-count {
    font-size: 14px;
    font-weight: 400;
    color: #ff9800;
  }

/* ESTILOS PARA EL FACEBOOK BADGE */
.fb-review-widget {
    font-family: 'Roboto', sans-serif;
  }

  .fb-logo {
    margin-bottom: 16px;
    color: #1877F2;
    font-size: 36px;
    text-align: center;
  }

  .fb-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
    letter-spacing: 0.02em;
  }

  .fb-rating-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
  }

  .fb-score {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
  }

  .fb-stars {
    display: flex;
    flex-wrap: nowrap;
    gap: 2px;
    color: #1877F2;
    font-size: 18px;
  }

  .fb-stars i {
    flex-shrink: 0;
  }

  .fb-reviews-count {
    font-size: 14px;
    font-weight: 400;
    color: #1877F2;
  }

/* ESTILOS PARA EL YELP BADGE */
.yelp-review-widget {
    font-family: 'Roboto', sans-serif;
  }

  .yelp-logo {
    margin-bottom: 16px;
    color: #d32323;
    font-size: 36px;
    text-align: center;
  }

  .yelp-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
    letter-spacing: 0.02em;
  }

  .yelp-rating-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
  }

  .yelp-score {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
  }

  .yelp-stars {
    display: flex;
    flex-wrap: nowrap;
    gap: 2px;
    color: #d32323;
    font-size: 18px;
  }

  .yelp-stars i {
    flex-shrink: 0;
  }

  .yelp-reviews-count {
    font-size: 14px;
    font-weight: 400;
    color: #d32323;
  }

/* ESTILOS PARA EL TRIPADVISOR BADGE */
.ta-review-widget {
    font-family: 'Roboto', sans-serif;
  }

  .ta-logo {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .ta-logo img {
    width: 36px;
    height: 36px;
  }

  .ta-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
    letter-spacing: 0.02em;
  }

  .ta-rating-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
  }

  .ta-score {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
  }

  .ta-stars {
    display: flex;
    flex-wrap: nowrap;
    gap: 2px;
    color: #00af87;
    font-size: 18px;
  }

  .ta-stars i {
    flex-shrink: 0;
  }

  .ta-reviews-count {
    font-size: 14px;
    font-weight: 400;
    color: #00af87;
  }

/* ESTILOS PARA EL INSTAGRAM BADGE */
.ig-review-widget {
    font-family: 'Roboto', sans-serif;
  }

  .ig-logo {
    margin-bottom: 16px;
    color: #E4405F;
    font-size: 36px;
    text-align: center;
  }

  .ig-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
    letter-spacing: 0.02em;
  }

  .ig-stats {
    font-size: 14px;
    font-weight: 400;
    color: #E4405F;
  }