/* Climate Risk Analytics - HOOP Website Custom Styles */
/* Optimized for clean deployment with Tailwind CDN */

:root {
  --accent: #67f6ff;
  --emerald: #10b981;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.font-display {
  font-family: 'Space Grotesk', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Glassmorphism */
.glass {
  background: rgba(10, 10, 15, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(103, 246, 255, 0.12);
}

/* Section Headers */
.section-header {
  font-size: 2.1rem;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.03em;
}

/* Navigation */
.nav-link {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.nav-link:hover {
  color: #67f6ff;
}

.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: #67f6ff;
  transition: width 0.2s ease;
}

.nav-link:hover:after {
  width: 100%;
}

/* Cards */
.simple-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.simple-card:hover {
  transform: translateY(-4px);
  border-color: #67f6ff;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.offer-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px -12px rgb(103 246 255 / 0.15);
}

/* Form Inputs */
input, textarea, select {
  transition: all 0.2s ease;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #67f6ff;
  box-shadow: 0 0 0 3px rgba(103, 246, 255, 0.1);
}

/* Buttons */
.btn-primary {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: scale(0.985);
}

/* News specific */
.news-card {
  transition: all 0.3s ease;
}

.news-card:hover {
  transform: translateY(-3px);
  border-color: rgba(103, 246, 255, 0.3);
}

/* Utility */
.tracking-widest {
  letter-spacing: 0.1em;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .section-header {
    font-size: 1.75rem;
  }
}

/* PayPal button hover */
.paypal-btn img {
  transition: filter 0.2s ease, transform 0.2s ease;
}

.paypal-btn:hover img {
  filter: brightness(1.1);
  transform: scale(1.02);
}

/* Footer */
footer {
  font-size: 0.75rem;
}