@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --g360-amber: #FBBF24;
    --g360-dark: #0F0F0F;
}

/* Global Typography - Based on Home.html */
body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    letter-spacing: -0.025em;
    font-weight: 700;
}

/* Hero Section Consistency */
.hero-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-animate {
    opacity: 0;
    animation: hero-entry 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.1s;
}

@keyframes hero-entry {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Navigation Polish */
.nav-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Fix: Dropdown Bridge to prevent disappearing */
.dropdown-wrapper {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 15px; /* Creates the bridge zone */
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 50;
}

.dropdown-wrapper:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

/* Content Utility */
.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
}

/* Selections */
::selection {
    background-color: rgba(251, 191, 36, 0.2);
    color: #92400e;
}
