@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  /* Colors from variant 1 selection: #2C3E50, #E74C3C, #ECF0F1, #34495E */
  --primary-color: #2C3E50;
  --secondary-color: #34495E;
  --accent-color: #E74C3C;
  --light-color: #ECF0F1;
  --dark-color: #1A252F;
  --gradient-primary: linear-gradient(135deg, #34495E 0%, #2C3E50 100%);
  --hover-color: #1A252F;
  --background-color: #F8F9F9;
  --text-color: #2C3E50;
  --border-color: rgba(44, 62, 80, 0.2);
  --divider-color: rgba(52, 73, 94, 0.1);
  --shadow-color: rgba(44, 62, 80, 0.15);
  --highlight-color: #2ECC71; /* Complementary to red */
  
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Open Sans', sans-serif;
}

/* Base Styles & Neumorphism Helpers */
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Hover effects */
a.hover\:text-underline:hover {
    text-decoration: underline;
}

.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 20px var(--shadow-color), -8px -8px 20px #ffffff;
}

/* Mobile Navigation Checkbox Hack (No JS) */
.hamburger-menu {
    display: none !important;
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: block !important;
    }
    
    .navigation {
        display: none;
        width: 100%;
        text-align: center;
        padding-top: 15px;
    }
    
    .navigation ul {
        flex-direction: column;
        width: 100%;
    }
    
    #menu-toggle:checked ~ .navigation {
        display: block;
    }
    
    footer div {
        flex-direction: column;
        text-align: center;
    }
}