  :root {
    --black: #0a0a0a;
    --gold: #f5c518;
    --gold-dark: #c49a00;
    --white: #f0ede6;
    --cream: #e8e0d0;
    --gray: #1a1a1a;
    --gray2: #2a2a2a;
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    cursor: none;
    overflow-x: hidden;
  }

  /* CUSTOM CURSOR */
  .cursor {
    width: 12px; height: 12px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.2s, height 0.2s;
    mix-blend-mode: difference;
  }
  .cursor-trail {
    width: 36px; height: 36px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: left 0.12s ease, top 0.12s ease;
    mix-blend-mode: difference;
  }
  body:hover .cursor { opacity: 1; }

  /* NOISE OVERLAY */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9997;
    opacity: 0.4;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 48px;
    background: linear-gradient(to bottom, rgba(10,10,10,0.95), transparent);
  }
  .nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 3px;
    color: var(--gold);
  }
  .nav-links {
    display: flex; gap: 36px;
    list-style: none;
  }
  .nav-links a {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    position: relative;
    transition: color 0.2s;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-links a:hover::after { width: 100%; }

  /* ─── HERO ─── */
  #hero {
    min-height: 100vh;
    display: flex; flex-direction: column;
    justify-content: center;
    padding: 120px 48px 80px;
    position: relative;
    overflow: hidden;
  }

  .hero-bg-text {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(180px, 28vw, 360px);
    color: transparent;
    -webkit-text-stroke: 1px rgba(245,197,24,0.07);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    letter-spacing: -4px;
  }

  .hero-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.3s forwards;
  }

  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(72px, 14vw, 200px);
    line-height: 0.88;
    letter-spacing: -2px;
    color: var(--white);
    mix-blend-mode: normal;
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.5s forwards;
  }

  .hero-title span {
    color: var(--gold);
    display: inline-block;
  }

  .hero-title .stroke {
    color: transparent;
    -webkit-text-stroke: 2px var(--white);
  }

  .hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(240,237,230,0.5);
    margin-top: 24px;
    font-family: 'IBM Plex Mono', monospace;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.7s forwards;
  }

  .hero-subtitle span {
    color: var(--gold);
    margin: 0 12px;
  }

  .hero-scroll-hint {
    position: absolute;
    bottom: 40px; right: 48px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    display: flex; align-items: center; gap: 12px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards;
  }

  .scroll-line {
    width: 1px; height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease infinite;
  }

  @keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
  }

  /* decorative asterisks */
  .deco-star {
    position: absolute;
    color: var(--gold);
    font-size: 2rem;
    animation: spin 8s linear infinite;
    opacity: 0.7;
  }
  .deco-star.s2 { animation-direction: reverse; animation-duration: 5s; }
  @keyframes spin { to { transform: rotate(360deg); } }

  /* ─── SECTION BASE ─── */
  section {
    padding: 100px 48px;
    position: relative;
  }

  .section-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: flex; align-items: center; gap: 12px;
  }
  .section-label::before {
    content: '✦';
    font-size: 0.8rem;
  }

  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 8vw, 100px);
    line-height: 0.9;
    letter-spacing: 1px;
  }

  /* ─── ABOUT ─── */
  #about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .about-left .section-title span { color: var(--gold); }

  .about-name {
    font-family: 'Permanent Marker', cursive;
    font-size: clamp(24px, 3.5vw, 42px);
    color: var(--gold);
    margin: 24px 0 16px;
    line-height: 1.1;
  }

  .about-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(240,237,230,0.75);
    max-width: 460px;
  }

  .about-contact {
    margin-top: 36px;
  }

  .about-contact h4 {
    font-family: 'Permanent Marker', cursive;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 14px;
  }

  .contact-list {
    display: flex; flex-direction: column; gap: 8px;
    list-style: none;
  }

  .contact-list li {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.78rem;
    color: rgba(240,237,230,0.6);
    display: flex; align-items: center; gap: 10px;
    transition: color 0.2s;
  }

  .contact-list li:hover { color: var(--gold); }

  .contact-list .icon {
    color: var(--gold);
    font-size: 1rem;
    width: 20px; text-align: center;
  }

  .about-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .photo-frame{
  position:relative;
  overflow:visible;
}

  .photo-border{
  position: relative;
  z-index: 1;

    width: 280px; height: 320px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .photo-inner {
    width: 260px; height: 300px;
    background: var(--gray);
    border-radius: 2px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.3);
    gap: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .photo-inner .avatar-placeholder {
    width: 80px; height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(245,197,24,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 8px;
  }

  .photo-tag{
  position:absolute;
  top:-14px;
  left:20px;
  z-index:10;

    position: absolute;
    top: -12px; left: 20px;
    background: var(--gold);
    color: var(--black);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 5px 12px;
    letter-spacing: 1px;
  }

  .location-badge {
    background: var(--gray2);
    border: 1px solid rgba(245,197,24,0.3);
    padding: 12px 20px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.72rem;
    color: var(--white);
    line-height: 1.6;
    position: relative;
    width: 280px;
  }

  .location-badge::before {
    content: 'x';
    position: absolute;
    top: 6px; right: 10px;
    color: var(--gold); font-size: 0.65rem;
  }

  .location-badge span { color: var(--gold); }

  /* ─── EXPERIENCES ─── */
  #experience { background: var(--gray); }

  .exp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px 80px;
    margin-top: 60px;
  }

  .exp-item {
    border-left: 2px solid rgba(245,197,24,0.25);
    padding-left: 24px;
    position: relative;
    transition: border-color 0.3s;
  }

  .exp-item::before {
    content: '';
    position: absolute;
    left: -6px; top: 6px;
    width: 10px; height: 10px;
    background: var(--gold);
    border-radius: 50%;
    transition: transform 0.3s;
  }

  .exp-item:hover { border-color: var(--gold); }
  .exp-item:hover::before { transform: scale(1.4); }

  .exp-date {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.67rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
  }

  .exp-role {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
    line-height: 1.3;
  }

  .exp-company {
    font-size: 0.8rem;
    color: rgba(240,237,230,0.5);
    font-family: 'IBM Plex Mono', monospace;
  }

  /* ─── EDUCATION + SKILLS ROW ─── */
  #education-skills {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
  }

  .edu-item { margin-bottom: 28px; }

  .edu-year {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.68rem;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 4px;
  }

  .edu-school {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
  }

  .skill-tags {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-top: 20px;
  }

  .skill-tag {
    padding: 6px 14px;
    border: 1px solid rgba(245,197,24,0.35);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(240,237,230,0.75);
    transition: all 0.2s;
    cursor: default;
  }

  .skill-tag:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-2px);
  }

  .software-list {
    margin-top: 20px;
    list-style: none;
    display: flex; flex-direction: column; gap: 10px;
  }

  .software-list li {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.78rem;
    color: rgba(240,237,230,0.7);
    display: flex; align-items: center; gap: 10px;
  }

  .software-list li::before {
    content: '▸';
    color: var(--gold);
  }

  /* ─── MARQUEE STRIP ─── */
  .marquee-strip {
    background: var(--gold);
    overflow: hidden;
    padding: 14px 0;
    white-space: nowrap;
  }

  .marquee-inner {
    display: inline-block;
    animation: marquee 18s linear infinite;
  }

  .marquee-inner span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 4px;
    color: var(--black);
    margin: 0 24px;
  }

  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ─── FOOTER ─── */
  footer {
    padding: 60px 48px;
    border-top: 1px solid rgba(245,197,24,0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--gold);
    letter-spacing: 2px;
    line-height: 1;
  }

  .footer-tagline {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.72rem;
    color: rgba(240,237,230,0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 6px;
  }

  .footer-right {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.68rem;
    color: rgba(240,237,230,0.3);
    text-align: right;
    letter-spacing: 1px;
  }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: none;
  }

  /* ─── INTEREST TAGS ─── */
  .interest-chips {
    display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px;
  }

  .chip {
    background: rgba(245,197,24,0.1);
    border: 1px solid rgba(245,197,24,0.25);
    padding: 6px 16px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.68rem;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.2s;
  }

  .chip:hover { background: rgba(245,197,24,0.2); }

  /* ─── STRENGTHS SECTION ─── */
  #strengths {
    background: var(--gold);
    padding: 80px 48px;
    overflow: hidden;
    position: relative;
  }

  .strengths-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(64px, 12vw, 160px);
    color: var(--black);
    line-height: 0.88;
    letter-spacing: -1px;
    position: relative; z-index: 2;
  }

  .strengths-title em {
    font-style: normal;
    -webkit-text-stroke: 2px var(--black);
    color: transparent;
  }

  .strengths-bg-circle {
    position: absolute;
    right: -80px; top: 50%;
    transform: translateY(-50%);
    width: 400px; height: 400px;
    border-radius: 50%;
    border: 3px solid rgba(0,0,0,0.15);
    z-index: 1;
  }

  .strengths-bg-circle::before {
    content: '';
    position: absolute;
    inset: 30px;
    border-radius: 50%;
    border: 1.5px solid rgba(0,0,0,0.1);
  }

  /* ─── POSTER GALLERY ─── */
  #posters {
    background: var(--black);
    padding: 100px 48px;
  }
  .poster-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 24px;
  }
  .poster-filters {
    display: flex; gap: 10px; flex-wrap: wrap;
  }
  .filter-btn {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 7px 16px;
    border: 1px solid rgba(245,197,24,0.3);
    background: transparent;
    color: rgba(240,237,230,0.55);
    cursor: pointer;
    transition: all 0.2s;
  }
  .filter-btn:hover,
  .filter-btn.active {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
  }
  /* Grid */
  .poster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
  }
