 body {
      margin: 0;
      font-family: 'Macondo', cursive;
      background: dimgrey;
      color: #fff;
      overflow-x: hidden;
    }
    header {
      height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee') center/cover no-repeat;
      position: relative;
    }
    header::after {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.65);
    }
    header h1, header p {
      position: relative;
      z-index: 2;
      text-align: center;
    }
    header h1 {
      font-size: 4.5em;
      margin: 0;
      color: #f5e6c8;
      text-shadow: 0 0 25px #d4af37, 2px 2px 15px #000;
      animation: fadeIn 3s ease forwards;
    }
    header p {
      font-size: 1.6em;
      color: #ddd;
      margin-top: 20px;
      animation: fadeInUp 3s ease forwards;
    }

    @keyframes fadeIn {
      from {opacity:0; transform: scale(0.9);}
      to {opacity:1; transform: scale(1);}
    }
    @keyframes fadeInUp {
      from {opacity:0; transform: translateY(30px);}
      to {opacity:1; transform: translateY(0);}
    }

    /* ==== NAVIGATION ==== */
    .timeline {
      display: flex;
      justify-content: center;
      margin: 40px 0;
    }
    .btn {
      background: transparent;
      color: #f5e6c8;
      border: 2px solid #f5e6c8;
      padding: 15px 30px;
      margin: 10px;
      cursor: pointer;
      font-size: 1.2em;
      border-radius: 50px;
      transition: all 0.4s ease;
    }
    .btn:hover {
      background: #f5e6c8;
      color: #1b1b1b;
      transform: translateY(-4px);
    }

    /* ==== CONTENT SECTIONS ==== */
    .content {
      display: none;
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s ease;
      padding: 50px 5%;
      background: rgba(255,255,255,0.05);
      border-radius: 20px;
      width: 90%;
      margin: auto;
    }
    .active {
      display: block;
      opacity: 1 !important;
      transform: translateY(0) !important;
    }
    .content h2 {
      text-align: center;
      font-size: 2.5em;
      margin-bottom: 30px;
      color: #f5e6c8;
      text-shadow: 1px 1px 6px #000;
    }



    /* ==== GRID ==== */
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
    }

    .card {
      background: rgba(0, 0, 0, 0.6);
      border-radius: 15px;
      overflow: hidden;
      transition: all 0.5s ease;
      border: 1px solid rgba(245, 230, 200, 0.3);
      box-shadow: 0 4px 15px rgba(0,0,0,0.6);
      cursor: pointer;
    }
    .card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      filter: sepia(20%) contrast(1.1);
      transition: 0.4s;
    }
    .card h3 {
      margin: 15px;
      font-size: 1.6em;
      color: #f5e6c8;
    }
    .card p {
      margin: 0 15px 15px;
      color: #ccc;
      font-size: 1em;
    }
    .card:hover {
      transform: translateY(-8px) scale(1.03);
      box-shadow: 0 8px 25px rgba(0,0,0,0.8);
    }
    .card:hover img {
      filter: sepia(5%) brightness(1.2);
    }
    html{
        cursor: url('Glitch\ Color\ Pixel--cursor--SweezyCursors.png'),auto;
    }