/* Custom styles for SmartaHemsidor */

/* Hero section with background text effect */
.hero-section {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Logo styling */
.logo-container {
  position: relative;
}

.logo-icon {
  font-size: 4rem;
  color: #ffd700;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
  animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
  0% { transform: scale(1); filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5)); }
  100% { transform: scale(1.1); filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.8)); }
}

/* Main heading with pulsating shadow */
.display-1 {
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  animation: textPulse 2s ease-in-out infinite alternate;
}

@keyframes textPulse {
  0% {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  }
  100% {
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.8), 0 0 60px rgba(255, 255, 255, 0.4);
  }
}

/* Button styling */
.btn-light {
  background: rgba(255, 255, 255, 0.95);
  border: none;
  color: #1e3c72;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-light:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3rem;
  }

  .logo-icon {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .display-1 {
    font-size: 2.5rem;
  }

  .btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }

  .logo-icon {
    font-size: 2.5rem;
  }
}