/* Core Variables & Design Tokens */
:root {
  --primary-color: #aed60c;
  --primary-dark: #8cb009;
  --accent-color: #f23850;
  --accent-hover: #d1273e;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.3);
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  padding-top: 76px; /* Space for fixed navbar */
  margin-bottom: 0 !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--text-dark);
}

/* Glassmorphism Navbar */
.navbar-glass {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.navbar-glass .nav-link {
  color: var(--text-dark);
  font-weight: 600;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  border-radius: 8px;
  transition: var(--transition);
}

.navbar-glass .nav-link:hover {
  color: var(--primary-dark);
  background: rgba(174, 214, 12, 0.1);
}

/* Page Headers (Spacy Gradient) */
.page-header-spacy {
  background: linear-gradient(135deg, #749603 0%, var(--primary-dark) 40%, var(--primary-color) 100%);
  position: relative;
  overflow: hidden;
}

.page-header-spacy::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle at 60% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  transform: rotate(0deg);
  animation: slowOrbit 30s linear infinite;
  pointer-events: none;
}

@keyframes slowOrbit {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--text-dark);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transform: scale(1.05); /* Prepare for subtle pan animation if needed */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(174,214,12,0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  animation: fadeInUp 0.8s ease backwards;
}

.hero-content h1.myheadertext {
  font-size: 4rem;
  color: white !important;
  text-shadow: 0 4px 12px rgba(0,0,0,0.3) !important;
  margin-bottom: 1rem;
}

.svg-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 3;
}

/* Floating Tariff Cards */
.tariff-card {
  background: var(--bg-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
  position: relative;
  border: 1px solid rgba(0,0,0,0.05);
}

.tariff-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.tariff-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  padding: 1.5rem;
  color: white;
}

.tariff-header h3 {
  color: white;
  margin: 0;
}

.tariff-price {
  background: white;
  padding: 1rem;
  margin: 0 1rem;
  border-radius: 12px;
  transform: translateY(-50%);
  box-shadow: var(--shadow-sm);
  color: var(--text-dark);
}

.tariff-price h2 {
  color: var(--primary-dark);
  margin: 0;
}

.tariff-body {
  padding: 0 2rem 2rem;
  margin-top: -20px;
}

.tariff-action {
  background: var(--accent-color);
  color: white;
  padding: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  transition: var(--transition);
}

.tariff-action:hover {
  background: var(--accent-hover);
  color: white;
}

/* Steps Section */
.step-item {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 2rem;
  border-left: 4px solid var(--primary-color);
}

.step-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.step-img {
  width: 100px;
  height: auto;
  flex-shrink: 0;
}

.step-content h3 {
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.step-content p {
  margin: 0;
  color: var(--text-light);
  font-size: 1.1rem;
}

/* Feature Section (Warum) */
.feature-section {
  background: linear-gradient(135deg, #fff 0%, var(--bg-light) 100%);
  border-radius: 24px;
  padding: 4rem 2rem;
  box-shadow: var(--shadow-md);
}

/* Tables */
.table-premium {
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.table-premium thead th {
  background-color: var(--primary-color);
  color: white;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  padding: 1rem;
}

.table-premium tbody td {
  padding: 1rem;
  vertical-align: middle;
  border-color: #f3f4f6;
  font-family: 'Inter', sans-serif;
}

.table-premium tbody tr:hover {
  background-color: #f9fafb;
}

/* Custom Btn */
.btn-premium {
  background: var(--accent-color);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border: none;
  box-shadow: 0 4px 15px rgba(242, 56, 80, 0.3);
}

.btn-premium:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 56, 80, 0.4);
  color: white;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.floating-cat {
  animation: floatCat 4s ease-in-out infinite;
}

@keyframes floatCat {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* Stars Animations */
.star-twinkle {
  position: absolute;
  background-color: white;
  border-radius: 50%;
  animation: twinkle linear infinite;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

@keyframes twinkle {
  0% { opacity: 0.2; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
  100% { opacity: 0.2; transform: scale(0.8); }
}

.shooting-star {
  position: absolute;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
  animation: shootingStar 1.5s ease-out forwards;
  opacity: 0;
  border-radius: 50%;
  transform-origin: left center;
  box-shadow: 0 0 10px rgba(255,255,255,0.8);
}

@keyframes shootingStar {
  0% { transform: translateX(0) translateY(0) rotate(-45deg); opacity: 1; width: 0; }
  30% { opacity: 1; width: 100px; }
  100% { transform: translateX(-500px) translateY(500px) rotate(-45deg); opacity: 0; width: 0; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-content h1.myheadertext {
    font-size: 2.5rem;
  }
  .step-item {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    gap: 1rem;
    border-left: none;
    border-top: 4px solid var(--primary-color);
  }
  .feature-section {
    padding: 2rem 1rem;
  }
}

/* Clean Desktop menu layout */
@media (min-width: 992px) {
  .navbar-glass .nav-link { 
    white-space: nowrap; 
  }
  .brand-shift-right {
    margin-left: 7rem !important; /* Pushes the logo much further to the right */
  }
}


/* Slide in from right animation */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  opacity: 0;
  animation: slideInRight 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}


.hidden-card {
  opacity: 0;
}
