/* ==========================================================================
   MANISH KUMAR - CUTE KAWAII & PASTEL GRADIENT LIGHTS STYLESHEET
   Design Language: Kawaii Pastel Dream (Sakura Pink, Sky Mint, Soft Lavender, Pearlescent White)
   Ultra Responsive, Smooth Parallax, 3D Jelly Buttons, High Contrast Legibility
   ========================================================================== */

:root {
  /* Pastel Light Theme Palette */
  --bg-primary: #fff5f8;
  --bg-secondary: #f4f8ff;
  --bg-card: rgba(255, 255, 255, 0.92);
  --bg-card-hover: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.82);

  /* Cute Gradients */
  --grad-sakura: linear-gradient(135deg, #ff758c 0%, #ff7eb3 100%);
  --grad-candy: linear-gradient(135deg, #ff758c 0%, #ff7eb3 50%, #70a1ff 100%);
  --grad-lavender: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
  --grad-mint: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  --grad-sky: linear-gradient(135deg, #48cae4 0%, #00f2fe 100%);
  --grad-peach: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
  --grad-rainbow: linear-gradient(90deg, #ff758c, #ff7eb3, #a18cd1, #48cae4, #43e97b, #f6d365);

  /* Brand Accents */
  --brand-pink: #ff758c;
  --brand-pink-light: #ffb7c5;
  --brand-pink-glow: rgba(255, 117, 140, 0.35);
  --brand-gold: #f59e0b;
  --brand-cyan: #06b6d4;
  --brand-purple: #9d4edd;

  /* Typography */
  --text-main: #1e293b;
  --text-muted: #475569;
  --text-dim: #64748b;
  --text-pink: #e11d48;

  /* Borders & Shadows */
  --border-subtle: rgba(255, 182, 193, 0.45);
  --border-highlight: #ff758c;
  --border-card: 2px solid rgba(255, 182, 193, 0.5);

  --shadow-sm: 0 4px 12px rgba(255, 117, 140, 0.08);
  --shadow-md: 0 10px 28px rgba(255, 117, 140, 0.15), 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 18px 45px rgba(255, 117, 140, 0.22), 0 6px 16px rgba(0, 0, 0, 0.05);
  --shadow-glow: 0 0 25px rgba(255, 117, 140, 0.4);
  --shadow-pill: 0 8px 24px rgba(255, 117, 140, 0.32);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-full: 9999px;

  --transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Global Cute Background & Ambient Lights */
html {
  background-color: var(--bg-primary);
  color: var(--text-main);
  scroll-behavior: smooth;
}

body {
  background: 
    radial-gradient(circle at 10% 15%, rgba(255, 117, 140, 0.14) 0%, transparent 45%),
    radial-gradient(circle at 90% 75%, rgba(72, 202, 228, 0.14) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(251, 194, 235, 0.12) 0%, transparent 50%),
    linear-gradient(135deg, #fff5f8 0%, #f4f8ff 50%, #faf5ff 100%);
  color: var(--text-main);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Falling Sakura Blossom Petals Container */
#sakura-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
}

/* Floating Kawaii Background Blobs */
.cute-ambient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
  animation: float-blob 12s infinite alternate ease-in-out;
}
.blob-1 { width: 350px; height: 350px; background: rgba(255, 182, 193, 0.4); top: 5%; left: -50px; }
.blob-2 { width: 400px; height: 400px; background: rgba(168, 237, 234, 0.4); top: 40%; right: -80px; animation-duration: 16s; }
.blob-3 { width: 300px; height: 300px; background: rgba(254, 207, 239, 0.4); bottom: 10%; left: 10%; animation-duration: 14s; }

@keyframes float-blob {
  0% { transform: translateY(0px) rotate(0deg) scale(1); }
  50% { transform: translateY(-30px) rotate(180deg) scale(1.1); }
  100% { transform: translateY(20px) rotate(360deg) scale(0.95); }
}

/* ==========================================================================
   PRELOADER (REMOVED / DISABLED AS REQUESTED)
   ========================================================================== */
#preloader {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.loader-content {
  text-align: center;
  max-width: 520px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(255, 182, 193, 0.6);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.loader-avatar-wrap {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto 20px;
}

.loader-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 0 25px var(--brand-pink-glow);
  position: relative;
  z-index: 2;
}

.loader-ring {
  position: absolute;
  inset: -8px;
  border: 3px dashed #ff758c;
  border-radius: 50%;
  animation: spin 10s linear infinite;
}

.loader-sparkles {
  position: absolute;
  inset: -15px;
  font-size: 1.4rem;
  pointer-events: none;
  animation: pulse-glow 2s infinite alternate;
}

.loader-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #e11d48;
  background: rgba(255, 117, 140, 0.15);
  border: 1.5px solid rgba(255, 117, 140, 0.4);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.loader-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 8px;
}

.loader-title span {
  background: var(--grad-sakura);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.loader-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 22px;
  line-height: 1.5;
}

.loader-bar-bg {
  width: 260px;
  height: 8px;
  background: rgba(255, 182, 193, 0.3);
  border-radius: 8px;
  margin: 0 auto 16px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 182, 193, 0.5);
}

.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--grad-rainbow);
  border-radius: 8px;
  animation: load-progress 1.6s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.loader-status {
  font-size: 0.85rem;
  color: #ff758c;
  font-weight: 600;
}

