@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  --primary-color: #8E44AD;
  --secondary-color: #2980B9;
  --accent-color: #F1C40F;
  --light-color: #ECF0F1;
  --dark-color: #2C3E50;
  --gradient-primary: linear-gradient(135deg, #8E44AD 0%, #2980B9 100%);
  --hover-color: #732D91;
  --background-color: #F9FAFB;
  --text-color: #34495E;
  --border-color: rgba(44, 62, 80, 0.15);
  --divider-color: rgba(142, 68, 173, 0.2);
  --shadow-color: rgba(44, 62, 80, 0.1);
  --highlight-color: #E67E22;
  --main-font: 'Oswald', sans-serif;
  --alt-font: 'Work Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Base input focus styles */
input:focus, textarea:focus {
    outline: none;
    border-color: var(--secondary-color) !important;
    box-shadow: 0 0 0 3px rgba(41, 128, 185, 0.2);
}

/* Hover Utilities */
.hover\:text-underline:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
}

.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}