/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/* Base setup */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Orbitron', sans-serif;
  background: #0f0f0f;
  color: #fff;
  display: flex;
  height: 100vh;
}

/* Layout */
.container {
  display: flex;
  width: 100%;
}

/* Sidebar */
.sidebar {
  width: 250px;
  background: #1a1a1a;
  padding: 30px;
  text-align: center;
  border-right: 2px solid #00ffcc;
}

.sidebar h1 {
  font-size: 2em;
  margin-bottom: 10px;
  color: #00ffcc;
}

.sidebar p {
  font-size: 0.95em;
  color: #bbb;
  margin-bottom: 30px;
}

.sidebar nav a {
  display: block;
  margin: 15px 0;
  color: #00ffcc;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.sidebar nav a:hover {
  color: #ffffff;
}

/* Main Content */
.content {
  flex: 1;
  padding: 50px;
  animation: fadeIn 1.5s ease-in-out;
}

.content section {
  margin-bottom: 50px;
}

h2 {
  font-size: 1.8em;
  color: #00ffcc;
  margin-bottom: 15px;
}

p, a {
  font-size: 1.1em;
  color: #ddd;
}

a {
  text-decoration: none;
  color: #00ffcc;
}

a:hover {
  text-decoration: underline;
}

/* Skills box */
.skills-box {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.skills-box span {
  background: #00ffcc;
  color: #000;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 0 0 10px #00ffcc;
  transition: transform 0.3s ease;
}

.skills-box span:hover {
  transform: scale(1.1) rotate(-2deg);
  background: #00e6b8;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
