@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #F4F4F4;
    color: #111111;
    line-height: 1.6;
    font-size: 1rem;
}

h1, h2, h3, h4, h5, h6, a {
    font-family: 'Space Mono', monospace;
    margin-bottom: 1rem;
    color: #222222;
}

#hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column; 
    align-items: center;
    background-color: #f4f4f4;
    /* background-image:  */
        /* radial-gradient(circle, rgba(0,0,0,0) 30%, rgba(0,0,0,0.7) 100%), */
        /* url(../images/live-gig.jpg); */
    background-attachment: fixed; 
    background-size: cover;
    background-position: center;    
    color: white;
}

.logo-container {
    margin-top: 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-left,
.logo-right {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.logo-left img,
.logo-right img {
    display: block;
    height: 70px;
}

.logo-right {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.logo-right .bg {
    position: absolute;
    inset: 0;
    background: center/cover no-repeat;
    transform: translateX(-100%);
    z-index: 0;
    will-change: transform;
}

.logo-right img {
    position: relative;
    z-index: 1;
    display: block;
}

.logo-right.active img {
    filter: invert(1);
    mix-blend-mode: difference;
}


@keyframes slideInOut {
    0% {
        transform: translateX(-100%); /* off left */
    }
    14% {
        transform: translateX(0);     /* slide in over 0.5s */
    }
    71% {
        transform: translateX(0);     /* stay visible for ~2s */
    }
    100% {
        transform: translateX(101%);  /* slide out to the right */
    }
}

.cta {
    margin-top: 2rem; 
    position: relative; 
    display: inline-block;
}

.hero-laptop {
    display: block;
    width: 100%;
    max-width: 400px;
}

.blend {
    mix-blend-mode: normal;
}

.cta-links {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column; 
    align-items: center;
    gap: 1.5rem; 
    text-align: center;
}

.cta-heading {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 400;
    color: white;
    text-align: center;
}

.cta-buttons {
    display: flex;       
    gap: 1rem;           
}

.cta-links a {
    background: rgba(0,0,0,0.9);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-bottom: 1px solid white;
    border-radius: 3px;
    text-decoration: none;
    transition: background 0.3s;
}

.cta-links a:hover {
    background: #1100FF;
}

.link-roll {
    margin-top: 1.5rem;
    margin: 1.5rem 2.2rem 1.5rem 2.2rem;
    max-width: 330px;
    display: inline-block;
    position: relative;
    /* background-color: rgba(0,0,0,0.6); */
    background-color: #FFFFFF;;
    border-radius: 10px;
    padding: 1rem;
}

.validation-heading {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 400;
    color: #111111;
    text-align: center;
    margin-bottom: 0.5rem;
}

.link-roll ul {
    list-style: none;
    padding-left: 1.5rem;
}

.link-roll li {
    font-size: 0.8rem;
    line-height: 1.2rem;
    margin-bottom: 0.5rem;
}

.link-roll li.file::marker {
    content: "📄 ";
}

.link-roll li.video::marker {
    content: "▶ "; 
    color: red;
}

.link-roll a {
    color: #1100FF;
    text-decoration: none;
}

.link-roll a:hover {
    text-decoration: underline;
    font-weight: bold;
}

.copyright {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    color: #111111;
    padding-bottom: 1rem;
}

.copyright a {
    color: #1100FF;
    text-decoration: underline;
}

.copyright a:hover {
    font-weight: bold;
    text-decoration: none;
}