
/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html, body, div, span, h1, h2, h3, h4, h5, h6, p, a, ul, ol, li, img, table, thead, tbody, tr, th, td, form, input, button, select, textarea {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}

ol, ul {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

img {
	display: block;
	max-width: 100%;
}

a {
	text-decoration: none;
	color: inherit;
}


/* ─── Fonts ─────────────────────────────────────────── */
@font-face {
	font-family: 'Montserrat';
	src: url('fonts/Montserrat-Regular_0.otf') format('opentype');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'Montserrat';
	src: url('fonts/Montserrat-Bold_0.otf') format('opentype');
	font-weight: 700;
	font-style: normal;
}

/* ─── Variables ─────────────────────────────────────────── */
:root {
	--color-green: #74b759;
	--color-green-hover: #5d9546;
	--color-white: #ffffff;
	--color-overlay: rgba(18, 76, 107, 0.74);
	--font-main: 'Montserrat', sans-serif;
}

/* 1rem = 10px */
html {
	font-size: 62.5%;
}

body {
	font-size: 1.4rem;
	font-family: var(--font-main);
	font-weight: normal;
	text-align: center;
	background-color: black;
	color: var(--color-white);
}

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
	position: relative;
	min-height: 100vh;
	overflow: hidden;
}

.hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	background: url(images/bg_temp.jpg) no-repeat center center / cover;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: var(--color-overlay);
	z-index: 1;
}

.hero-inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	padding: 0;
}

/* ─── HEADER ────────────────────────────────────────────── */
.header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 50px 120px;
}

.logo-link {
	display: block;
	text-decoration: none;
	border: none;
}

.logo-img {
	width: 503px;
	height: auto;
}

.social {
}

.social-link {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-top: 0.5rem;
	text-decoration: none;
	border: none;
}

.social-label {
	font-size: 2.2rem;
	font-weight: 700;
	letter-spacing: 0.05em;
}

.social-icon {
	display: block;
	width: 36px;
	height: auto;
	margin-left: 1em;
}

/* ─── MAIN CONTENT ──────────────────────────────────────── */
.main-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	flex: 1;
	gap: 2.5rem;
	padding: 2rem 120px;
}

.tagline {
	font-size: 3.0rem;
	font-style: italic;
	font-weight: bold;
}

.headline {
	font-size: 3.0rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: left;
}

.accent {
	color: var(--color-green);
}

.btn-contact {
	display: inline-block;
	background: var(--color-green);
	color: var(--color-white);
	text-decoration: none;
	font-weight: 700;
	font-size: 2.2rem;
	padding: 0.85em 2em;
	border-radius: 4px;
	letter-spacing: 0.03em;
	transition: background 0.2s ease;
}

.btn-contact:hover {
	background: var(--color-green-hover);
}

/* ─── PARTNERS FOOTER ───────────────────────────────────── */
.partners {
	background: var(--color-white);
	padding: 2rem 120px;
}

.partners-logos {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 3rem;
	flex-wrap: wrap;
}

.partner-link {
	display: block;
}

.partner-logo {
	height: 75px;
	width: auto;
}


/* ─── RESPONSIVE ──────────────────── */
@media (max-width: 1100px) {
    .header,
    .main-content,
    .partners{
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media (max-width: 1024px) {
	.logo-img {
        width: 360px;
    }

    .tagline,
    .headline{
        font-size: 2.3rem;
    }

    .btn-contact {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .header,
    .main-content,
    .partners{
        padding-left: 25px;
        padding-right: 25px;
    }
	.logo-img {
        width: 300px;
    }
    .social-label {
        font-size: 1.8rem;
    }
}

@media (max-width: 644px) {
    .header,
    .main-content,
    .partners{
        padding-left: 15px;
        padding-right: 15px;
        padding: 15px;
    }
	.header {
        flex-wrap:wrap;
        justify-content: center;
    }
    .logo-link {
        order: 1;
        width: 100%;
    }
    .logo-img {
        width: 250px;
        margin: auto;
    }
    .social {
        order: 0;
        margin-bottom: 50px;
        margin-right: 0;
        margin-left: auto;
    }
    .main-content,
    .headline {
        align-items: center;
        text-align: center;
    }
    .main-content{
        padding-bottom:25px;
    }
}

@media (max-width: 480px) {
	
}