@import "hero.css";
@import "latest-insights.css";
@import "cookie-banner.css";

:root {
    --primary: #E8C06A;
    --secondary: #B3C4DC;
    --white: #FFF;
    --black: #2D3748;
    --background: #FFF;
    --background100: #FFF;
    --lightgrey: #CFCFCF;
    --border: #4B4D59;
    --darkblue: #E8EDF4;
}


@font-face {
    font-family: 'Satoshi';
    src: url('./../fonts/Satoshi-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('./../fonts/Satoshi-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('./../fonts/Satoshi-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body, button {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    font-weight: 400;
    background-color: var(--black);
    color: var(--black);
}

body {
    background-color: var(--darkblue);
}

div, input, span, button, textarea {
    box-sizing: border-box;
}

.section-title {
    color: var(--black);
    text-align: start;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 0;
    margin-bottom: 12px;
}

.section-description {
    font-size: 16px;
    color: var(--black);
}

.section-center {
    text-align: center;
}

.section-left {
    text-align: left !important;
}

/* Small screens and up */
@media (min-width: 768px) {
    .section-title {
        font-size: 40px;
        text-align: center;
    }
}

/* BUTTONS */
.btn {
    padding: 0 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    height: 40px;
    max-height: 40px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--black);
    font-size: 1rem;
}

.container {
    width: 100%;
    max-width: 1300px;
    padding: 0 24px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Responsive for small screens */
@media (max-width: 600px) { /* adjust 600px to match your 's' breakpoint */
    .container {
        padding: 0 1rem;
    }
}


/* NAVBAR */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background: var(--secondary);
    backdrop-filter: blur(6px);
    /*border-bottom: 1px solid var(--border);*/
}

.nav-inner {
    max-width: 1278px;
    margin: 0 auto;
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* LOGO */

.logo img {
    width: 180px;
    height: 37px;
}


.footer-wrapper {
    margin: 240px 0 64px 0;
    font-family: Arial, sans-serif;
    color: var(--black);
}

.footer-primary-section {
    background: var(--secondary);
    border-radius: 24px;
    padding: 32px;
    display: grid;
    gap: 24px;
}

.footer-info, .footer-legal {
    display: flex;
    flex-direction: column;
}

.info-text {
    color: var(--black);
    font-size: 14px;
    margin: 0;
    font-weight: 400;
}

.section-headline {
    margin: 0 0 16px 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
}

/* Responsive */
@media (min-width: 768px) {
    .footer-primary-section {
        grid-template-columns: 1fr 1fr;
    }
}

.footer-logo {
    width: 180px;
    height: 37px;
    margin-bottom: 12px;
}

.footer-link {
    text-decoration: none;
    color: var(--black);
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 12px;
}

.footer-link:hover {
    color: var(--primary);
    cursor: pointer;
}

.about-us-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 64px;
}

.content-section {
    margin-top: 128px;
    color: var(--black);
}

.article-img {
    border-radius: 24px;
    width: 100%;
    height: auto;
    margin-bottom: 24px;
}
