/* Copyright (c) 2025 Martin Bechard martin.bechard@DevConsult.ca */
/* This software is licensed under the MIT License. */
/* File path: /Users/martinbechard/dev/choco/index-custom.css */
/* This was generated by Gemini 2 with the assistance of my human mentor */
/* Custom styles for index.html */
/* Chocolate is like life - it's all about finding the right balance of bitter and sweet! */

/* Learn More Button Styles */
.learn-more-btn {
  display: inline-block;
  text-decoration: none;
}

.learn-more-btn .button-container {
  transition: background-color 0.3s ease;
  background-color: #8b4513; /* Original brown color */
}

.learn-more-btn:hover .button-container {
  background-color: #a0522d; /* Brighter brown on hover */
}

.learn-more-btn:active .button-container {
  background-color: #6b3811; /* Darker brown when active/clicked */
}

/* Custom animation for gleaming text effect */
@keyframes gleam {
  0% {
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.3);
  }
  50% {
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.6),
      0 0 18px rgba(255, 255, 255, 0.3);
  }
  100% {
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.3);
  }
}

.animate-gleam {
  animation: gleam 2s ease-in-out infinite;
}
