@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  --primary-color: #2980B9;
  --secondary-color: #2C3E50;
  --accent-color: #27AE60;
  --light-color: #ECF0F1;
  --dark-color: #0F1021;
  --gradient-primary: linear-gradient(135deg, #2980B9 0%, #3498DB 100%);
  --hover-color: #34495E;
  --background-color: #FFFFFF;
  --text-color: #2C3E50;
  --border-color: rgba(41, 128, 185, 0.2);
  --divider-color: rgba(44, 62, 80, 0.1);
  --shadow-color: rgba(15, 16, 33, 0.08);
  --highlight-color: #F1C40F;
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Lato', serif;
}

* {
    scroll-behavior: smooth;
}

/* Neumorphism Base Effect */
.rounded-xl {
    box-shadow: 8px 8px 16px var(--shadow-color), -8px -8px 16px rgba(255, 255, 255, 0.8);
}

/* Mobile Menu Logic */
#menu-toggle:checked ~ .navigation {
    display: block !important;
}

@media (max-width: 768px) {
    .navigation ul {
        background: var(--dark-color);
        padding: 20px;
        position: absolute;
        width: 100%;
        left: 0;
        top: 60px;
        text-align: center;
    }
    .logo {
        margin: 0 auto;
    }
}

/* Transitions */
a, button, .flex-shrink-0 {
    transition: all 0.3s ease-in-out;
}

.group:hover {
    transform: scale(1.02);
}