/* =============================
   Main Styles 
   ============================= */

   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    background-image: url(img/black.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
  }
  
  a,
  .btn {
    transition: all 300ms ease;
    color: gold;
    text-decoration: none;
  }
  
  a:hover {
    color: red;
    text-decoration: underline;
    text-underline-offset: 16px;
  }
  
  a:active {
    color: bisque;
  }
  
  /* =============================
     Navigation
     ============================= */
  
  /* Desktop nav (default) */
  #desktop-nav {
    display: flex;
    position: sticky;
    top: 0;
    z-index: 100;
    justify-content: space-around;
    align-items: center;
    height: 17vh;
  }
  
  .navbar-links {
    display: flex;
    gap: 32px;
    list-style: none;
    font-size: 24px;
  }
  
  .logo {
    color: gold;
    font-family: cursive;
    font-size: 32px;
    font-weight: bold;
  }
  
  .logo:hover {
    cursor: default;
  }
  
  /* Hamburger nav (hidden by default) */
  #hamburger-nav {
    display: none;
    position: sticky;
    top: 0;
    z-index: 100;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    height: 17vh;
  }
  
  .hamburger-menu {
    position: relative;
    display: inline-block;
  }
  
  .hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    width: 30px;
    cursor: pointer;
  }
  
  .hamburger-icon span {
    height: 3px;
    background-color: gold;
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 5px gold;
  }
  
  .menu-links {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition:  0.3s ease-in-out;
    z-index: 10;
  }

  .menu-links{
    max-height: 300;
  }
  
  .menu-links a {
    display: block;
    padding: 10px;
    text-align: center;
    font-size: 20px;
    color: aqua;
    text-decoration: none;
  }
  
  .menu-links li {
    list-style: none;
  }
  
  .menu-links.open {
    max-height: 300px;
  }
  
  .hamburger-icon.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger-icon.open span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger-icon.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  /* =============================
     Sections
     ============================= */
  
  section {
    min-height: 100vh;
    padding: 60px 30px;
    box-sizing: border-box;
    font-size: 16px;
    color: aqua;
  }
  
  .profile {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 40px 20px;
    min-height: 100vh;

  }
  
  .section_profile-picture {
    height: 180px;
    width: 180px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid gold;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
    background: transparent;
  }
  
  .circle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: transparent;
  }
  
  .section_text {
    text-align: center;
    color: aqua;
  }
  
  .section_text p {
    color: aqua;
    margin-bottom: 16px;
  }
  
  .section_paragraph1 {
    font-size: 20px;
  }
  
  .section_paragraph2 {
    font-weight: 100;
  }
  
  /*About */
  .section_about {
    padding: 100px 40px;
    max-width: 1000px;
    margin: auto;
    color: white;
    background-color: rgba(255, 255, 255, 0.05); 
    border-radius: 16px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
  }
  
  .section_about h2 {
    color: gold;
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .about-wrapper {
    overflow: hidden; /* clear  the float */
  }
  
  .about-text {
    float: left;
    width: 60%;
    padding-right: 20px;
  }
  
  .about-list {
    float: right;
    width: 35%;
    background-color: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-left: 2px solid gold;
    border-radius: 8px;
  }
  
  .about-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #ddd;
  }
  
  .about-list ul {
    list-style-type: disc;
    padding-left: 20px;
    color: #ccc;
  }
  
  .about-list li {
    margin-bottom: 10px;
    font-size: 16px;
  }

  /* skills*/

  .section_skills {
    padding: 100px 40px;
    max-width: 1000px;
    margin: auto;
    color: white;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
  }
  
  .section_skills h2 {
    color: gold;
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .skills-intro {
    text-align: center;
    font-size: 18px;
    color: #ccc;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .skills-flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .skills-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    color: #ddd;
  }
  
  .skills-list li {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid gold;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    color: #ddd;
    transition: transform 0.2s ease;
    min-width: 200px;
    text-align: center;
  }
  
  .skills-list li:hover {
    transform: scale(1.05);
    background-color: rgba(255, 215, 0, 0.1);
  }
  
  .skills-list .level {
    display: block;
    font-size: 14px;
    color: #aaa;
    margin-top: 6px;
  }
  
  .currently-learning {
    text-align: center;
    font-size: 16px;
    color: #aaa;
    margin-top: 40px;
    font-style: italic;
  }

  /*Interest*/

  .section_interest {
    padding: 100px 40px;
    max-width: 1000px;
    margin: auto;
    color: white;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
    padding-top: 100px; /* avoids navbar overlap */
  }
  
  .section_interest h2 {
    color: gold;
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .interest-intro {
    text-align: center;
    font-size: 18px;
    color: #ccc;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .interest-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 16px;
    color: #ddd;
  }
  
  .interest-list li {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 10px 15px;
    border-left: 3px solid gold;
    border-radius: 6px;
  }
  
  /* Contact / Socials */

  .section_contact {
    padding: 60px 40px;
    max-width: 800px;
    margin: auto;
    color: white;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
    padding-top: 100px;
    text-align: center;
  }
  
  .section_contact h2 {
    color: gold;
    font-size: 32px;
    margin-bottom: 20px;
  }
  
  .contact-intro {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .contact-socials {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 12px;
    border-radius: 6px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
  }
  
  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    color: #aaa;
  }
  
  .contact-form button {
    padding: 12px;
    background-color: gold;
    color: black;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .contact-form button:hover {
    background-color: #ffd700cc;
  }

  /*Footer */

  .site-footer {
    background-color: rgba(255, 255, 255, 0.03);
    color: whitesmoke;
    text-align: center;
    padding: 20px 10px;
    font-size: 14px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }