/* 
 * Marée Brand Enhancements
 * Custom gradients and specific overrides not available in Tailwind utilities
 * Colors are defined in app/assets/tailwind/application.css @theme block
 */

/* Fix for Tailwind v4 base styles collapsing html height */
html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Ensure hero section is visible */
#hero {
  min-height: 600px;
}

@media (min-width: 768px) {
  #hero {
    min-height: 700px;
  }
}

@media (min-width: 1024px) {
  #hero {
    min-height: 800px;
  }
}

/* Custom multi-stop gradients (complex gradients not easily done with Tailwind) */
.bg-gradient-hero { 
  background: linear-gradient(to right, rgba(7, 42, 49, 0.1), rgba(178, 225, 216, 0.1), rgba(178, 225, 216, 0.05));
}

.bg-gradient-cta { 
  background: linear-gradient(to right, #1a4d52, rgba(26, 77, 82, 0.9), #90b8a6);
}

.bg-gradient-deepgreen-overlay { 
  background: linear-gradient(to right, #072a31, rgba(7, 42, 49, 0.8), transparent);
}

/* Text shadow for readability over specific gradients */
.bg-gradient-deepgreen-seafoam-br h5,
.bg-gradient-deepgreen-seafoam-br p {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Flash notification animations */
@keyframes slide-down {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slide-down {
  animation: slide-down 0.3s ease-out;
}
