/* ==========================================================================
   LazyLabs Studio - Modern UI Theme & Stylesheet
   ========================================================================== */

:root {
  --studio-primary: #10b981;
  --studio-primary-dark: #059669;
  --studio-primary-light: #34d399;
  --studio-accent: #6366f1;
  --studio-dark: #0f172a;
  --studio-dark-surface: #1e293b;
  --studio-light: #f8fafc;
  --studio-border: #e2e8f0;
  --studio-text-main: #0f172a;
  --studio-text-muted: #64748b;
  --studio-radius: 1rem;
  --studio-radius-lg: 1.5rem;
}

html {
  font-size: 15px;
  position: relative;
  min-height: 100%;
  scroll-behavior: smooth;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--studio-light);
  color: var(--studio-text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Inter', sans-serif;
  letter-spacing: -0.02em;
}

/* ==========================================================================
   Navigation Bar Styles
   ========================================================================== */

.bg-studio-nav {
  background-color: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.studio-brand-text {
  font-size: 1.25rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.studio-subbrand {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  font-weight: 500;
}

.hover-white {
  transition: color 0.2s ease, transform 0.2s ease;
}

.hover-white:hover {
  color: #ffffff !important;
  transform: translateY(-1px);
}

.dropdown-studio {
  background-color: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 0.5rem;
}

.dropdown-studio .dropdown-item {
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.dropdown-studio .dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   Buttons & Links
   ========================================================================== */

.btn {
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--studio-primary) 0%, var(--studio-primary-dark) 100%);
  border: none;
  color: #ffffff;
}

.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(135deg, var(--studio-primary-light) 0%, var(--studio-primary) 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(16, 185, 129, 0.4);
}

.btn-outline-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   Hero Section Styles & Subtle Floating Circles Background
   (Reused from lazylabs.tibbevereecke.be, fitted for the modern studio UI)
   ========================================================================== */

.hero-studio-section {
  position: relative;
  background: radial-gradient(circle at 85% 25%, rgba(56, 189, 248, 0.16) 0%, transparent 50%),
              radial-gradient(circle at 15% 75%, rgba(16, 185, 129, 0.18) 0%, transparent 50%),
              linear-gradient(135deg, #0b1523 0%, #0d2922 45%, #0c2538 80%, #0f172a 100%);
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.hero-studio-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
  animation: float 20s infinite linear;
  pointer-events: none;
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-100px) rotate(360deg); }
}

.hero-mascot-img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-mascot-img:hover {
  transform: scale(1.03);
}

.hero-mascot-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, rgba(56, 189, 248, 0.05) 70%, transparent 100%);
  filter: blur(40px);
  border-radius: 50%;
  z-index: 1;
}

.hero-floating-badge {
  position: absolute;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 3;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  animation: floatBadge 4s ease-in-out infinite alternate;
}

.badge-ttrpg {
  top: 10%;
  left: -10%;
}

.badge-gamify {
  bottom: 10%;
  right: -5%;
  animation-delay: 2s;
}

@keyframes floatBadge {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-10px); }
}

@media (max-width: 991.98px) {
  .badge-ttrpg {
    left: 0;
  }
  .badge-gamify {
    right: 0;
  }
}

.text-gradient-accent {
  background: linear-gradient(135deg, #34d399 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Animation utilities matching lazylabs.tibbevereecke.be */
.fade-in {
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.slide-in-right {
  animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ==========================================================================
   Product Feature Cards & Studio Gradients
   ========================================================================== */

.bg-gradient-panic {
  background: linear-gradient(135deg, #b45309 0%, #7c2d12 100%);
}

.bg-gradient-wander {
  background: linear-gradient(135deg, #059669 0%, #0369a1 100%);
}

.bg-gradient-primary {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.product-feature-card {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.product-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.12) !important;
}

.hover-elevate {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-elevate:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 25px -8px rgba(0, 0, 0, 0.1) !important;
}

.studio-glass-panel {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   Content & Articles (Legal & About)
   ========================================================================== */

.content-article {
  color: #334155;
  line-height: 1.8;
}

.content-article h1, .content-article h2, .content-article h3, .content-article h4 {
  color: #0f172a;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.content-article p {
  margin-bottom: 1.25rem;
}

.content-article a {
  color: #10b981;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.content-article a:hover {
  color: #059669;
}

/* ==========================================================================
   Footer Styles
   ========================================================================== */

.bg-dark-studio {
  background-color: #090e17;
}

.studio-footer a {
  transition: color 0.2s ease;
}

.studio-footer hr {
  border-color: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   Form Controls
   ========================================================================== */

.form-control, .form-select {
  border-radius: 0.75rem;
  border: 1px solid var(--studio-border);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus, .form-select:focus {
  border-color: var(--studio-primary);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

/* ==========================================================================
   Responsive Utilities
   ========================================================================== */

@media (max-width: 991.98px) {
  .badge-ttrpg {
    left: 0;
  }
  .badge-gamify {
    right: 0;
  }
}
