/* ========== Global Reset & Base Styles ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', 'Segoe UI', Helvetica, Arial, sans-serif;
    background: #ffffff;
    color: #232323;
}

/* ========== Navbar Styles ========== */
.navbar {
    background: #282A35;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-icon {
    width: 30px;
    height: 30px;
    background: #04AA6D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 16px;
}

.logo-text {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

.nav-link {
    color: #f1f1f1;
    text-decoration: none;
    padding: 8px 16px;
    font-size: 14px;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #04AA6D;
}

.nav-link.active {
    color: #04AA6D;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 0;
    right: 0;
    height: 3px;
    background: #04AA6D;
}

/* ========== Hamburger Menu ========== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #f1f1f1;
    border-radius: 3px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ========== Mobile Menu ========== */
.mobile-menu {
    display: none;
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    background: #282A35;
    flex-direction: column;
    padding: 20px;
    gap: 10px;
    z-index: 999;
}

.mobile-menu.show {
    display: flex;
}

.mobile-menu .nav-link {
    padding: 12px 16px;
    border-radius: 4px;
}

.mobile-menu .nav-link:hover {
    background: #383a47;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
    .navbar-left .nav-link {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}
