/* ==============================
   Base styles
============================== */
body {
    font-family: monospace;
    background: #0f0502;
    color: #f4f4f4;
    margin: 0;
    padding: 2rem;
  }
  
  a {
    color: #66f;
    text-decoration: underline;
  }
  
  /* ==============================
     Layout helpers
  ============================== */
  .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }
  
  .about img {
    border-radius: 50%;
    width: 300px;
    height: 300px;
    object-fit: cover;
  }
  
  .about-text {
    max-width: 600px;
    font-size: 1.1rem;
    line-height: 1.8;
  }
  
  /* ==============================
     Logo and header
  ============================== */
  .logo img {
    width: 272px;
    max-width: 272px;
    height: auto;
    margin: 0 auto;
  }
  
  .linkedin-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
  }
  
  .linkedin-icon img {
    width: 24px;
    height: 24px;
  }
  
  /* ==============================
     Card components
  ============================== */
  .card {
    position: relative;
    background: #222;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    padding: 20px;
  }
  
  .card:hover {
    transform: scale(1.02);
  }
  
  .card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    opacity: 0.2;
  }
  
  .card-content {
    position: relative;
    z-index: 1;
    background: rgba(34, 34, 34, 0.8);
    padding: 1rem;
  }
  
  .card h2 {
    font-size: 1.6rem;
    color: #fff;
  }
  
  .card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #bbb;
  }
  
  .card a {
    display: inline-block;
    margin-top: 0.5rem;
    z-index: 5;
  }
  
  /* ==============================
     Resume links
  ============================== */
  .resume-links {
    width: 100%;
  }
  
  .resume-links a img {
    color: white;
    background: white;
    width: 50px;
    height: 50px;
  }
  
  .libutton {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 7px;
    text-align: center;
    outline: none;
    text-decoration: none !important;
    color: #ffffff !important;
    width: 200px;
    height: 32px;
    border-radius: 16px;
    background-color: #0A66C2;
    font-family: "SF Pro Text", Helvetica, sans-serif;
  }
  
  /* ==============================
     Typography
  ============================== */
  .h1, h1 {
    font-size: 2.5rem;
    line-height: 3.5rem;
  }
  
  .h2, h2 {
    font-size: 2rem;
    line-height: 2.75rem;
  }
  
  .sticky-note {
    background: #fffa80;
    color: #222;
    padding: 1rem;
    border-left: 6px solid #f99;
    font-size: 1rem;
    flex: 1;
  }

    /* ==============================
     Cards Background Images
  ============================== */

  .card.otherly {
    --bg: url('/assets/images/otherly.jpg');
  }
  
  .card.bunny {
    --bg: url('/assets/images/placeholder.jpg');
  }
  
  .card.rabio {
    --bg: url('/assets/images/rabio-shack-bg.jpg');
  }
  
  .card.rabio-branding {
    --bg: url('/assets/images/rabio-branding-bg.jpg');
  }
  
  .card.wyolt {
    --bg: url('/assets/images/wyolt-bg.jpg');
  }
  
  .card.nrdgrl {
    --bg: url('/assets/images/nrdgrl-bg.jpg');
  }
  
  .card.youtube-shorts {
    --bg: url('/assets/images/youtube-shorts-bg.jpg');
  }
  
  .card.legacy {
    --bg: url('/assets/images/legacy-bg.jpg');
  }

  