@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  --primary-color: #2ECC71;
  --secondary-color: #34495E;
  --accent-color: #F39C12;
  --light-color: #BDC3C7;
  --dark-color: #2C3E50;
  --gradient-primary: linear-gradient(135deg, #27AE60 0%, #2ECC71 100%);
  --hover-color: #27AE60;
  --background-color: #F8F9FA;
  --text-color: #2C3E50;
  --border-color: rgba(46, 204, 113, 0.3);
  --divider-color: rgba(52, 73, 94, 0.1);
  --shadow-color: rgba(44, 62, 80, 0.15);
  --highlight-color: #8E44AD;
  --main-font: 'Oswald', sans-serif;
  --alt-font: 'Lato', sans-serif;
}

html {
    scroll-behavior: smooth;
}

.hover-text:hover {
    color: var(--primary-color) !important;
}

.feat-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* Mobile Menu - Pure CSS */
#nav-toggle:checked ~ nav {
    display: flex !important;
}

details > summary {
    list-style: none;
    position: relative;
    padding-right: 30px;
}
details > summary::-webkit-details-marker {
    display: none;
}
details > summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    transition: transform 0.3s;
}
details[open] > summary::after {
    transform: translateY(-50%) rotate(180deg);
}

details[open] summary ~ * {
    animation: fadeInDown 0.4s ease-in-out;
}
@keyframes fadeInDown {
    0%    {opacity: 0; transform: translateY(-10px);}
    100%  {opacity: 1; transform: translateY(0);}
}