.loader-skip {
  margin-top: 18px;
  background: #fff;
  border: 2px solid rgba(255, 117, 140, 0.5);
  color: #ff758c;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.loader-skip:hover {
  background: var(--grad-sakura);
  color: #fff;
  transform: translateY(-2px) scale(1.05);
}

/* ==========================================================================
   CUTE BUTTONS (3D Jelly Pill Buttons)
   ========================================================================== */
.btn-cute-primary,
.cta-button-primary,
.nav-cta,
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--grad-candy);
  color: #ffffff !important;
  font-weight: 800;
  font-size: 1rem;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  border: none;
  text-decoration: none;
  box-shadow: var(--shadow-pill);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-cute-primary:hover,
.cta-button-primary:hover,
.nav-cta:hover,
.btn-primary:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 14px 30px rgba(255, 117, 140, 0.45);
  color: #ffffff !important;
}

.btn-cute-secondary,
.cta-button-secondary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ffffff;
  color: #ff758c !important;
  font-weight: 800;
  font-size: 1rem;
  padding: 12px 26px;
  border-radius: var(--radius-full);
  border: 2px solid #ff758c;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}

.btn-cute-secondary:hover,
.cta-button-secondary:hover,
.btn-secondary:hover {
  background: #fff0f3;
  transform: translateY(-4px) scale(1.04);
  box-shadow: var(--shadow-md);
}

.btn-cute-mint {
  background: var(--grad-mint) !important;
  color: #064e3b !important;
  box-shadow: 0 8px 24px rgba(67, 233, 123, 0.35) !important;
}

.btn-cute-lavender {
  background: var(--grad-lavender) !important;
  color: #ffffff !important;
  box-shadow: 0 8px 24px rgba(161, 140, 209, 0.35) !important;
}

/* ==========================================================================
   KAWAII SPEECH BUBBLE (FUKIDASHI) & MASCOT WIDGET
   ========================================================================== */
.fukidashi, .kawaii-speech {
  position: relative;
  background: #ffffff;
  border: 2px solid #ffb7c5;
  border-radius: 20px;
  padding: 14px 20px;
  color: var(--text-main);
  box-shadow: var(--shadow-md);
  font-size: 0.95rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 12px;
}

.fukidashi::after, .kawaii-speech::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 28px;
  border-width: 10px 10px 0;
  border-style: solid;
  border-color: #ffffff transparent;
  display: block;
  width: 0;
}

.fukidashi::before, .kawaii-speech::before {
  content: '';
  position: absolute;
  bottom: -13px;
  left: 26px;
  border-width: 12px 12px 0;
  border-style: solid;
  border-color: #ffb7c5 transparent;
  display: block;
  width: 0;
}

/* Kawaii Floating Assistant Mascot in Bottom Corner */
.kawaii-mascot-fab {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 998;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
}

.mascot-bubble {
  background: #ffffff;
  border: 2px solid #ff758c;
  padding: 10px 16px;
  border-radius: 18px 18px 4px 18px;
  box-shadow: var(--shadow-md);
  font-size: 0.85rem;
  color: var(--text-main);
  max-width: 220px;
  line-height: 1.4;
  pointer-events: auto;
  animation: bounce-gentle 3s infinite ease-in-out;
}

.mascot-avatar-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #ff758c;
  box-shadow: var(--shadow-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  cursor: pointer;
  pointer-events: auto;
  transition: var(--transition);
}

.mascot-avatar-btn:hover {
  transform: scale(1.15) rotate(10deg);
}

