/* Bluemonic Custom Button Colors - Using Brand Palette */

.button-primary {
  border-width: 1px !important;
  color: rgb(255 255 255) !important;
  background-color: #6E89A7 !important; /* Harmonized Light Blue from color palette */
  border-color: #6E89A7 !important;
}

.button-primary:hover {
  background-color: #425D77 !important; /* Midpoint blend for hover state */
  border-color: #425D77 !important;
}

/* Text overlay improvements for better readability - DISABLED per feedback */
/* .hero-text-overlay {
  background: rgba(30, 42, 54, 0.7) !important;
  backdrop-filter: blur(4px);
  border-radius: 0.75rem;
  padding: 2rem;
} */

/* CTA section text overlay with custom color - DISABLED per feedback */
/* .cta-text-overlay {
  background: rgba(132, 141, 162, 0.8) !important;
  backdrop-filter: blur(4px);
  border-radius: 0.75rem;
  padding: 2rem;
  margin: 1rem;
} */

/* Left-align the paragraph text in CTA section */
.cta-text-overlay .text-base {
  text-align: left !important;
}

/* Custom brand color gradient for featured text */
h1 strong, h2 strong, h3 strong, .text-highlight, .superheading strong {
  font-weight: 700 !important;
  color: transparent !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  background-image: linear-gradient(to right, #6E89A7, #9FB99E, #EDAC2F, #7C3E43) !important;
}

/* Navigation hover states using brand palette colors */
/* Main navigation links hover */
nav a:hover,
nav button:hover {
  color: #6E89A7 !important; /* Harmonized Light Blue */
  background-color: rgba(236, 228, 228, 0.5) !important; /* Warm-tinted Concrete Gray with opacity */
}

/* Dark mode navigation hover */
.dark nav a:hover,
.dark nav button:hover {
  color: #C8C6C0 !important; /* Gray-tinted Ash Gray for better contrast in dark mode */
  background-color: rgba(66, 93, 119, 0.3) !important; /* Midpoint blend with opacity */
}

/* Mobile navigation hover states */
.lg\\:hidden a:hover {
  color: #6E89A7 !important;
  background-color: rgba(236, 228, 228, 0.5) !important;
}

.dark .lg\\:hidden a:hover {
  color: #C8C6C0 !important;
  background-color: rgba(66, 93, 119, 0.3) !important;
}

/* Additional button variants using brand colors */
.button-kelp {
  border-width: 1px;
  color: rgb(255 255 255);
  background-color: rgb(59 81 68); /* dark kelp green from palette */
  border-color: rgb(59 81 68);
}

.button-kelp:hover {
  background-color: rgb(159 185 158); /* light kelp green from palette */
  border-color: rgb(159 185 158);
  color: rgb(30 42 54);
}

.button-solar {
  border-width: 1px;
  color: rgb(30 42 54);
  background-color: rgb(237 172 47); /* solar highlight from palette */
  border-color: rgb(237 172 47);
}

.button-solar:hover {
  background-color: rgb(220 150 20);
  border-color: rgb(220 150 20);
  color: rgb(255 255 255);
}

/* Icon color override to deep navy as requested in feedback */
.text-primary-500 {
  color: #1E2A36 !important;
}