/* Novakod logo text uses default sans-serif */
.logo {
    font-family: system-ui, sans-serif;
    font-size: 2.0rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.hero {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("Original.jpg"); /* Replace with your image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: fixed;
    filter: brightness(0.4);
    z-index: -2;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(40, 60, 100, 0.45); /* translucent deep blue */
    position: fixed;
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    margin: 0 auto;
    text-align: center;
}

h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.3rem, 4vw, 3.3rem);
    font-weight: 300;
    color: rgb(255,216,0);
    margin-bottom: 1.5rem;
}

.subtitle {
    margin-bottom: 1.0rem;
    font-family: "Cormorant Garamond", serif;
    color: rgb(255,216,0);
    font-size: 1.2rem;
    opacity: 0.9;
}

.div-text {
    font-family: "Cormorant Garamond", serif;
    color: gainsboro;
    font-size: 18px;
    text-align: center;
}

body {
    font-family: system-ui, sans-serif;
    height: 100vh;
    color: gainsboro;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #000000;
}

/* Button uses modern sans-serif */
.cta-button {
    display: inline-block;
    margin: 1.0rem 1.0rem 3.0rem;
    padding: 0.9rem 3.0em;
    font-family: system-ui, sans-serif;
    color: gainsboro;
    font-size: 1.5rem;
    font-weight: 400;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    background: linear-gradient(135deg, #345386, #5b8ad6);
    /*background: linear-gradient(135deg, #345386, #7b9dff);*/
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, filter 0.12s ease-out;
    max-width: 90vw;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.6);
    filter: brightness(1.05);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 8px 22px rgba(0,0,0,0.6);
}

.cta-button-small {
    display: inline-block;
    min-width: 8.0rem;
    margin: 0.5rem 0.5rem 2.0rem;
    padding: 0.4rem 2.0rem;
    font-family: system-ui, sans-serif;
    color: gainsboro;
    font-size: 1rem;
    font-weight: 400;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    background: linear-gradient(135deg, #345386, #5b8ad6);
    /*background: linear-gradient(135deg, #345386, #7b9dff);*/
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, filter 0.12s ease-out;
    max-width: 90vw;
}

.cta-button-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.6);
    filter: brightness(1.05);
}

.cta-button-small:active {
    transform: translateY(0);
    box-shadow: 0 8px 22px rgba(0,0,0,0.6);
}

.wrap-code {
    width: 750px;
    min-height: 100px;
    padding: 0;
    overflow: hidden;
}     
.psC-code {
    width: 600px;
    min-height: 100px;
    border: 0px;
    background: gainsboro;
}  
.psC-code {
  zoom: 0.75;
  -moz-transform: scale(0.75);
  -moz-transform-origin: 0 0;
  -o-transform: scale(0.75);
  -o-transform-origin: 0 0;
  -webkit-transform: scale(0.75);
  -webkit-transform-origin: 0 0;
}     
