/* Subtle global tweaks for the High on Life static site */

::selection {
  background-color: #6F3D8C;
  color: #FBF6F2;
}

html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Soft fade-in for hero sections */
@keyframes hol-fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

h1,
h2 {
  animation: hol-fade-up 0.7s ease-out both;
}

/* Cleaner placeholder color */
input::placeholder,
textarea::placeholder {
  color: #A89DAE;
}

/* Pastel tweaks for the homepage contact section */
.home-contact-hero {
  background-image: linear-gradient(135deg, rgba(241,220,235,0.96) 0%, rgba(252,245,236,0.96) 100%) !important;
  color: #2D2A30 !important;
  border: 1px solid rgba(124,80,107,0.06);
}
.home-contact-hero .absolute { opacity: 0.6; }
.home-contact-hero form {
  background: rgba(255,255,255,0.92) !important;
  border: 1px solid rgba(45,42,48,0.06) !important;
  color: #2D2A30 !important;
}
.home-contact-hero input,
.home-contact-hero textarea {
  background: #FBF6F2 !important;
  color: #2D2A30 !important;
}
.home-contact-hero button[type="submit"] {
  background: #F1DCE5 !important;
  color: #6F3D8C !important;
}
.home-contact-hero .uppercase { color: #7B3F69 !important; }
.home-contact-hero h2 { color: #2D2A30 !important; }
.home-contact-hero p { color: #4B4550 !important; }
