/* ===========================================
   NALA STYLE - Tender Professional Theme
   Soft, Warm, and High Quality 🐱✨
   =========================================== */

/* Root Variables */
:root {
  /* Tender Palette */
  --color-cream: #FFFCF8;
  --color-pink-soft: #FFC8DD;
  --color-pink-deep: #FFAAC9;
  --color-blue-soft: #D6E6FF;
  /* Baby Blue */
  --color-blue-base: #5E9EFF;
  /* Soft Base Blue */

  /* Text */
  --text-main: #475569;
  /* Slate 600 */
  --text-light: #94A3B8;
  /* Slate 400 */

  /* UI Elements */
  --card-bg: #FFFFFF;
  --radius-xl: 32px;
  --radius-pill: 9999px;

  /* Shadows */
  --shadow-soft: 0 10px 40px -10px rgba(255, 170, 201, 0.2);
  --shadow-hover: 0 20px 50px -10px rgba(255, 170, 201, 0.4);
}

/* Base Styles */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Nunito', sans-serif;
  background-color: var(--color-cream);
  color: var(--text-main);
  background-image: radial-gradient(circle at 10% 10%, #FFF4E0 0%, transparent 20%),
    radial-gradient(circle at 90% 90%, #D6E6FF 0%, transparent 20%);
  background-attachment: fixed;
  overflow-x: hidden;
  max-width: 100vw;
}

/* Floating Social - Mobile: bottom right, vertical, smaller */
#floatingSocial {
  bottom: 20px !important;
  top: auto !important;
  transform: none !important;
  flex-direction: column !important;
  gap: 8px !important;
}

#floatingSocial a {
  width: 38px !important;
  height: 38px !important;
}

/* Floating Social - Desktop: center right, normal size */
@media (min-width: 1024px) {
  #floatingSocial {
    display: flex !important;
    top: 50% !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
    flex-direction: column !important;
    gap: 10px !important;
  }

  #floatingSocial a {
    width: 44px !important;
    height: 44px !important;
  }
}

/* Contract Address - Show full on desktop */
@media (min-width: 640px) {
  .contract-full {
    display: inline !important;
  }

  .contract-short {
    display: none !important;
  }
}

/* Custom Scrollbar - Cute Pink */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--color-cream);
}

::-webkit-scrollbar-thumb {
  background: #FFC8DD;
  border-radius: 99px;
  border: 4px solid var(--color-cream);
}

::-webkit-scrollbar-thumb:hover {
  background: #FFAAC9;
}

/* ===========================================
   COMPONENTS
   =========================================== */

/* Wrapper for clean layout */
.layout-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Soft Cards */
.soft-card {
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 200, 221, 0.3);
  /* Subtle pink border */
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.soft-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-pink-soft);
}

/* Typography */
.text-gradient {
  background: linear-gradient(135deg, #FF99C2, #5E9EFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.heading-xl {
  font-weight: 900;
  letter-spacing: -0.02em;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #5E9EFF, #8AB4F8);
  color: white;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 8px 20px -5px rgba(94, 158, 255, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px -5px rgba(94, 158, 255, 0.6);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: #5E9EFF;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  border: 2px solid #D6E6FF;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: #F0F7FF;
  border-color: #5E9EFF;
  transform: scale(1.05);
}

/* Badge */
.badge-soft {
  background: #FFF0F5;
  color: #FF8BA7;
  padding: 8px 16px;
  border-radius: 99px;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 16px;
}

/* Animations */
.float-gentle {
  animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(1deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

/* Paw Cursor */
body {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='%23FFC8DD' stroke='%23FF99C2' stroke-width='1'%3E%3Cpath d='M12 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z'/%3E%3C/svg%3E") 16 16, auto;
}

/* Social Icons */
.social-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: #5E9EFF;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #F0F0F0;
}

.social-icon:hover {
  color: white;
  transform: translateY(-3px) rotate(-5deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Mobile Hamburger */
.hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
  background-color: #5E9EFF;
  border-radius: 3px;
}

/* Hamburger Active State */
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: white;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.mobile-menu.open {
  max-height: 400px;
}

/* ===========================================
   HEADER BUTTON - Neon Style
   =========================================== */
.neon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #5E9EFF, #FF99C2);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(94, 158, 255, 0.3);
}

.neon-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(255, 153, 194, 0.4);
}

/* ===========================================
   BACKGROUND DECORATIONS
   =========================================== */
.paw-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.paw-bg::before,
.paw-bg::after {
  content: '🐾';
  position: absolute;
  font-size: 35px;
  opacity: 0.12;
  animation: floatPaws 20s linear infinite;
}

.paw-bg::before {
  left: 12%;
  animation-delay: 0s;
}

.paw-bg::after {
  left: 80%;
  animation-delay: -10s;
}

@keyframes floatPaws {
  0% {
    transform: translateY(100vh) rotate(0deg);
  }

  100% {
    transform: translateY(-100px) rotate(360deg);
  }
}

/* Extra floating paws */
.paw-float {
  position: fixed;
  pointer-events: none;
  z-index: 1;
  opacity: 0.15;
  animation: floatPaws 18s linear infinite;
}

/* ===========================================
   STEP CARDS - How to Buy
   =========================================== */
.step-card {
  background: white;
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  border: 2px solid transparent;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.step-card:hover {
  border-color: #FFC8DD;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 200, 221, 0.2);
}

.step-card .step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5E9EFF, #FF99C2);
  color: white;
  font-weight: 900;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-card .step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  padding: 16px;
  background: linear-gradient(135deg, #F0F9FF, #FFF0F5);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card .step-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ===========================================
   ORIGIN SECTION STYLING
   =========================================== */
.origin-card {
  background: white;
  border-radius: 32px;
  padding: 48px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 200, 221, 0.2);
}

.origin-card h3 {
  color: #1e293b;
  font-weight: 800;
  margin-bottom: 16px;
}

.origin-card p {
  color: #475569;
  line-height: 1.8;
}

/* ===========================================
   SECTION HEADERS
   =========================================== */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header .badge {
  display: inline-block;
  background: linear-gradient(135deg, #FFF0F5, #F0F9FF);
  color: #FF8BA7;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 139, 167, 0.2);
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #1e293b;
  margin-bottom: 16px;
}

@media (min-width: 640px) {
  .section-header h2 {
    font-size: 3rem;
  }
}

.section-header p {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

/* ===========================================
   CURRENT BADGE - Community Plan
   =========================================== */
.current-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FF8BA7, #FF6B9D);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 12px rgba(255, 107, 157, 0.4);
  z-index: 10;
}