/* ---------- Reset ---------- */
@font-face {
	font-family: 'F37Drago-Light';
	src: url('fonts/F37Drago-Light.woff2') format('woff2'),
		url('fonts/F37Drago-Light.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'BasisGrotesqueRegular';
	src: url('fonts/BasisGrotesqueRegular.woff2') format('woff2'),
		 url('fonts/BasisGrotesqueRegular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

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

html,
body {
    height: 100%;
    background: #0c262e;
}

body {
    font-family: Helvetica, Arial, sans-serif;
    color: #ffffff;
    padding: 15px;
}

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

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: calc(100vh - 30px);
    width: 100%;
    background-image: url("background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 35px 35px;
    border-radius: 5px;
    overflow: hidden;
}

/* Optional dark overlay for legibility over the photo — remove if not needed */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(0, 0, 0, 0.25); */
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.6) 100%),
linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 22.6%);
    z-index: 0;
}

.hero__top,
.hero__bottom {
    position: relative;
    z-index: 1;
}

/* ---------- Top / Logo ---------- */
.hero__top {
    display: flex;
    justify-content: center;
    padding: 10px 0 0;
}

.hero__logo {
    height: 60px;
    width: auto;
}

/* ---------- Bottom ---------- */
.hero__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    padding: 0;
}

.hero__title {
    font-size: 21px;
    font-weight: 300;
    font-family: 'F37Drago-Light';
    line-height: 1.3;
    text-align: center;
    max-width: 560px;
    margin-bottom: 50px;
    color: #D9E0FC;
}

.hero__banner {
    width: 100%;
    height: auto;
    display: block;
}

.contact {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.contact__item {
    font-size: 15px;
    font-family: 'BasisGrotesqueRegular' !important;
    text-transform: uppercase;
    color: #D9E0FC;
    width: 20%;
    min-width: 300px;
    max-width: 100%;
    transition: opacity 0.3s ease;
}

.contact__item span {
    margin-right: 20px;
}

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

.text-end {
    text-align: right;
}

.contact__item:hover,
.contact__item:focus-visible {
    opacity: 0.7;
}

/* ---------- Responsive ---------- */
@media (max-width: 700px) {
    .hero {
        padding: 0 15px 15px;
    }
    .hero__top {
        padding: 10px 0 0;
    }

    .hero__logo {
        height: 44px;
    }

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

    .contact {
        flex-direction: column;
        gap: 12px;
        padding: 0;
        text-align: center;
    }
}