.poster-card {
  position: relative;
  overflow: hidden;
  background: var(--gray2);
  cursor: pointer;

  border: 6px solid var(--gold);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
  .poster-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
  }
  .poster-card:hover {

  transform: translateY(-8px);

  box-shadow:
    0 24px 50px rgba(0,0,0,0.45),
    0 0 30px rgba(245,197,24,0.18);

  border-color: #ffd84d;
}

.poster-card:hover img {
  transform: scale(1.05);
}
  .poster-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
  }
  .poster-card:hover .poster-card-overlay { opacity: 1; }
  .poster-card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: var(--white);
    line-height: 1.1;
  }
  .poster-card-tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.62rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 4px;
  }
  .poster-card-expand {
    position: absolute;
    top: 14px; right: 14px;
    width: 32px; height: 32px;
    background: var(--gold);
    color: var(--black);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .poster-card:hover .poster-card-expand { opacity: 1; }
  /* Delete button */
  
  .poster-placeholder .ph-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: rgba(245,197,24,0.15);
  }
  /* Lightbox */
  .lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.96);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 40px;
  }
  .lightbox.open {
    opacity: 1;
    pointer-events: all;
  }
  .lightbox-inner {
    position: relative;
    max-width: 700px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .lightbox-img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    box-shadow: 0 40px 80px rgba(0,0,0,0.7);
    transform: scale(0.95);
    transition: transform 0.3s ease;
  }
  .lightbox.open .lightbox-img { transform: scale(1); }
  .lightbox-info {
    text-align: center;
  }
  .lightbox-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: var(--white);
  }
  .lightbox-tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.68rem;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 4px;
  }
  .lightbox-close {
    position: absolute;
    top: -16px; right: -16px;
    width: 40px; height: 40px;
    background: var(--gold);
    color: var(--black);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-weight: bold;
    z-index: 10;
    transition: background 0.2s;
  }
  .lightbox-close:hover { background: var(--white); }
  .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(245,197,24,0.15);
    border: 1px solid rgba(245,197,24,0.4);
    color: var(--gold);
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.2s;
  }
  .lightbox-nav:hover { background: var(--gold); color: var(--black); }
  .lightbox-nav.prev { left: -64px; }
  .lightbox-nav.next { right: -64px; }
  .empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.72rem;
    color: rgba(240,237,230,0.25);
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .empty-state .es-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 12px;
    color: rgba(245,197,24,0.2);
  }

  /* ─── RESPONSIVE BASICS ─── */
  @media (max-width: 768px) {

    nav {
        padding: 16px 24px;
    }

    .nav-links {
        display: none;
    }

    section {
        padding: 70px 24px;
    }

    #hero {
        padding: 100px 24px 70px;
    }

    #about {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-right {
        display: flex;
        flex-direction: column;
        align-items: center;
        order: -1;       /* Show photo above the text */
    }

    .photo-border {
        width: 220px;
        height: 260px;
    }

    .photo-inner {
        width: 200px;
        height: 240px;
    }

    .location-badge {
        width: 220px;
    }

    .exp-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    #education-skills {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    footer {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-right {
        text-align: center;
    }

    .hero-bg-text {
        font-size: 120px;
    }
}

  /* highlight on hover for nav */
  .nav-links li:nth-child(1) a:hover,
  .nav-links li:nth-child(3) a:hover { color: var(--gold); }

  /* active indicator dots */
  .status-dot {
    display: inline-block;
    width: 7px; height: 7px;
    background: #44ff88;
    margin-right: 8px;
    animation: pulse 2s ease infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }

  /* ─── SECTION DIVIDER ─── */
  .divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(245,197,24,0.4), transparent);
    margin: 0;
  }

  /* hover card lift */
  .lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .lift:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  }

.profile-photo{
  width:100%;
  height:100%;
  object-fit:cover;
  filter: grayscale(100%) contrast(110%);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.photo-frame:hover .profile-photo{
  filter: grayscale(0%);
  transform: scale(1.03);
}

.poster-grid{
  transition: opacity 0.6s ease;
}

.poster-grid.fade-out{
  opacity:0;
}

.poster-card img{
  transition:
    transform 0.7s ease,
    opacity 0.7s ease;
}

.event-card{
  grid-column: span 2;
}

.event-card img{
  aspect-ratio: 15/5;
  object-fit: cover;
}

.contact-list a{
    color: inherit;
    text-decoration: none;
    transition: color .25s ease;
}

.contact-list a:hover{
    color: var(--gold);
}

.drive-btn{
    display:flex;
    align-items:center;
    justify-content:center;

    padding:7px 16px;

    font-family:'IBM Plex Mono', monospace;
    font-size:0.68rem;
    letter-spacing:2px;
    text-transform:uppercase;

    text-decoration:none;

    color:var(--white);

    border:1px solid rgba(245,197,24,.35);

    transition:.25s;
}

.drive-btn:hover{
    background:var(--gold);
    color:var(--black);
    border-color:var(--gold);
}