/* ============================================
   Aloha Beach Festival - Elegant SVG Icons
   Replaces cartoony emoji with clean line-art
   ============================================ */

/* --- SVG Icon Styling --- */
.icon-circle svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: var(--color-ocean-teal);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--transition-fast);
}

.card:hover .icon-circle svg {
  stroke: var(--color-sky-orange);
}

/* --- Plumeria Card Decorations --- */
.card::before,
.card::after {
  position: absolute;
  font-size: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Cg fill='none' stroke='%230099CC' stroke-width='1.2' opacity='0.4'%3E%3Cpath d='M20 8c-1 4-4 7-4 7s5-1 7-4c2-3 1-6 1-6s-3 0-4 3z'/%3E%3Cpath d='M20 8c1 4 4 7 4 7s-5-1-7-4c-2-3-1-6-1-6s3 0 4 3z'/%3E%3Cpath d='M15 15c3 2 4 6 4 6s-1-5-4-7c-3-2-6-1-6-1s1 3 3 4z' transform='rotate(-36 20 20)'/%3E%3Cpath d='M25 15c-3 2-4 6-4 6s1-5 4-7c3-2 6-1 6-1s-1 3-3 4z' transform='rotate(36 20 20)'/%3E%3Cpath d='M18 22c1 3 0 7 0 7s-2-4-1-7c1-3 3-5 3-5s0 3-2 5z'/%3E%3Ccircle cx='20' cy='18' r='3' fill='%23FFB703' stroke='%23FFB703' opacity='0.35'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: opacity var(--transition-base);
  content: '';
}

.card::before {
  opacity: 0.25;
  top: 8px;
  right: 10px;
}

.card::after {
  opacity: 0.25;
  bottom: 8px;
  left: 10px;
  transform: rotate(180deg);
}

.card:hover::before,
.card:hover::after {
  opacity: 0.5;
}

/* --- Mobile: Scale SVG icons down --- */
@media (max-width: 767px) {
  .icon-circle svg {
    width: 28px;
    height: 28px;
  }
}
