:root {
    --bg-color: #0a0a0a;
    --text-color: #eee;
    --accent-color: #ddd;
    --grey-color: #555;
    --light-grey: #888;
  }
  
  /* Reset & base */
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  .fullscreen-header {
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    text-align: center;
    color: var(--text-color);
    user-select: none;
    font-weight: 700;
    letter-spacing: 0.15em;
    font-size: 4rem;
    font-family: 'Orbitron', monospace, 'Segoe UI', sans-serif;
    background: linear-gradient(45deg, #111 25%, #222 50%, #111 75%);
    animation: subtleGradient 20s linear infinite;
  }

  /* New subtle background pattern under image */
  .background-pattern {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-image:
      radial-gradient(circle at 30% 30%, #222 2px, transparent 3px),
      radial-gradient(circle at 70% 70%, #222 2px, transparent 3px);
    background-size: 100px 100px;
    background-repeat: repeat;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
  }
  
  .fullscreen-header .header-content {
    position: relative;
    z-index: 3;
    max-width: 90%;
  }
  
  .fullscreen-header h1 {
    font-size: 6rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    text-shadow:
      0 0 10px #aaa,
      0 0 20px #999;
  }
  
  .fullscreen-header p {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    color: var(--light-grey);
    font-weight: 400;
    text-shadow: 0 0 5px #666;
  }

  .image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
  }

  .image-container::before {
    content: '';
    position: absolute;
    width: 60%;
    height: auto;
    aspect-ratio: 1 / 1; /* Keep it square or adjust if needed */
    background-image: url('/static/logo.png'); /* use the correct image path */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: blur(30px) brightness(1.2);
    opacity: 0.3;
    z-index: 0;
    transform: scale(1.1); /* slightly larger than the main image */
  }

  .image-container img {
    width: 60%;
    height: auto;
    object-fit: contain;
    filter: none;
    user-select: none;
    pointer-events: none;
    border-radius: 12px; /* optional: rounded corners */
    background: transparent;
  }
  
  /* Navigation - sticky on top */
  nav {
    display: flex;
    justify-content: center;
    background: #111;
    border-bottom: 1px solid var(--grey-color);
    position: sticky;
    top: 0;
    z-index: 10;
  }
  
  nav a {
    color: var(--grey-color);
    margin: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Orbitron', monospace, 'Segoe UI', sans-serif;
    transition: color 0.3s;
    letter-spacing: 0.1em;
  }
  
  nav a:hover {
    color: var(--text-color);
    text-shadow: 0 0 8px var(--text-color);
  }
  
  /* Main content */
  main {
    max-width: 900px;
    margin: 2rem auto 4rem;
    padding: 0 1rem;
  }
  
  h2 {
    margin-top: 2rem;
    border-left: 4px solid var(--accent-color);
    padding-left: 0.5rem;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace, 'Segoe UI', sans-serif;
    font-weight: 700;
    letter-spacing: 0.15em;
    font-size: 2rem;
    color: var(--accent-color);
    text-transform: uppercase;
  }
  
  .project-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .project-card {
    background-color: #111;
    padding: 1rem;
    border-radius: 16px;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
    overflow: hidden;
  }
  
  .project-card:hover {
    transform: scale(1.03);
  }
  
  .project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
  }

  .project-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
  }
  
  .project-card-link:hover .project-card {
    background-color: #1a1a1a;
    transition: background 0.3s;
    cursor: pointer;
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 1.5rem 1rem;
    font-size: 0.9rem;
    color: var(--grey-color);
    border-top: 1px solid var(--grey-color);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .intro-text {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  .collaborate {
    margin-top: 2rem;
    padding: 1rem;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 10px;
    text-align: center;
  }
  
  .collaborate h3 {
    color: #fff;
    margin-bottom: 0.5rem;
  }
  
  .collaborate p {
    color: #bbb;
  }
  
  .contact-icons {
    margin-top: 1rem;
  }
  
  .contact-icons a {
    margin: 0 1rem;
    color: #bbb;
    transition: color 0.3s ease;
  }
  
  .contact-icons a:hover {
    color: #fff;
  }  

  .about-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .about-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
  }
  
  .about-text {
    flex: 1;
    min-width: 250px;
  }
  
  .about-image {
    flex-shrink: 0;
    max-width: 300px;
  }
  
  .about-photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }
  
  .badge-logo {
    margin-top: 1rem;
    max-width: 150px;
  }
  
  /* Animations */
  @keyframes rotate {
    from {transform: rotate(0deg);}
    to {transform: rotate(360deg);}
  }
  
  @keyframes subtleGradient {
    0%, 100% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
  }
  