/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* VARIABLES */
  :root {
    --bg: #ffffff;
    --text: #000000;
    --border: #000000;
  }
  
  /* FONT */
  @font-face {
    font-family: "font1";
    src: url(../Fonts/Roboto-VariableFont_wdth\,wght.ttf) format("truetype");
  }
  
  /* GLOBAL */
  html, body {
    width: 100%;
    overflow-x: hidden;
  }
  
  body {
    font-family: "font1", sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
  }
  
  p, li {
    font-size: 18px;
  }
  
  /* HEADER */
  header {
    padding: 5px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1000;
  }
  
  header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
  }
  
  header img.logo {
    height: 80px;
  }
  
  /* NAVIGATION */
  nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  nav a {
    text-decoration: none;
    font-weight: bold;
    color: var(--text);
  }
  
  nav a:hover {
    text-decoration: underline;
  }
  
  /* HAMBURGER MENU */
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
  }
  
  .hamburger span {
    display: block;
    height: 3px;
    width: 25px;
    background-color: var(--text);
    border-radius: 2px;
  }
  
  #menu-toggle {
    display: none;
  }
  
  /* MOBILE NAV */
  .mobile-nav {
    display: none;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
  }
  
  #menu-toggle:checked + .hamburger + .mobile-nav {
    display: flex;
  }
  
  /* HERO SECTION */
  .mainLogo {
    width: 100%;
  }
  
  .mainLogo img {
    width: 100%;
    height: auto; 
    display: block;
    max-height: 650px;
    object-fit: cover;
  }
  
  .mainLogo-text {
    padding: 40px 20px;
    text-align: center;
  }
  
  .mainLogo-text h1 {
    font-size: 42px;
    margin-bottom: 10px;
  }
  
  .mainLogo-text p {
    font-size: 18px;
  }
  
  /* SECTIONS */
  section {
    padding: 20px;
  }
  
  .container {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .section-title {
    text-align: center;
    font-size: 32px;
  }
  
  /* ABOUT */
  .aboutMe {
    padding-top: 10px;
    padding-bottom: 30px;
  }
  
  /* BUTTONS */
  .button-wrapper {
    text-align: center;
    margin-top: 20px;
  }
  
  .consult {
    font-size: 18px;
    padding: 10px 24px;
    background-color: var(--bg);
    color: var(--text);
    border: 1px solid var(--border);
    cursor: pointer;
    font-family: "font1", sans-serif;
  }
  
  .consult:hover {
    background-color: var(--text);
    color: var(--bg);
  }
  
  /* CARDS */
  .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
  
  .card {
    border: 1px solid var(--border);
    padding: 25px;
    text-align: center;
  }
  
  .card h3 {
    margin-bottom: 10px;
  }
  
  /* SKILLS SECTION */
  #skills p {
    text-align: center;
  }
  
  /* LINKS */
  a {
    color: var(--text);
  }
  
  /* FOOTER */
  footer {
    padding: 20px;
    text-align: center;
  }
  
  footer img {
    height: 60px;
    margin-bottom: 10px;
  }
  
  /* CONTACT */
  #contact p {
    text-align: center;
  }
  
  #contact img {
    display: block;
    margin: 0 auto;
    width: 100px;
    height: auto;
  }
  
  /* RESUME */
.name {
    margin-top: 70px;
    margin-left: 10px;
    font-size: 70px;
    text-align: center;
}
.resume {
    gap: 20px;
    padding-left: 40px;
    padding-top: 0px;
    padding-right: 10px;
  }

  .contact-info{
    text-align: center;
    padding-bottom: 0px;
  }
  
  /* PROJECTS */
  #projects {
    margin-top: 80px;
    width: 100%
  }

.project-screenshots img{
    width: 300px;
}  

.project-info img {
    width: 60px;
}
  /* MOBILE RESPONSIVE RESUME */
  @media (max-width: 900px) {
    .resume {
      flex-direction: column; /* stack columns on mobile */
    }
  
    .left-column,
    .right-column {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }
  

  /* MOBILE RESPONSIVE */
  @media (max-width: 768px) {
    header .container {
      padding: 0 20px;
    }
  
    /* Show hamburger on mobile */
    .hamburger {
      display: flex;
    }
  
    /* Hide desktop nav on mobile */
    .desktop-nav {
      display: none;
    } 
  
     .contact-container {
      flex-direction: column;
    }
  
     .mainLogo-text {
      margin-top: 20px;
    }
  }
  