/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#f5f5f5;
}

/* TOPBAR */
.topbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:70px;
    background:#ff1493;
    color: white;
    display:flex;
    align-items:center;
    padding:0 20px;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
    z-index:1000;
}

.topbar h1{
    margin-left:15px;
    color:#333;
    font-size:24px;
}

/* SIDEBAR */
.sidebar{
    width:260px;
    height:100vh;
    background:linear-gradient(180deg,#ff69b4,#ff1493);
    position:fixed;
    top:0;
    left:-260px;
    padding:25px 20px;
    transition:0.3s;
    z-index:999;
    box-shadow:4px 0 15px rgba(0,0,0,0.1);
}

.sidebar.active{
    left:0;
}

.sidebar h2{
    color:white;
    text-align:center;
    margin:30px 0 40px;
    font-size:28px;
}

.sidebar a{
    display:block;
    color:white;
    text-decoration:none;
    padding:15px;
    margin-bottom:12px;
    border-radius:10px;
    transition:0.3s;
    font-size:17px;
}

.sidebar a:hover{
    background:rgba(255,255,255,0.2);
    transform:translateX(5px);
}

/* LOGO CIRCLE */
.logo{
    width:50px;
    height:50px;
    border-radius:50%;
    overflow:hidden;
    flex-shrink:0;
    border:2px solid white;
}

/* LOGO IMAGE */
.logo img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* TITLE */
.topbar h1{
    font-size:20px;
    font-weight:600;
    white-space:nowrap;
}

/* MENU */
.menu{
    font-size:30px;
    cursor:pointer;
    color:#ff1493;
}

/* SIDEBAR */
.sidebar{
    position:fixed;
    top:70px;
    left:-260px;
    width:260px;
    height:100%;
    background:linear-gradient(180deg,#ff69b4,#ff1493);
    padding:20px;
    transition:0.3s;
    z-index:999;
}

.sidebar.active{
    left:0;
}

.sidebar h2{
    color:white;
    text-align:center;
    margin-bottom:30px;
}

.sidebar a{
    display:block;
    color:white;
    text-decoration:none;
    padding:12px;
    margin:10px 0;
    border-radius:8px;
    transition:0.3s;
}

.sidebar a:hover{
    background:rgba(255,255,255,0.2);
}

/* CONTENT */
.content{
    margin-top:90px;
    padding:30px;
    transition:0.3s;
}

.content.shift{
    margin-left:260px;
}

/* HEADER */
.about-header{
    text-align:center;
    margin-bottom:40px;
}

.about-header h1{
    color:#ff1493;
    font-size:40px;
    margin-bottom:10px;
}

.about-header p{
    color:#555;
    font-size:18px;
}

/* CONTAINER */
.container{
    max-width:900px;
    margin:auto;
    background:white;
    padding:40px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.container h2{
    color:#ff1493;
    margin-bottom:15px;
    margin-top:25px;
}

.container p{
    color:#444;
    line-height:1.8;
    margin-bottom:20px;
}

.container ul{
    margin-left:20px;
    margin-bottom:20px;
}

.container li{
    margin-bottom:10px;
    color:#444;
}

/* INFO BOX */
.info{
    background:#fff0f6;
    padding:25px;
    border-radius:10px;
    margin-top:30px;
}

/* FOOTER */
footer{
    background:linear-gradient(135deg,#ff69b4,#ff1493);
    color:white;
    text-align:center;
    padding:20px;
    margin-top:40px;
}
