@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1,
h2,
h3,
.font-serif,
.font-outfit {
    font-family: 'Poppins', sans-serif;
}

p {
    line-height: 1.7;
    color: #1e293b;
    /* Slate 800 */
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.mega-menu {
    display: none;
    position: absolute;
    left: 0;
    width: 100%;
    background: white;
    z-index: 50;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.dropdown:hover .mega-menu {
    display: block;
}

.glass {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.hero-gradient {
    background: linear-gradient(to bottom,
            rgba(0, 10, 40, 0.85) 0%,
            rgba(0, 10, 40, 0.75) 50%,
            rgba(0, 10, 40, 0.9) 100%);
}

.gold-border {
    border-bottom: 2px solid #D4AF37;
}

.aspect-video {
    aspect-ratio: 16 / 9;
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #F8FAFC;
}

::-webkit-scrollbar-thumb {
    background: #00113D;
    border-radius: 100vh;
    border: 2px solid #F8FAFC;
}

::-webkit-scrollbar-thumb:hover {
    background: #D4AF37;
}

/* Firefox support */
html {
    scrollbar-width: thin;
    scrollbar-color: #00113D #F8FAFC;
}

/* Line Clamp for text truncation */
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Modal Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.3s ease-out forwards;
}

/* Prose styles for bio content */
.prose p {
    margin-bottom: 1rem;
    line-height: 1.8;
}