/* ================================
   MAIN STYLESHEET - GURMANZG.COM
   ================================ */

   :root {
    --primary-color: #00e5ff;
    --secondary-color: #ff4081;
    --background-color: #1a1a1a;
    --text-color: #f0f0f0;
    --section-bg: #1f1f1f;
    --dark-overlay: rgba(0, 0, 0, 0.6);
  }
  
  *, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.2s ease-out;
  }

  html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  main {
    flex: 1;
    width: 100%;
    padding: 0;
    background: transparent;
  }

  body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: var(--background-color);
    color: var(--text-color);
    scroll-behavior: smooth;
    padding-top: 0;
    position: relative;
    overflow-x: hidden;
  }

  #tsparticles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
  }  
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
  }
  
  h1, h2, h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: none;
  }
  
  p, li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  blockquote {
    font-style: italic;
    padding-left: 1rem;
    border-left: 3px solid var(--secondary-color);
    color: #ccc;
  }
  
  a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  a:hover {
    color: var(--secondary-color);
  }
  
  .button {
    display: inline-block;
    padding: 12px 24px;
    margin-top: 1rem;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-align: center;
  }
  .button:hover {
    background-color: #e91e63;
    transform: translateY(-2px);
  }
  
  header {
    background-color: #333;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: box-shadow 0.3s ease, text-shadow 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
    margin-bottom: -5px;
    gap: 80px;
    display: flex;
  }

  header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.6);
  }
  
  .logo {
    max-width: 90px;
    align-items: right;
    margin-right: 20px;
  }

  nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 40px;
  }
  nav ul li {
    list-style: none;
  }
  nav ul li a {
    font-size: clamp(0.9rem, 1vw + 0.4rem, 1.2rem);
    text-transform: uppercase;
    padding: 10px;
  }
  
  
  nav ul li a:hover,
  nav ul li a.active {
    color: var(--secondary-color);
  }
  
  
  .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 4px 0;
  }

  #hero-intro {
    text-align: center;
    padding: 140px 20px 60px;
  }
  #hero-intro h1 {
    font-size: 4rem;
    text-shadow: 0 0 25px var(--primary-color);
  }
  #hero-intro p {
    font-size: 1.4rem;
    margin-top: 20px;
  }
  
  
  .hero {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 180px 20px 120px;
    background-color: #0c0c0c;
    background-position: center;
    background-size: cover;
    z-index: 1;
    text-align: center;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url('/media/Logo_Banner.gif');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.06;
    z-index: 0;
  }
  
  .hero h1 {
    font-size: 3rem;
    text-shadow: 0 0 25px #00e5ff;
    z-index: 1;
    position: relative;
  }
  
  .hero .button {
    margin-top: 30px;
    background: var(--secondary-color);
    box-shadow: 0 0 15px #ff4081;
    font-weight: bold;
  }
  
  section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto 60px;
    background-color: var(--section-bg);
    border-radius: 10px;
    border: 1px solid #00e5ff22;
    box-shadow: 0 0 20px #ff408144;
    backdrop-filter: blur(4px);
  }
  
  .features ul {
    list-style: none;
    padding-left: 0;
  }
  .features ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .features ul li::before {
    content: '⮞';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
  }
  
  .screenshot-grid {
    display: flex;
    justify-content: center;
    padding-top: 10px;
  }
  .screenshot-grid img {
    width: 80%;
    max-width: 700px;
    border-radius: 10px;
    box-shadow: 0 0 18px rgba(0, 229, 255, 0.5);
    transition: transform 0.3s ease;
  }
  .screenshot-grid img:hover {
    transform: scale(1.03);
  }
  
  .form-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    height: 800px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 0 15px var(--primary-color);
  }
  .form-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }

  #content-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
  }
  
  #homepage-grid {
    display: grid;
    grid-template-columns: 1.3fr 1.2fr 0.5fr;
    gap: 40px;
  }
  
  #legend-container.content-box {
    padding: 20px;
    width: 100%;
    box-shadow: 0 0 15px var(--secondary-color);
  }

  #about, #skills-section, #legend-container {
    background-color: var(--section-bg);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #00e5ff22;
    box-shadow: 0 0 15px var(--secondary-color)
  }

  #about ul {
    list-style: none;
    padding-left: 0;
  }
  #about ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
  }
  #about ul li::before {
    content: '⮞';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
  }
  

  .resume-frame {
    width: 100%;
    max-width: 900px;
    height: 80vh;
    max-height: 600px;
    margin: 0 auto;
    display: block;
    border: none;
    box-shadow: 0 0 18px #00e5ff88;
    overflow-y: auto;
  }  
  
  footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: var(--text-color);
    border-top: 3px solid var(--secondary-color);
  }
  
  .social-media {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
  }
  
  .social-media img {
    width: 30px;
    transition: transform 0.3s;
  }
  .social-media img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 5px var(--secondary-color));
  }
  
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2rem;
    }
    nav ul {
      display: none;
      flex-direction: column;
      background-color: #333;
      position: absolute;
      top: 70px;
      right: 0;
      width: 100%;
      z-index: 1001;
    }
    nav.active ul {
      display: flex;
    }
    header {
      flex-direction: column;
      align-items: flex-start;
      background-color: #1a1a1a;
      border-bottom: 2px solid #00e5ff33;
      box-shadow: 0 2px 12px #00e5ff44;
    }
    .menu-toggle {
      display: flex;
    }
    .screenshot-grid {
      flex-direction: column;
      align-items: center;
    }
    .screenshot-grid img {
      width: 100%;
      max-width: 90vw;
    }
  }
  
  @media (max-width: 480px) {
    .hero {
      padding: 80px 10px 40px;
    }
    .hero h1 {
      font-size: 1.5rem;
    }
  }