@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  --primary-color: #3498DB;
  --secondary-color: #E74C3C;
  --accent-color: #9B59B6;
  --dark-color: #2C3E50;
  --light-color: #FDFEFE;
  --background-color: #F4F6F6;
  --text-color: #34495E;
  --border-color: rgba(52, 152, 219, 0.2);
  --divider-color: rgba(231, 76, 60, 0.1);
  --shadow-color: rgba(44, 62, 80, 0.1);
  --highlight-color: #F39C12;
  --main-font: 'Lora', serif;
  --alt-font: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

a:hover {
    opacity: 0.8;
}

.feature-card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

details > summary::-webkit-details-marker {
    color: var(--accent-color);
}

@media (min-width: 768px) {
    .hamburger { display: none !important; }
    .mobile-menu { display: flex !important; flex-direction: row !important; padding-top: 0 !important; }
}