:root {
    --text-shadow: 0 8px 24px rgba(0, 0, 0, 0.55);
    --overlay: rgba(0, 0, 0, 0.55);
    --max-width: 960px;
}

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

body {
    min-height: 100vh;
    font-family: "Inter", "Segoe UI", "Roboto", -apple-system, BlinkMacSystemFont, sans-serif;
    color: #fff;
    background: #050505;
}

section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px;
    position: relative;
    overflow: hidden;
}

section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--overlay);
}

section > * {
    position: relative;
    z-index: 1;
    text-shadow: var(--text-shadow);
}

.hero {
    background: url("visuals/1.jpg") center/cover no-repeat;
}

.hero-logo {
    width: min(320px, 70vw);
    height: auto;
}

.content {
    background: url("visuals/2.jpg") center/cover no-repeat;
}

.content p {
    max-width: var(--max-width);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.9;
}

@media (max-width: 640px) {
    section {
        padding: 120px 16px;
    }

}

