/* Custom Styles */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #0a192f;
    color: #f8f9fa;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a192f;
}

::-webkit-scrollbar-thumb {
    background: #98ff98;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #76c976;
}

/* Typography Adjustments */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
}

p, a, span, button {
    font-family: 'Manrope', sans-serif;
}

/* Mobile Menu Transitions */
#mobile-menu {
    transition: opacity 0.3s ease-in-out;
}

#mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

/* Image Hover Effects */
img {
    transition: transform 0.5s ease, filter 0.5s ease;
}

/* Focus Styles */
a:focus, button:focus {
    outline: 2px solid #98ff98;
    outline-offset: 4px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .font-serif {
        font-size: 3rem;
    }
    
    .lg\:col-span-7 {
        text-align: center;
    }
    
    .lg\:col-span-5 {
        display: none;
    }
    
    .border-l-2 {
        border-left: none;
        border-top: 2px solid #98ff98;
        padding-left: 0;
        padding-top: 1.5rem;
    }
}
