/* General resets */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Arial", sans-serif;
}

html {
  overflow-y: scroll;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #1a202c;
  color: #e2e8f0;
  line-height: 1.6;
  padding: 20px;
}

a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header and Navigation Menu */
header {
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
}

.nav-menu {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}

.nav-menu li {
  padding: 5px 0;
}

.nav-menu a {
  color: white;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #d1eaff;
}

/* Sticky Menu Styles */
.sticky-menu {
  position: fixed;
  top: 50%;
  right: 300px;
  width: 250px;
  padding: 20px;
  background-color: #2d3748;
  color: #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transform: translateY(-50%);
}

.sticky-menu h3 {
  color: #68d391;
  font-size: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #3498db;
  padding-bottom: 0.5rem;
}

.sticky-menu ul {
  font-size: 1rem;
  margin-top: 0;
  line-height: 1.4;
  list-style-type: none;
  padding: 0;
  margin: 1rem 0;
}

.sticky-menu ul li {
  margin-bottom: 10px;
}

.sticky-menu ul li a {
  color: #63b3ed;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sticky-menu ul li a:hover {
  color: #e67e22;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .sticky-menu {
    position: static;
    width: 100%;
    transform: none;
    margin-top: 100px;
  }
  .sticky-mobile {
    margin-top: 170px !important;
  }
  .picture-mobile {
    margin-top: 30px !important;
  }
}

/* Additional styles from base.html */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  position: relative;
  width: 100%;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero .text-container {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.hero .image-container {
  margin-bottom: 2rem;
}

.hero img {
  width: 150px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hero .container .text-center {
  text-align: center;
}

.hero .container .text-center h2 {
  font-size: 2.5rem;
  font-weight: bold;
}
.hero .container .text-center p {
  font-size: 1.25rem;
  margin-top: 1rem;
}
.hero .container .text-center a {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #007bff;
  color: white;
  border-radius: 0.375rem;
  transition: background-color 0.3s ease;
}
.hero .container .text-center a:hover {
  background-color: #0056b3;
}

/* Skills Container */
.skills-container {
  position: fixed;
  top: 50%;
  left: 300px;
  width: 200px;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  color: #e2e8f0;
  transform: translateY(-50%);
}
.skills-container h3 {
  margin-top: 0;
  font-size: 1.2em;
  font-weight: bold;
  color: #007bff;
}
.skills-container ul {
  list-style-type: none;
  padding: 0;
}
.skills-container ul li {
  margin-bottom: 10px;
}

.bg-dark {
  background-color: #2d3748;
}

.text-light {
  color: #e2e8f0;
}

.hover-light:hover {
  color: #63b3ed;
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
}

html {
  scroll-behavior: smooth;
}

/* Responsive design */
@media (max-width: 768px) {
  .nav-menu {
      flex-direction: column;
      gap: 10px;
  }
  main {
      margin-right: 0;
  }
  .hero .container {
      flex-direction: column;
  }
  .hero .container .text-center {
      text-align: center;
  }
}

/* Responsive design */
@media (max-width: 1024px) {
  .skills-container {
      left: 20px;
  }
}

@media (max-width: 768px) {
  .skills-container {
      position: static;
      width: 100%;
      transform: none;
  }
}

.contact-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-icons li {
  display: inline-block;
}

.contact-icons a {
  color: #63b3ed;
  font-size: 1.2em;
}

.contact-icons a:hover {
  color: #d1eaff;
}

.experience-entry {
  background-color: #2d3748;
  border: 1px solid #4a5568;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.experience-entry h3 {
  color: #edf2f7;
}

.experience-entry p,
.experience-entry ul {
  color: #e2e8f0;
}

.experience-entry ul {
  margin-top: 10px;
}

.experience-entry li {
  margin-bottom: 5px;
}