@keyframes bounce-gentle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ==========================================================================
   KAWAII BADGES & STAMPS
   ========================================================================== */
.kawaii-badge,
.hero-tag,
.badge-price,
.badge-hotel,
.project-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.badge-sakura, .hero-tag {
  background: rgba(255, 117, 140, 0.15);
  color: #e11d48;
  border: 1.5px solid rgba(255, 117, 140, 0.4);
}

.badge-hotel {
  background: rgba(72, 202, 228, 0.15);
  color: #0284c7;
  border: 1.5px solid rgba(72, 202, 228, 0.4);
}

.badge-price {
  background: rgba(246, 211, 101, 0.2);
  color: #b45309;
  border: 1.5px solid rgba(246, 211, 101, 0.5);
}

.badge-mint {
  background: rgba(67, 233, 123, 0.15);
  color: #047857;
  border: 1.5px solid rgba(67, 233, 123, 0.4);
}

/* ==========================================================================
   NAVIGATION BAR (Cute Glassmorphism)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 2px solid rgba(255, 182, 193, 0.4);
  box-shadow: 0 4px 20px rgba(255, 117, 140, 0.08);
}

.brand-avatar {
  border: 3px solid #ff758c;
  box-shadow: 0 0 14px var(--brand-pink-glow);
}

.brand-name {
  color: var(--text-main);
  font-weight: 900;
}

.brand-role {
  color: #ff758c;
  font-weight: 700;
}

.nav-links a {
  color: var(--text-muted);
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: #ff758c;
  background: rgba(255, 117, 140, 0.12);
}

/* ==========================================================================
   CARDS & GRIDS (Glassmorphism + Pastel Shadows)
   ========================================================================== */
.feature-card,
.project-card,
.city-card,
.spot-card,
.dish-card,
.company-card,
.blog-card,
.timeline-card,
.faq-item {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 2px solid rgba(255, 182, 193, 0.45);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  overflow: hidden;
  color: var(--text-main);
}

.feature-card:hover,
.project-card:hover,
.city-card:hover,
.spot-card:hover,
.dish-card:hover,
.company-card:hover,
.blog-card:hover,
.timeline-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: #ff758c;
  box-shadow: var(--shadow-lg);
  background: var(--bg-card-hover);
}

/* Photo Frames & Lightbox Styling */
.cute-photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: var(--shadow-lg);
  background: #fff;
}

.cute-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cute-photo-frame:hover img {
  transform: scale(1.05);
}

/* ==========================================================================
   INTERACTIVE LIVE SEARCH WIDGET
   ========================================================================== */
.live-search-container {
  max-width: 800px;
  margin: 0 auto 40px;
  position: relative;
}

.search-input-box {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon-badge {
  position: absolute;
  left: 20px;
  font-size: 1.4rem;
  pointer-events: none;
}

.cute-search-input {
  width: 100%;
  padding: 18px 24px 18px 60px;
  font-size: 1.1rem;
  font-family: inherit;
  background: #ffffff;
  border: 2.5px solid #ff758c;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(255, 117, 140, 0.2);
  color: var(--text-main);
  outline: none;
  transition: var(--transition);
}

.cute-search-input:focus {
  border-color: #e11d48;
  box-shadow: 0 12px 36px rgba(255, 117, 140, 0.35);
  transform: scale(1.01);
}

.search-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 14px;
}

.filter-pill {
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  border: 1.5px solid rgba(255, 117, 140, 0.4);
  background: #fff;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.filter-pill.active,
.filter-pill:hover {
  background: var(--grad-sakura);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}

/* Search Result Cards Grid */
.search-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.result-card-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: calc(var(--radius-lg) - 2px);
  border-top-right-radius: calc(var(--radius-lg) - 2px);
}

.result-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.result-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.4;
}

.result-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.result-card-easyjp {
  background: #fff0f5;
  border-left: 4px solid #ff758c;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #881337;
  line-height: 1.6;
}

/* ==========================================================================
   MOBILE BOTTOM DOCK (Ultra Cute & Responsive)
   ========================================================================== */
.mobile-bottom-dock {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 2px solid rgba(255, 182, 193, 0.5);
  box-shadow: 0 -4px 20px rgba(255, 117, 140, 0.15);
  padding: 8px 12px 16px;
  justify-content: space-around;
  align-items: center;
}

.dock-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  transition: var(--transition);
}

.dock-icon {
  font-size: 1.35rem;
  transition: var(--transition);
}

