/* Minimal static CSS extracted/adapted from app/globals.css so the page works without a build */

/* Icon sizing tweak to resemble the React version */
.fa-icon-feature {
  font-size: 2rem !important;
  width: 2rem !important;
  height: 2rem !important;
}

/* Modern glass card */
.glass-card-modern {
  background: rgba(0, 0, 0, 0.15);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.glass-card-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}
.glass-card-modern:hover {
  background: rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
}
.glass-card-inner { padding: 2rem; position: relative; z-index: 1; }

/* Glass navigation bar */
.glass-nav {
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero panel */
.glass-panel-hero {
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

/* Glass shard visuals + float animation */
.glass-shard {
  background: rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  clip-path: polygon(20% 0%, 80% 0%, 100% 60%, 80% 100%, 20% 100%, 0% 40%);
}
.glass-float {
  animation: glassFloat 8s ease-in-out infinite;
}
@keyframes glassFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.6; }
  25% { transform: translateY(-30px) rotate(5deg); opacity: 0.8; }
  50% { transform: translateY(-15px) rotate(-3deg); opacity: 0.7; }
  75% { transform: translateY(-25px) rotate(2deg); opacity: 0.9; }
}

/* Text treatments */
.glass-text-3d {
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8),
    0 2px 0 rgba(255, 255, 255, 0.7),
    0 3px 0 rgba(255, 255, 255, 0.6),
    0 4px 0 rgba(255, 255, 255, 0.5),
    0 5px 0 rgba(255, 255, 255, 0.4),
    0 6px 0 rgba(255, 255, 255, 0.3),
    0 7px 0 rgba(255, 255, 255, 0.2),
    0 8px 0 rgba(255, 255, 255, 0.1),
    0 9px 10px rgba(0, 0, 0, 0.8),
    0 10px 20px rgba(0, 0, 0, 0.6),
    0 15px 30px rgba(0, 0, 0, 0.4);
  transform: perspective(500px) rotateX(15deg);
}
.glass-text-pulse {
  animation: text-pulse 3s ease-in-out infinite;
}
@keyframes text-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.02); }
}
.glass-text-glow {
  color: #ffffff;
  /* Subtle, white-only glow (reduced intensity) */
  text-shadow:
    0 0 6px rgba(255, 255, 255, 0.35),
    0 0 12px rgba(255, 255, 255, 0.2);
  /* Remove pulsing animation for a cleaner look on icons */
  animation: none;
}
@keyframes glow-pulse {
  from { text-shadow: 0 0 5px rgba(255,255,255,.8), 0 0 10px rgba(255,255,255,.6), 0 0 15px rgba(255,255,255,.4), 0 0 20px rgba(0,170,255,.8), 0 0 35px rgba(0,170,255,.6), 0 0 40px rgba(0,170,255,.4); }
  to { text-shadow: 0 0 10px rgba(255,255,255,1), 0 0 20px rgba(255,255,255,.8), 0 0 30px rgba(255,255,255,.6), 0 0 40px rgba(0,170,255,1), 0 0 70px rgba(0,170,255,.8), 0 0 80px rgba(0,170,255,.6); }
}

/* Button styles matching app */
.glass-button {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  transition: all 0.3s ease;
}
.glass-button:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
.glass-button-pastel {
  background: linear-gradient(135deg, rgba(255, 182, 193, 0.2), rgba(221, 160, 221, 0.2));
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 182, 193, 0.4);
  color: white; font-weight: 400; letter-spacing: 0.1em;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 20px rgba(255, 182, 193, 0.3);
}
.glass-button-pastel:hover {
  background: linear-gradient(135deg, rgba(255, 182, 193, 0.3), rgba(221, 160, 221, 0.3));
  border-color: rgba(255, 182, 193, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 182, 193, 0.4);
}
.glass-button-pastel-secondary {
  background: linear-gradient(135deg, rgba(173, 216, 230, 0.15), rgba(221, 160, 221, 0.15));
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(173, 216, 230, 0.3);
  color: rgba(255,255,255,.9);
  font-weight: 400; letter-spacing: .05em;
  transition: all .4s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 0 15px rgba(173,216,230,.2);
}
.glass-button-pastel-secondary:hover {
  background: linear-gradient(135deg, rgba(173, 216, 230, 0.25), rgba(221, 160, 221, 0.25));
  border-color: rgba(173,216,230,.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(173,216,230,.3);
}
.glass-button-pastel-primary {
  background: linear-gradient(135deg, rgba(255,182,193,.25), rgba(221,160,221,.25), rgba(173,216,230,.25));
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255,182,193,.5);
  color: white; font-weight: 400; letter-spacing: .1em;
  transition: all .4s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 0 25px rgba(255,182,193,.4);
}
.glass-button-pastel-primary:hover {
  background: linear-gradient(135deg, rgba(255,182,193,.35), rgba(221,160,221,.35), rgba(173,216,230,.35));
  border-color: rgba(255,182,193,.7);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255,182,193,.5);
}

/* Typography weight softening: neutralize heavy Tailwind weights */
.font-black, .font-extrabold, .font-bold { font-weight: 600 !important; }
.font-semibold { font-weight: 500 !important; }
.font-medium { font-weight: 400 !important; }
.font-light { font-weight: 300 !important; }

/* Headings default to normal-ish weight for a thinner look */
h1, h2, h3 { font-weight: 600 !important; }
