    :root {
      --bg: #000000;
      --bg-card: #1a1a1a;
      --text: #ffffff;
      --text-muted: #a0a0a0;
      --accent: #a62526;
      --secondary: #255f7e;
      --pop: #bfff00;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Raleway', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* Navigation */
    nav {
      position: fixed;
      top: 0;
      width: 100%;
      background: rgba(0, 0, 0, 0.95);
      backdrop-filter: blur(10px);
      padding: 1.5rem 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    nav .logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.5rem;
      letter-spacing: 2px;
      color: var(--pop);
    }

    nav ul {
      display: flex;
      gap: 2rem;
      list-style: none;
    }

    nav a {
      color: var(--text);
      text-decoration: none;
      font-weight: 300;
      text-transform: uppercase;
      font-size: 0.9rem;
      letter-spacing: 1px;
      transition: color 0.3s;
    }

    nav a:hover {
      color: var(--accent);
      a:link {
  color: var(--text);
}

a:visited {
  color: var(--text-muted);
}

a:hover {
  color: var(--accent);
}

a:active {
  color: var(--pop);
}
    }

    /* Hero Section */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 0 5%;
      background: 
        radial-gradient(circle at 20% 50%, rgba(166, 37, 38, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(37, 95, 126, 0.1) 0%, transparent 50%),
        var(--bg);
      position: relative;
      margin-top: 70px;
    }

    .hero h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3rem, 10vw, 8rem);
      letter-spacing: 8px;
      margin-bottom: 1rem;
      text-transform: uppercase;
      background: linear-gradient(135deg, var(--text) 0%, var(--pop) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero .tagline {
      font-size: clamp(1rem, 2vw, 1.5rem);
      color: var(--text-muted);
      letter-spacing: 4px;
      text-transform: uppercase;
      margin-bottom: 3rem;
    }

    .hero .cta {
      display: inline-block;
      padding: 1rem 3rem;
      background: var(--accent);
      color: var(--text);
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-weight: 700;
      transition: all 0.3s;
      border: 2px solid var(--accent);
    }

    .hero .cta:hover {
      background: transparent;
      box-shadow: 0 0 30px rgba(166, 37, 38, 0.6);
      transform: translateY(-3px);
    }

    /* About Section */
    .about {
      padding: 8rem 5%;
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 4rem;
      align-items: center;
    }

    .about-img {
      width: 100%;
      aspect-ratio: 3/4;
      border: 3px solid var(--pop);
      position: relative;
      overflow: hidden;
      line-height: 0;
    }

    .about-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      filter: grayscale(20%);
      display: block;
    }

    .about-content h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.5rem, 5vw, 4rem);
      letter-spacing: 4px;
      margin-bottom: 1.5rem;
      color: var(--pop);
    }

    .about-content p {
      font-size: 1.1rem;
      line-height: 1.8;
      color: var(--text-muted);
      margin-bottom: 1rem;
    }

    .about-content .skills {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      margin-top: 2rem;
    }

    .skill-tag {
      padding: 0.5rem 1rem;
      background: var(--bg-card);
      border: 1px solid var(--accent);
      color: var(--accent);
      text-transform: uppercase;
      font-size: 0.85rem;
      letter-spacing: 1px;
    }

    /* Projects Section */
    .projects {
      padding: 8rem 5%;
      background: var(--bg-card);
    }

    .projects h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.5rem, 5vw, 4rem);
      letter-spacing: 4px;
      text-align: center;
      margin-bottom: 4rem;
      color: var(--pop);
    }

    .projects-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      max-width: 1400px;
      margin: 0 auto;
    }

    .project-card {
      background: var(--bg);
      border: 1px solid rgba(255, 255, 255, 0.1);
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .project-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 20px 60px rgba(166, 37, 38, 0.4);
      border-color: var(--accent);
      display: flex;
      flex-direction: column;
    }

    .project-img {
      width: 100%;
      height: 400px;
      overflow: hidden;
      position: relative;
    }
    .project-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }


    .project-card:nth-child(1) .project-img img {
      object-position: center 20%;  /* Recipe */
    }

    .project-card:nth-child(2) .project-img img {
      object-position: left 10%;  /* Tribute */
    }

    .project-card:nth-child(3) .project-img img {
      object-position: left 15%;  /* Field Guide */
    }
    .project-card:nth-child(4) .project-img img {
      object-position: left 15%;  /* Product Landing */
   }

    .project-img::before {
      content: 'VIEW PROJECT';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.5rem;
      letter-spacing: 3px;
      color: var(--text);
      opacity: 0;
      transition: opacity 0.3s;
      z-index: 2;
    }

    .project-card:hover .project-img::before {
      opacity: 1;
    }

    .project-img::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.7);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .project-card:hover .project-img::after {
      opacity: 1;
    }

    .project-info {
      padding: 2rem;
      display: flex;
      flex-direction: column;
      flex: 1; 
    }

    .project-info h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.8rem;
      letter-spacing: 2px;
      margin-bottom: 1rem;
      color: var(--pop);
    }

    .project-info p {
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 1.5rem;
      flex-grow: 1;
    }

    .project-link {
      color: var(--accent);
      text-decoration: none;
      text-transform: uppercase;
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 1px;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: gap 0.3s;
      margin-top: auto;
    }

    .project-link:hover {
      gap: 1rem;
    }

    /* Footer */
    footer {
      padding: 4rem 5%;
      background: var(--bg);
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      text-align: center;
    }

    .social-links {
      display: flex;
      gap: 2rem;
      justify-content: center;
      margin-bottom: 2rem;
    }

    .social-links a {
      color: var(--text);
      text-decoration: none;
      font-size: 1.5rem;
      transition: all 0.3s;
    }

    .social-links a:hover {
      color: var(--accent);
      transform: translateY(-3px);
    }

    footer p {
      color: var(--text-muted);
      font-size: 0.9rem;
    }

    footer a {
      color: var(--pop);
      text-decoration: none;
    }

    /* Responsive */
    @media (max-width: 768px) {
      nav ul {
        gap: 1rem;
      }

      nav a {
        font-size: 0.8rem;
      }

      .about {
        grid-template-columns: 1fr;
        padding: 4rem 5%;
      }

      .hero h1 {
        letter-spacing: 4px;
      }

      .projects {
        padding: 4rem 5%;
      }

      .projects-grid {
        grid-template-columns: 1fr;
      }
    }