body {
    font-family: 'Inter', sans-serif;
    background-color: #1a202c; /* Dark background */
    color: #e2e8f0; /* Light text */
}

.font-im-fell-english-sc {
    font-family: 'IM Fell English SC', serif;
}
/* Custom styles for gradients and shadows */
.btn-primary {
    background-image: linear-gradient(to right, #6366f1, #8b5cf6); /* Indigo to Violet */
    transition: transform 0.2s ease-in-out;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px 0 rgba(139, 92, 246, 0.4);
}
.text-gradient {
    background-image: linear-gradient(to right, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* Shadow for text, for better contrast on hero background */
.shadow-text {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #2d3748;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 0.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.dropdown-content a {
    color: #e2e8f0;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {background-color: #4a5568}

.dropdown:hover .dropdown-content {
    display: block;
}