@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  --primary-color: #2C3E50;
  --secondary-color: #1A252F;
  --accent-color: #E74C3C;
  --light-color: #ECF0F1;
  --dark-color: #11181F;
  --gradient-primary: linear-gradient(135deg, #2C3E50 0%, #1A252F 100%);
  --hover-color: #34495E;
  --background-color: #FAFAFA;
  --text-color: #333333;
  --border-color: rgba(44, 62, 80, 0.15);
  --divider-color: rgba(44, 62, 80, 0.1);
  --shadow-color: rgba(17, 24, 31, 0.1);
  --highlight-color: #F1C40F;
  --main-font: 'Oswald', sans-serif;
  --alt-font: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

.hover-link:hover {
    color: var(--highlight-color) !important;
    text-decoration: underline !important;
}

.neu-button {
    box-shadow:  6px 6px 12px var(--shadow-color), -6px -6px 12px #ffffff;
    transition: all 0.3s ease;
}

.neu-button:hover {
    box-shadow: inset 4px 4px 8px var(--shadow-color), inset -4px -4px 8px #ffffff;
    background-color: var(--hover-color) !important;
    color: var(--light-color) !important;
}

.neu-box {
    box-shadow:  8px 8px 16px var(--shadow-color), -8px -8px 16px #ffffff;
    transition: transform 0.3s ease;
}

.neu-box:hover {
    transform: translateY(-5px);
}

.menu-button {
    display: none;
}

@media (max-width: 768px) {
    .responsive-flex {
        flex-direction: column !important;
    }
    
    .menu-button {
        display: block;
    }
    
    .navigation {
        display: none;
        width: 100%;
        text-align: center;
        background-color: var(--dark-color);
        padding: 20px 0;
        position: absolute;
        top: 70px;
        left: 0;
        z-index: 50;
    }
    
    .navigation ul {
        flex-direction: column;
    }
    
    .menu-checkbox:checked ~ .navigation {
        display: block;
    }
}