/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base styles */
body {
  font-family: 'Segoe UI', Roboto, Helvetica, sans-serif;
  background-color: #0e0e0e;
  color: #e5e5e5;
  line-height: 1.6;
  font-size: 16px;
  padding: 0;
  margin: 0;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background-color: #151515;
  border-bottom: 1px solid #2c2c2c;
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  font-weight: bold;
  font-size: 1.2rem;
  color: #00ffe1;
}

.nav-right a {
  color: #ccc;
  text-decoration: none;
  margin-left: 1rem;
  font-size: 0.95rem;
}

.nav-right a:hover {
  color: #00ffe1;
}

/* Hero section */
.hero {
  text-align: center;
  padding: 3rem 1rem;
  background: linear-gradient(to bottom, #151515, #0e0e0e);
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.sub-header {
  font-size: 1.1rem;
  color: #b0b0b0;
  max-width: 600px;
  margin: 0 auto;
}

/* Sections */
.section {
  padding: 2rem 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.section h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.section p, .section li {
  margin-bottom: 1rem;
  color: #cccccc;
}

ul {
  list-style: disc;
  padding-left: 1.5rem;
}

/* Code formatting */
code {
  background: #1e1e1e;
  color: #f8f8f2;
  padding: 0.3rem 0.6rem;
  border-radius: 5px;
  font-family: monospace;
  font-size: 0.9rem;

}
/* Footer */
footer {
  text-align: center;
  font-size: 0.9rem;
  padding: 1.5rem;
  color: #888;
  background-color: #111;
  border-top: 1px solid #2c2c2c;
  margin-top: 2rem;
}

/* Responsive */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  .sub-header {
    font-size: 1.2rem;
  }

  .nav-right a {
    font-size: 1rem;
  }

  .section h2 {
    font-size: 1.6rem;
  }
}

/* Links */
.section#contact a {
    color: #ccc !important;
    text-decoration: none;
}

.section#contact a:hover {
    color: #00ffe1;
    text-decoration: underline;
}

/* Mailto */
a[href^="mailto:"] {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s ease;
}

a[href^="mailto:"]:hover {
    color: #00ffe1;
    text-decoration: underline;
}


a {
    color: #00ffe1;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #326273;
    text-decoration: underline;
}

