/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Inter, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header styles */
.header-banner {
    width: 100%;
    height: 36px;
    background: rgba(0,0,0,1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-text {
    font-family: Inter;
    font-size: 22px;
    color: rgba(255,255,255,1);
    font-weight: 400;
}

.promo-banner {
    width: 100%;
    height: 36px;
    background: rgba(0,0,0,1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.promo-text {
    font-family: 'Iowan Old Style', serif;
    font-size: 20px;
    color: rgba(255,255,255,1);
    font-weight: 400;
}

/* Navigation styles */
.navbar {
    width: 100%;
    height: 72px;
    background: rgba(248,241,238,1);
    box-shadow: 0px 2px 20px 0px rgba(0,0,0,0.11);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 14px;
}

.nav-left {
    display: flex;
    align-items: center;
}

.nav-logo {
    width: 36px;
    height: 36px;
    margin-right: 8px;
}

.logo-text {
    font-family: Inter;
    font-size: 32px;
    color: rgba(0,0,0,1);
    cursor: pointer;
}

.logo-text .logo-bold {
    font-weight: 800;
}

.logo-text .logo-regular {
    font-weight: 400;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-icon {
    width: 36px;
    height: 36px;
    cursor: pointer;
}

/* Responsive design for common elements */
@media (max-width: 390px) {
    .banner-text, .promo-text {
        font-size: 16px;
    }

    .navbar {
        height: 60px;
        padding: 0 10px;
    }

    .logo-text {
        font-size: 24px;
    }

    .logo-text .logo-bold {
        font-weight: 800;
    }

    .logo-text .logo-regular {
        font-weight: 400;
    }

    .nav-icon {
        width: 28px;
        height: 28px;
    }
}
