@font-face {
font-family: "Kalameh";
src: url("fonts/Kalameh.woff2") format("woff2");
font-style: normal;
font-weight: 400;
font-display: swap;
}

@font-face {
font-family: "Kalameh";
src: url("fonts/Kalameh-bold.woff2") format("woff2");
font-style: normal;
font-weight: 600;
font-display: swap;
}

:root {
--bg-color: linear-gradient(180deg, #141b24 0%, #0e131a 75%, #0a0e14 100%);
--accent: #10ac84;
--text: #d8e0e8;
--sub-text: #8a96a3;
}

*,
*::before,
*::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}

html {
min-height: 100dvh;
scroll-behavior: smooth;
overflow-x: hidden;
}

header {
width: 100%;
display: flex;
justify-content: center;
}

body {
background: var(--bg-color);
font-family: "Kalameh";
font-weight: 400;
color: var(--text);
}

::selection {
background: var(--accent);
color: #000;
}

a {
color: inherit;
text-decoration: none;
}

a:hover {
color: var(--accent);
}

.main-menu {
width: 100%;
max-width: 900px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 32px;
padding-bottom: 0;
box-sizing: border-box;
}

hgroup {
line-height: 1.2;
font-weight: 600;
}

hgroup h1 {
font-size: clamp(0.95rem, 2vw, 1.5rem);
white-space: nowrap;
}

hgroup h2 {
font-size: clamp(0.80rem, 2vw, 1.25rem);
white-space: nowrap;
}

span {
color: var(--accent);
}

.links {
display: flex;
gap: clamp(12px, 2vw, 36px);
font-size: clamp(0.75rem, 2vw, 1.1rem);
}

section {
width: 100%;
max-width: 900px;
margin: 0 auto;
padding: 32px;
box-sizing: border-box;
margin-top: 32px;
text-align: justify;
}

section img {
max-width: 100%;
height: auto;
display: block;
margin: 0 auto;
transition: transform 0.5s ease;
cursor: zoom-in;
user-select: none;
-webkit-user-drag: none;
}

section img:hover {
transform: scale(1.25);
position: relative;
z-index: 10;
}

@media (max-width: 1200px) {
section img:hover {
    transform: scale(1.15);
}
}

@media (max-width: 1000px) {
section img:hover {
    transform: scale(1.075);
}
}

h3 {
font-size: 1.25rem;
font-weight: 600;
line-height: 2;
color: var(--accent);
}

p {
line-height: 2;
}

.brief:hover {
background: rgba(0, 0, 0, 0.1);
}

.info {
color: var(--sub-text);
}

.info h4 {
font-size: 1.15rem;
font-weight: 600;
}

.info p {
line-height: 2;
background: rgba(0, 0, 0, 0.1);
padding: 24px 0px 24px 32px;
}

.markdown-body {
max-width: 900px;
margin: 0 auto;
padding: 32px;
}

.markdown-body h3 {
color: inherit;
}

.download {
display: flex;
justify-content: center;
margin: 32px;
}

.cta {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 12px 24px;
background: linear-gradient(180deg, #6633cc 0%, #0099cc 100%);
color: white;
font-weight: 500;
font-size: 18px;
border-radius: 8px;
text-decoration: none;
transition: opacity 0.2s ease, transform 0.2s ease;
}

.cta span {
color: white;

}

.cta:hover {
transform: translateY(-4px);
background: linear-gradient(180deg, #0099cc 0%, #6633cc 100%);
}

.cta:active {
transform: translateY(0);
}

.cta img {
display: block;
pointer-events: none;
user-select: none;
-webkit-user-drag: none;
}

footer {
display: flex;
justify-content: center;
padding: 32px;
pointer-events: none;
user-select: none;
-moz-user-select: none;
}

footer span {
font-size: .9rem;
font-weight: 600;
color: var(--sub-text);
opacity: 0.4;
}

footer span::before {
content: "©";
font-size: 1rem;

}