* {
    font-family: 'Exo 2', Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: linear-gradient(135deg, black 0%, #34495e 100%);
}
header {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    height: 80px;
    padding: 10px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: transparent;
    transition: all 0.5s ease;
}

header.scrolled {
    background-color: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
    height: 70px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

header a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

header a:hover {
    color: #ff6b35;
}

.logo {
    float: left;
    height: 60px;
    width: auto;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

header.scrolled .logo {
    height: 50px;
}

.logoImg {
    float: left;
    height: 100%;
    width: auto;
}

.logoTxt {
    float: left;
    height: 100%;
    font-weight: 700;
    padding-left: 15px;
    display: flex;
    align-items: center;
    color: white;
    font-size: 1.4em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.smlNavBtn {
    height: 50px;
    float: right;
    padding: 10px;
    display: flex;
    align-items: center;
    color: white;
    cursor: pointer;
    font-size: 28px;
    transition: color 0.3s ease;
}

.smlNavBtn:hover {
    color: #4CAF50;
}

.smlNavHold {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.8);
    z-index: 999;
    display: none;
}

.smlNav {
    position: fixed;
    top: 0;
    right: -100%;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    width: 85%;
    max-width: 350px;
    height: 100%;
    margin-top: 0;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: -5px 0 25px rgba(0,0,0,0.3);
}

.smlNav ul {
    margin: 0;
    padding: 100px 0 0 0;
    list-style: none;
    width: 100%;
}

.smlNav ul a {
    display: block;
    width: 100%;
    transition: background-color 0.3s ease;
}

.smlNav ul a:hover {
    background-color: rgba(255,255,255,0.1);
}

.smlNav ul li {
    font-weight: 600;
    padding: 18px 25px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: white;
    width: 100%;
    font-size: 1.1em;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.smlNav ul a:hover li {
    color: #ff6b35;
    padding-left: 30px;
}

.bgNav {
    float: left;
    margin-left: 40px;
    height: 60px;
    display: flex;
    align-items: center;
}

.bgNav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.bgNav ul li {
    font-weight: 600;
    padding: 0 20px;
    color: white;
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.bgNav ul li:hover {
    color: #ff6b35;
    transform: translateY(-2px);
}

.bgNav ul li::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.bgNav ul li:hover::after {
    width: 80%;
}

/* Mobile First - Default styles for small screens */
@media only screen and (max-width: 899px) {
    .bgNav {
        display: none;
    }
    .smlNavBtn {
        display: flex;
    }
}

@media only screen and (min-width: 700px) {
    header {
        padding: 10px 30px;
    }
}

@media only screen and (min-width: 900px) {
    header {
        padding: 10px 80px;
    }
    .smlNavHold, .smlNavBtn {
        display: none !important;
    }
    .bgNav {
        display: flex !important;
    }
}

@media only screen and (min-width: 1200px) {
    header {
        padding: 10px 120px;
    }
    .bgNav ul li {
        padding: 0 25px;
        font-size: 1.05em;
    }
}

@media only screen and (min-width: 1400px) {
    header {
        padding: 10px 150px;
    }
    .bgNav {
        margin-left: 60px;
    }
}
