body {
    background-color: #303030 !important;
            }
img {
    border-radius: 100%;
            }
h1 {
    color: ghostwhite !important;
    font-size: 35px;
    text-align: left;
    padding-left: 20px;
    padding-top: 10px;
    font-weight: 600;
    font-family: 'Inconsolata', monospace;
            }
a {
    color: ghostwhite !important;
    text-decoration: none;
            }
 * {
    font-family: 'Inconsolata', monospace;
     color: white;
     font-weight: 600;
}
 p {
     font-weight: 300;
     font-size: large;
 }
.t-image {
    position: relative;
    top: -4px;
}
.bar {
  position: fixed;
  top: 0;
  left: 0;
  width: calc(100vw / 20);
  height: 100vh;
  background-color: #fff;
  z-index: 1000;
}

.bar-wipe-animation .bar {
  animation: bar-wipe 1s forwards;
}

.bar-wipe-animation .bar.down {
  animation: bar-wipe-down 1s forwards;
}

@keyframes bar-wipe {
  to {
    transform: translateY(-100%);
  }
}

@keyframes bar-wipe-down {
  to {
    transform: translateY(100%);
  }
}
.list-group-item {
      background-color: #303030;
      color: #ffffff; 
    }
    .list-group-item a {
      color: #ffffff; 
      text-decoration: none; 
    }
    .list-group-item a:hover {
      color: #ffcc00; 
    }

body.home {
    font-family: 'Inconsolata', monospace;
    color: #ffffff;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: y proximity;
    background-color: #0a0a0a !important;
}

body.home::-webkit-scrollbar { width: 8px; }
body.home::-webkit-scrollbar-track { background: rgba(255,255,255,0.1); border-radius: 10px; }
body.home::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.3); border-radius: 10px; transition: background 0.3s ease; }
body.home::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.5); }

body.home .custom-cursor {
    position: fixed;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 40%, transparent 70%);
    pointer-events: none;
    z-index: 1000;
    transform: translate3d(-9999px, -9999px, 0);
    transition: transform 0.1s ease;
    mix-blend-mode: screen;
}

body.home .grid-background {
    --x: 50%;
    --y: 50%;
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle 150px at var(--x, 50%) var(--y, 50%), black 30%, transparent 70%);
}

body.home .grid-cars {
    position: fixed;
    inset: 0;
    z-index: -5;
    pointer-events: none;
}

body.home .grid-car {
    position: absolute;
    width: 6px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    box-shadow: 0 0 15px 8px rgba(255, 255, 255, 0.25);
    will-change: transform, opacity;
}

body.home .section {
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
    position: relative;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    z-index: 5;
}

body.home .section.visible { opacity: 1; transform: translateY(0); }

body.home .hero { background: transparent; min-height: 90svh; }
body.home .hero h1 {
    font-weight: 700;
    font-size: 4rem;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}
body.home .hero p {
    font-size: 1.3rem;
    max-width: 600px;
    line-height: 1.6;
}

body.home .coming-soon {
    text-align: center;
    display: grid;
    place-items: center;
    padding: 2rem;
}

body.home .coming-card {
    position: relative;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: clamp(1.25rem, 3vw, 2rem);
    max-width: 720px;
    width: min(92vw, 720px);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}
body.home .coming-card h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin: 0.5rem 0 0.75rem;
}
body.home .coming-card p {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: #f2f2f2;
    opacity: 0.95;
}
body.home .coming-card p a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 2px;
}
body.home .coming-card .actions { margin-top: 1rem; }


body.home .pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    font-size: 0.9rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.28);
}
body.home .pill .dot { width: 8px; height: 8px; border-radius: 50%; background: #7CFFB2; box-shadow: 0 0 10px #7CFFB2; }
body.home .projects { padding: 4rem 2rem; }
body.home .projects h2 { font-weight: 700; font-size: 2.5rem; margin-bottom: 3rem; text-align: center; }
body.home .project-grid { max-width: 800px; margin: 0 auto; }
body.home .project-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    backdrop-filter: blur(10px);
}
body.home .project-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}
body.home .project-item h3 { font-weight: 700; font-size: 1.8rem; margin-bottom: 1rem; }
body.home .project-item p { font-size: 1.1rem; margin-bottom: 1.5rem; line-height: 1.5; }

body.home .learn-more-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: #ffffff;
    color: #000000 !important;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}
body.home .learn-more-btn:visited { color: #000000 !important; }
body.home .learn-more-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
    color: #000000 !important;
    text-decoration: none;
}

body.home .scroll-indicator {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-size: 2rem;
    animation: bounce 2s infinite;
    z-index: 100;
    cursor: pointer;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Vibe coded code below */
.u-pb-10 { padding-bottom: 10px; }

/* Responsive */
@media (max-width: 768px) {
    body.home .hero h1 { font-size: 2.5rem; }
    body.home .hero p { font-size: 1.1rem; }
    body.home .question-mark { font-size: 5rem; }
    body.home .coming-soon h2 { font-size: 2rem; }
    body.home .project-item { padding: 1.5rem; }
    body.home .coming-card { padding: 1.25rem; }
}

/* Accessibility: reduced motion */
@media (prefers-reduced-motion: reduce) {
    body.home { scroll-behavior: auto; }
    body.home .custom-cursor { display: none; }
    body.home .question-mark { animation: none; }
    body.home .scroll-indicator { animation: none; }
}

/* Touch devices: hide custom cursor */
@media (hover: none) and (pointer: coarse) {
    body.home .custom-cursor { display: none; }
}
