/* ===== Base Styles ===== */
body {
    margin: 0;
    font-family: Georgia, 'Times New Roman', Times, serif;
    background: linear-gradient(to top, #e9bdff 0%,#d6962f 40%,#bdfeff 80%);
    overflow-x: hidden;
}

html,body {
    overflow-x: hidden;
}











/* ===== Topbar ===== */
.topbar {
    overflow: hidden;
    background-image: url(/bs.png);/* ===== BARRA TOOPER 6 ===== */
    filter: brightness(150%);
    background-position-y: -80px;/* ===== 32 ===== */
    height: 102PX; /* ===== 80 ===== */
    transform: scaleX(1.1);
    transform-origin: right;
}

/* ===== Mobile Menu Button ===== */
.menu-btn {
    display: none;
    position: absolute;
    top: 20px;
    left: 20px;
    background: none;
    border: none;
    z-index: 20001;
    cursor: pointer;
}
.menu-icon {
    width: 30px;
    height: 4px;
    background: #fff;
    display: block;
    position: relative;
}
.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 4px;
    background: #fff;
    left: 0;
}
.menu-icon::before { top: -10px; }
.menu-icon::after { top: 10px; }

/* ===== Side Menu (Mobile) ===== */
.side-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 70vw;
    max-width: 300px;
    height: 100vh;
    background: #2d2d2d;
    box-shadow: 2px 0 20px rgba(0,0,0,0.3);
    z-index: 20000;
    flex-direction: column;
    padding: 40px 20px 20px 20px;
    transition: transform 0.3s ease;
    transform: translateX(-100%);
}
.side-menu.open {
    display: flex;
    transform: translateX(0);
}
.side-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1.3rem;
    margin: 20px 0;
}
.close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    align-self: flex-end;
    margin-bottom: 20px;
    cursor: pointer;
}

.topbar a {
    float: right;
    color: aliceblue;
    text-align: center;
    padding: 7px 16px;
    text-decoration: none;
    font-size: clamp(1rem, 5vw, 2rem);
}   














@media(max-width: 1300px) {
      /* Hide desktop topbar, show menu button */
    .topbar {
        display: block;
    }
    .menu-btn {
        display: block;
    }
    /* Show side menu when open (handled by JS) */
    .side-menu {
        display: flex;
    }
    
    #PCbarBtn{
        display: none;
    }
}




















