@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&family=Inter:wght@400;500;600&family=IBM+Plex+Sans:wght@400;500;600;700&display=swap');

body {
    font-family: 'Outfit', sans-serif;
    background-color: #0f172a;
}

.font-inter {
    font-family: 'Inter', sans-serif;
}

.font-ibm {
    font-family: 'IBM Plex Sans', sans-serif;
}

/* Navbar Underline Animation */
.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: #2C2C2C;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-item:hover::after {
    width: 80%;
}

/* FIX: Alignment khusus untuk Kontak. */
.nav-item-contact::after {
    margin-left: 12px;
}

/* Dropdown Visibility Logic */
.group:hover .group-hover\:visible {
    visibility: visible;
}

.group:hover .group-hover\:opacity-100 {
    opacity: 1;
}

.group:hover .group-hover\:translate-y-0 {
    transform: translateY(0);
}

/* Slide Right Animation */
.slide-right-link {
    transition: all 0.3s ease-out;
    width: 100%;
    position: relative;
    z-index: 10;
    border-radius: 0.5rem;
    display: block;
}

.slide-right-link:hover {
    background-color: #01C172;
    color: white;
    transform: translateX(0.5rem);
    box-shadow: -2px 4px 10px rgba(0, 0, 0, 0.3);
}

/* Custom Shadows & Borders */
.custom-dropdown-shadow {
    box-shadow: 0px 2px 15px 0px rgba(16, 234, 144, 0.40);
}

.custom-dropdown-border {
    border-left: 0.8px solid #00CD78;
    border-right: 0.8px solid #00CD78;
    border-bottom: 0.8px solid #00CD78;
    border-top: none;
}

/* Custom Shapes */
.square-permanent {
    border-radius: 0 !important;
}

.blog-news-shape {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-left-radius: 5px !important;
    border-bottom-right-radius: 5px !important;
}

/* Language Hover Line */
.lang-hover-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: white;
    transition: width 0.3s ease;
}

.group:hover .lang-hover-line::after {
    width: 100%;
}

/* --- BACKGROUND STYLES --- */
.header-wrapper-bg {
    background: linear-gradient(90deg, rgba(25, 25, 25, 0.85) 0%, rgba(15, 15, 15, 0.85) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}

.navbar-green-overlay {
    background: linear-gradient(90deg, rgba(1, 207, 122, 0.8) 0%, rgba(2, 186, 110, 0.8) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}

/* Auth Styles */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

.auth-card {
    background: rgba(22, 27, 34, 0.95);
    border: 1px solid rgba(48, 54, 61, 0.8);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.auth-sidebar {
    background: linear-gradient(135deg, rgba(0, 214, 126, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    border-right: 1px solid rgba(48, 54, 61, 0.5);
}

.auth-form-container {
    background: transparent;
}