/* style.css for Cyberpunk Neon Theme */

/* General Styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: #222;
    color: #eee;
    overflow-x: hidden;
}

a {
    color: #03e9f4;
}

a:hover {
    color: #03e9f4;
    text-shadow: 0 0 3px #000000;
}

/* Sidebar Styles */
.sidebar {
    width: 250px;
    background: #111;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(0);
    transition: transform 0.4s ease-in-out;
    box-shadow: 2px 0 5px rgba(0, 255, 255, 0.2);
    z-index: 100;
}

.sidebar.hidden {
    transform: translateX(-100%);
}

.sidebar .menu-toggle {
  font-size: 18px;
  color: #eee;
  cursor: pointer;
  position: absolute;
  z-index: 100;
  background-color: #111;
  border-radius:5px;
  padding:5px 10px;
}

.sidebar .logo img {
    width: 100%;
}

.sidebar .menu {
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.sidebar .menu a {
	color:#eee;
    padding: 10px;
    text-decoration: none;
    transition: color 0.3s, text-shadow 0.3s;
}

.sidebar .footer {
    padding: 10px;
    text-align: center;
    font-size: 12px;
    color: #555;
}

/* Main Content Styles */
.main-content {
    margin-left: 250px;
    transition: margin-left 0.4s ease-in-out;
	padding: 50px;
}

/* When sidebar is hidden, main content takes full width */
.sidebar.hidden ~ .main-content {
    margin-left: 0;
}

/* Menu Show Button (displayed when sidebar is hidden) */
.menu-show {
    position: fixed;
    background: #111;
    color: #fff;
    border-radius:5px;
    padding:5px 8px;
    font-size: 16px;
    cursor: pointer;
    z-index: 90;
    display: none;  /* Hidden by default */
}

/* Header Styles (inside main-content) */
.main-content header {
	padding: 20px;
	border-radius:10px;
    background: #111;
	margin-bottom:20px;
}

.main-content header h1, .main-content h2 {
	margin: 0px;
}

/* Responsive Mobile Styles */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(0);
    }
    .sidebar.hidden {
        transform: translateX(-100%);
    }
    .main-content {
        margin-left: 0;
    }
}
