
/* style.css - Consolidated Upgrades */

/* Base Reset */
* { margin:0; padding:0; box-sizing:border-box; }
html { font-size:16px; scroll-behavior:smooth; }
body {
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background:#f5f7fa;
  color:#333;
  padding-top:80px; /* Header offset */
}

/* Tailwind Primary Overrides */
.bg-primary { background-color: #34A853 !important; }
.text-primary { color: #34A853 !important; }
.focus\:ring-primary:focus { box-shadow: 0 0 0 2px #34A853 !important; }

/* Gradient Header & Glow Animations */
header {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: linear-gradient(90deg, #4285F4, #34A853);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 5px rgba(255,255,255,0.6)); }
  50% { filter: drop-shadow(0 0 20px rgba(255,255,255,1)); }
}
.glow-logo img {
  animation: logoPulse 3s ease-in-out infinite;
  transition: transform 0.3s;
}
.glow-logo img:hover {
  transform: scale(1.1);
}

/* Nav Link Glow */
.glow-link {
  transition: all 0.3s ease;
}
.glow-link:hover {
  text-shadow: 0 0 8px rgba(255,255,255,0.8);
}

/* Button Styles */
.btn, button, .bg-primary {
  font-family: inherit;
  font-weight: 600;
}
.btn, .bg-primary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  background: linear-gradient(45deg, #4285F4, #34A853) !important;
  color:#fff !important;
  box-shadow: 0 0 12px rgba(66,133,244,0.6);
  transition: all 0.3s ease;
}
.btn:hover, .bg-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 24px rgba(66,133,244,0.8);
}

/* Utilities */
.container { max-width:1080px; margin:0 auto; padding:1rem; }
.mt-2 { margin-top:2rem; }
.mb-2 { margin-bottom:2rem; }
.text-center { text-align:center; }

/* Responsive */
@media (max-width:768px) {
  nav.hidden\.md\:flex { display: none; }
}
