@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Vazirmatn:wght@100..900&display=swap');

/* Tailwind utilities used in PHP templates but missing from the React build */
@media (min-width: 768px) {
  .md\:col-span-12 {
    grid-column: span 12 / span 12;
  }
}

/* Premium Golden Halo/Glow Hover Effect for All Buttons */
button, 
input[type="submit"],
a[class*="bg-"],
button[class*="bg-"],
.btn-gold-glow {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

button:hover,
input[type="submit"]:hover,
a[class*="bg-"]:hover,
button[class*="bg-"]:hover,
.btn-gold-glow:hover {
  box-shadow: 0 0 10px rgba(246, 201, 0, 0.6) !important;
  transform: scale(1.02) !important;
}

/* Elegant Golden Halo/Glow Hover Effect for All Cards */
div[class*="rounded-"][class*="cursor-pointer"],
div[class*="rounded-"][class*="hover:shadow-"],
div[class*="rounded-"][class*="hover:border-"],
div[class*="p-"][class*="rounded-2xl"],
div[class*="p-"][class*="rounded-3xl"],
div[class*="p-"][class*="rounded-[2.5rem]"] {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

div[class*="rounded-"][class*="cursor-pointer"]:hover,
div[class*="rounded-"][class*="hover:shadow-"]:hover,
div[class*="rounded-"][class*="hover:border-"]:hover,
div[class*="p-"][class*="rounded-2xl"]:hover,
div[class*="p-"][class*="rounded-3xl"]:hover,
div[class*="p-"][class*="rounded-[2.5rem]"]:hover {
  box-shadow: 0 6px 15px -3px rgba(246, 201, 0, 0.18), 0 0 10px rgba(246, 201, 0, 0.22) !important;
  border-color: rgba(246, 201, 0, 0.4) !important;
  transform: scale(1.015) !important;
}

/* Disable golden glow and scale hover effects on header, mega menu, and mobile menu navigation elements */
header button:hover,
header a:hover,
header div:hover,
[class*="z-30"] button:hover,
[class*="z-30"] a:hover,
[class*="z-30"] div:hover,
[class*="z-50"] button:hover,
[class*="z-50"] a:hover,
[class*="z-50"] div:hover,
.no-glow:hover,
button.no-glow:hover,
.no-glow button:hover {
  box-shadow: none !important;
  transform: none !important;
  border-color: inherit !important;
}

/* Grid bullet lists: default list-item display stacks items in one column (overlapping text) */
ul.grid {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

ul.grid > li {
  display: flex;
  align-items: flex-start;
  min-width: 0;
}

.blog-post-content :is(h2, h3, h4) {
  font-family: var(--font-display);
  color: #171717;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.blog-post-content :is(p, ul, ol) {
  color: #525252;
  font-weight: 300;
  line-height: 1.75;
}

.blog-post-content img {
  border-radius: 1rem;
  margin-block: 1.5rem;
}

.blog-post-content a {
  color: #b45309;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgb(245 158 11 / 0.3);
}
