/* Global Styles */
:root {
    --bg-color: #000000;
    --text-color: #ffffff;
    --primary-color: #B834A0;
    /* Rose Rahmat */
    --accent-color: #00AEEF;
    /* Blue Cyan */
    --accent-hover: #22B2EE;
    /* Blue Hover */
    --header-height: 80px;
    --font-primary: 'Fira Sans Condensed', sans-serif;
    --font-secondary: 'Lato', sans-serif;
    --border-radius-btn: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-secondary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Header */
header {
    background-color: #000000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    border-bottom: none !important;
    text-decoration: none !important;
}

.logo img {
    height: 50px;
    /* Adjust based on actual image */
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-item {
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    /* Match uppercase style in screenshot if needed, looks mixed case */
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-item:hover {
    color: var(--accent-hover);
}

.nav-item.dropdown::after {
    content: '▼';
    font-size: 10px;
    margin-left: 5px;
}

.investment-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.investment-icon {
    color: var(--accent-color);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-icon {
    cursor: pointer;
    font-size: 20px;
}

.login-btn {
    border: 1px solid #ffffff;
    padding: 8px 24px;
    border-radius: var(--border-radius-btn);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background-color: #ffffff;
    color: #000000;
}

/* Main Content */
main {
    flex: 1;
}

/* Footer */
footer {
    background-color: #000000;
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #ffffff;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo img {
    height: 30px;
    width: auto;
    /* User said image is in upper left of footer?? Assuming left side */
}

.copyright {
    color: #aaaaaa;
}

.footer-right {
    display: flex;
    gap: 30px;
}

.footer-link {
    text-decoration: underline;
    color: #ffffff;
}

.footer-link:hover {
    color: var(--accent-hover);
}