@font-face {
    font-family: "Archivio Regular";
    src: url("font/Archivo/static/Archivo-Regular.ttf");
}

@font-face {
    font-family: "Archivio Bold";
    src: url("font/Archivo/static/Archivo-Bold.ttf");
}

body {
    margin: 0;
    font-family: "Archivio Bold", sans-serif;
    background-color: #000;
    color: #fff;
}

header.hero {
    height: 78px;
    position: fixed;
    width: 100%;
    background-color: #000;
    display: flex;
    align-items: center;
    padding: 0 24px;
}

.container-logo {
    display: flex;
    align-items: center;
}

.container-logo h2 {
    margin-left: 60px;
    margin-top: 30px;
}

header .overlay {
    background: #000;
    height: 100%;
    width: 100%;
    padding: 20px;
}

.logo {
    height: 40px;
}

.red {
    color: #E51C21;
}

.intro {
    height: 796px;
    background-image: url("./images/Background2.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
}

.overlay {
    background-color: rgba(0, 0, 0, .5);
    height: 100%;
    display: flex;
    align-items: center;
}

.container-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 680px;
    margin: 0 auto;
    justify-content: center;
    text-align: center;
}

.container-text.architecture-text {
    max-width: 900px;
}

.container-text.container-knowledge {
    display: block;
    max-width: 1200px;
}

.architecture,
.use-case,
.process,
.knowledge {
    padding: 12px 24px
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.container.use-case {
    align-items: start;
}

.col-4 {
    width: 40%;
    padding: 0 16px;
    display: flex;
    justify-content: center;
}

.col-4.use-case {
    display: block;
}

.col-8 {
    width: 60%;
    padding: 0 16px;
}

.w-100 {
    width: 100%;
}

.w-70 {
    width: 70%;
}

.w-60 {
    width: 60%;
}

ul {
    padding-left: 12px;
}

li {
    margin-bottom: 24px;
}

::marker {
    font-size: 24px;
    color: #E51C21;
}

/*.architecture,
 .use-cases,
.cicd,
.scripts,
.features,
footer {
    padding: 40px 24px;
    text-align: center;
} */

.first-block {
    font-size: 28px;
    line-height: 2;
}

.second-block {
    font-size: 24px;
    line-height: 2;
}

.second-block.block {
    line-height: 1.2;
}

.third-block {
    font-size: 20px;
    line-height: 2;
}

.btn-contact {
    text-transform: uppercase;
    border: 1px solid #E51C21;
    background-color: transparent;
    border-radius: 10px;
    padding: 16px 28px;
    color: #fff;
    font-family: "Archivio Bold", sans-serif;
    text-decoration: none;
}

.btn-contact:hover {
    background-color: #E51C21;
}

.highlight {
    color: #ff4b4b;
}

.features {
    height: 796px;
    background-image: url("./images/bg_block.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
}

h4 {
    margin: 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    justify-items: center;
    padding: 80px 150px;
}

footer {
    background-image: url("./images/bg_footer.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.footer-content {
    padding: 48px 24px;
    font-size: 22px;
    font-family: "Archivio Regular", sans-serif;
}

.contact {
    font-family: "Archivio Regular", sans-serif;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    justify-items: start;
}

.label-contact {
    font-size: 40px;
}

.title-list-contact {
    text-transform: uppercase;
    font-family: "Archivio Bold", sans-serif;
}

.payoff {
    font-size: 40px;
    display: flex;
    flex-direction: column;
    font-family: "Archivio Bold", sans-serif;
}

.link-email {
    color: #fff;
}

.secondary-block {
    padding-top: 94px;
}

.container-copyright {
    display: flex;
    align-items: center;
}

* Apply these styles to the container to define the entire bar */
.container-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: #000;
    padding: 13px 24px;
    color: #fff;
    font-family: "Archivio Regular", sans-serif;
    box-sizing: border-box;
}
 
/* Base styles for the paragraph elements, minimal now */
.copyright {
    margin: 0;
}
 
/* Styles specifically for the placeholder text */
.placeholder-center {
    flex-grow: 1;
    text-align: center;
    /* --- ADD THIS FOR FINE-TUNING --- */
    transform: translateX(160px); /* Adjust this value (e.g., -2px, -8px) until it looks perfect */
    /* If you need to shift it slightly right, use a positive value like translateX(5px) */
}
 
/* Styles specifically for the copyright text */
.copyright-right {
    text-align: right;
    white-space: nowrap;
}