.dock-item:hover,
.dock-item.active {
  color: #ff758c;
}

.dock-item:hover .dock-icon,
.dock-item.active .dock-icon {
  transform: translateY(-4px) scale(1.2);
}

/* Footer Styling */
.site-footer {
  background: #ffffff;
  border-top: 3px solid rgba(255, 182, 193, 0.5);
  color: var(--text-main);
  padding: 60px 0 30px;
  margin-top: 80px;
}

.footer-brand .brand-name {
  color: var(--text-main);
}

.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-nav a:hover {
  color: #ff758c;
  transform: translateX(4px);
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 820px) {
  .nav-links, .nav-cta {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
    background: #fff;
    border: 2px solid #ff758c;
    color: #ff758c;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }
  .mobile-bottom-dock {
    display: flex;
  }
  body {
    padding-bottom: 75px;
  }
  .kawaii-mascot-fab {
    bottom: 85px;
    right: 16px;
  }
  .mascot-bubble {
    display: none;
  }
}

/* ==========================================================================
   BLACK HEADINGS - HIGH CONTRAST & CLEAR READABILITY (NOT WHITE)
   ========================================================================== */
h1, h2, h3, h4, h5, h6,
.hero-title,
.section-title,
.card-title,
.spot-title,
.dish-title,
.company-name,
.blog-card-title,
.page-title,
.feature-title,
.stat-title,
.page-header h1,
.spot-header h1,
.dish-header h1,
.company-header h1,
.blog-header h1,
.pref-header h1,
.faq-question,
.about-title {
  color: #0f172a !important; /* Crisp, readable bold black / charcoal */
  font-weight: 800 !important;
  text-shadow: none !important;
}

.hero-title {
  color: #0f172a !important;
}

.hero-title-accent {
  background: linear-gradient(135deg, #e11d48 0%, #ff758c 50%, #7c3aed 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  font-weight: 900 !important;
}

/* ==========================================================================
   SHINY BUTTONS & SPARKLE ANIMATIONS
   ========================================================================== */
.btn-cute-primary,
.cta-button-primary,
.nav-cta,
.btn-primary,
.btn-cute-secondary,
.cta-button-secondary,
.btn-secondary,
.spot-btn,
.dish-btn,
.company-btn,
.search-btn,
.hub-btn,
.read-more-btn,
.contact-submit-btn {
  position: relative !important;
  overflow: hidden !important;
  z-index: 1;
}

.btn-cute-primary::before,
.cta-button-primary::before,
.nav-cta::before,
.btn-primary::before,
.spot-btn::before,
.dish-btn::before,
.company-btn::before,
.read-more-btn::before,
.contact-submit-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -120%;
  width: 60%;
  height: 200%;
  background: linear-gradient(
    60deg,
    rgba(255, 255, 255, 0) 10%,
    rgba(255, 255, 255, 0.75) 50%,
    rgba(255, 255, 255, 0) 90%
  );
  transform: rotate(25deg);
  animation: shiny-button-sweep 3.2s infinite ease-in-out;
  pointer-events: none;
  z-index: 2;
}

@keyframes shiny-button-sweep {
  0% {
    left: -120%;
  }
  30% {
    left: 140%;
  }
  100% {
    left: 140%;
  }
}

/* Continuous Subtle Pulsing Glow on Primary Cute Buttons */
.btn-cute-primary,
.cta-button-primary,
.nav-cta,
.btn-primary {
  animation: shiny-button-glow 4s infinite alternate ease-in-out;
}

@keyframes shiny-button-glow {
  0% {
    box-shadow: 0 6px 20px rgba(255, 117, 140, 0.38), inset 0 1px 1px rgba(255, 255, 255, 0.6);
  }
  50% {
    box-shadow: 0 10px 28px rgba(255, 117, 140, 0.65), 0 0 15px rgba(255, 182, 193, 0.8), inset 0 1px 2px rgba(255, 255, 255, 0.9);
  }
  100% {
    box-shadow: 0 6px 20px rgba(255, 117, 140, 0.38), inset 0 1px 1px rgba(255, 255, 255, 0.6);
  }
}

/* Smooth Page Entrance & Card Reveal Animation */
.spot-card, .dish-card, .company-card, .blog-card, .feature-card, .faq-item {
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.35s ease;
}

.spot-card:hover, .dish-card:hover, .company-card:hover, .blog-card:hover, .feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
}
