/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
}

/* Header */
.custom-header {
    background-color: #222;
    color: white;
    padding: 15px 0;
}

.custom-header .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.logo img {
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    gap: 20px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.nav-menu a:hover {
    color: #ffcc00;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        background: #333;
        position: absolute;
        top: 65px;
        right: 0;
        width: 200px;
        padding: 10px;
    }

    .nav-menu.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}
