@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  --primary-color: #337357;
  --secondary-color: #5CB338;
  --accent-color: #FB4141;
  --light-color: #FEFAE0;
  --dark-color: #0F1021;
  --gradient-primary: linear-gradient(135deg, #337357 0%, #5CB338 100%);
  --hover-color: #337357;
  --background-color: #FFFFFF;
  --text-color: #2C3E50;
  --border-color: rgba(92, 179, 56, 0.2);
  --divider-color: rgba(51, 115, 87, 0.1);
  --shadow-color: rgba(44, 62, 80, 0.1);
  --highlight-color: #ECE852;
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Poppins', serif;
}

/* Colorful Neumorphism */
.bg-white, .bg-gray-50 {
    box-shadow: 15px 15px 30px #e0e0e0, -10px -10px 30px #ffffff !important;
    border: 1px solid rgba(255,255,255,0.8);
}

.navigation ul li a { position: relative; }
.navigation ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--highlight-color);
    transition: 0.3s;
}
.navigation ul li a:hover::after { width: 100%; }

img { transition: 0.5s; }
img:hover { filter: saturate(1.2); }