/* Reset */
*{margin:0;padding:0;box-sizing:border-box;}
body{
    font-family:'Courier New', monospace;
    color:#fff;
    background:#1a1a1a url('/images/background.jpg') center center fixed no-repeat;
    background-size:cover;
    overflow:hidden; /* no scroll */
    height:100vh;
}

/* Hero Section */
.hero{
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    flex-direction:column;
}
.brand-name{
    font-size:4rem;
    letter-spacing:2px;
    margin-bottom:10px;
}
.hero-description{
    font-size:1.5rem;
    margin-bottom:30px;
    color:#ddd;
}

/* Hero buttons row */
.hero-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:40px;
}

.button-link{
    padding:12px 28px;
    border:1px solid #fff;
    border-radius:6px;
    color:#fff;
    text-decoration:none;
    transition:transform 0.3s, background 0.3s, color 0.3s;
    font-weight:500;
    font-size:1rem;
}
.button-link:hover{
    background:#fff;
    color:#1a1a1a;
    transform:scale(1.05);
}

/* CTA button in the middle slightly larger */
.cta-button{
    padding:14px 32px;
    font-weight:600;
    font-size:1.1rem;
}

/* Background Layer */
.background-layer{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:-1;
}
