
:root {
    --background-color: #fff;
    --text-color: #000;
    --accent-color: #007acc;
    --accent-hover-color: #005bb5;
    --accent-active-color: #003f87;
    --border-color: #e0e0e0;
  }
  
  [data-theme='dark'] {
    --background-color: #121212;
    --text-color: #e0e0e0;
    --accent-color: #bb86fc;
    --accent-hover-color: #9f63d6;
    --accent-active-color: #7e3eb0;
    --border-color: #333;
  }
  
  /* Global Styles */
  body {
    font-family: Arial, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    padding: 0 1rem;
  }
  
  ul {
    list-style: none;
    padding: 0;
  }
  
  h1,
  h2,
  h3 {
    margin-bottom: 1rem;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande',
      'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-align: center;
  }
  
  a {
    color: var(--accent-color);
    text-decoration: none;
  }
  
  img {
    max-width: 100%;
  }
  
  svg {
    width: 25px;
  }
  
  /* Header */
  .logo {
    font-size: 2rem;
    font-weight: bold;
    font-family: 'Rosarivo', cursive;
    font-style: normal;
  }
  
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
  }
  
  nav ul {
    display: flex;
  }
  
  nav ul li a {
    padding: 0.25rem 0.5rem;
    margin: 0 0.25rem;
  }
  
  nav ul li a:hover {
    outline: 1px solid var(--accent-color);
    border-radius: 5px;
  }
  
  /* Main Content */
  main {
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  
  .hero {
    text-align: center;
  }
  
  /* Sections */
  .hero,
  .projects,
  .work-experience,
  .education {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  
  .projects ul {
    text-align: center;
    padding: 0;
  }
  
  .projects li {
    margin-bottom: 1rem;
  }
  
  .work-experience h3 {
    text-align: left;
  }
  
  .work-experience article {
    margin-bottom: 2rem;
  }
  
  .education ul {
    list-style-type: disc;
    padding-left: 2rem;
  }
  
  .feedback-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  blockquote {
    border: 1px solid var(--accent-color);
    padding: 1rem;
    border-radius: 5px;
    margin: 1rem 0;
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 1rem;
    border-top: 1px solid var(--border-color);
  }
  
  /* Contact */
  form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  label {
    font-weight: bold;
    font-size: 1rem;
    color: var(--text-color);
  }
  
  input,
  textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    background-color: var(--background-color);
    color: var(--text-color);
  }
  
  input:focus,
  textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px var(--accent-color);
  }
  
  button {
    padding: 0.75rem 1.5rem;
    background-color: var(--accent-color);
    color: var(--background-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: var(--accent-hover-color);
  }
  
  button:active {
    background-color: var(--accent-active-color);
  }
  
  /* Dark Mode Toggle Button */
  .toggle-theme {
    cursor: pointer;
    padding: 0.5rem;
    border: none;
    background-color: transparent;
    color: var(--accent-color);
  }
  
  /* Media query for desktop styles */
  @media (min-width: 768px) {
    .flex-wrapper {
      display: grid;
      grid-template-columns: repeat(10, 1fr);
      grid-template-rows: 1fr;
    }
    .projects {
      grid-area: 1 / 1 / 2 / 4;
    }
  
    .work-experience {
      grid-area: 1 / 4 / 2 / 8;
    }
  
    .education {
      grid-area: 1 / 8 / 2 / 11;
    }
  
    .projects,
    .work-experience,
    .education {
      width: unset;
    }
  
    .logo {
      flex-grow: 1;
    }
  
    nav {
      margin: 0 1rem;
    }
  
    section {
      padding: 1rem;
    }
  
    .hero {
      height: 33vh;
      justify-content: center;
    }
  
    h2,
    .projects ul {
      text-align: left;
    }
  
    .logo {
      font-size: 2.3rem;
    }
  
    header {
      padding-bottom: 0;
    }
  }  