/* -------------------------------------------------- */
/* Fonts */
/* -------------------------------------------------- */

@font-face {
	font-family: 'Raleway';
	src: url('../fonts/raleway-extralight.woff') format('woff');
	font-weight: 200;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Raleway';
	src: url('../fonts/raleway-regular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Raleway';
	src: url('../fonts/raleway-medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Raleway';
	src: url('../fonts/raleway-semibold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

/* -------------------------------------------------- */
/* Reset */
/* -------------------------------------------------- */

*, *::before, *::after {
	box-sizing: border-box;
}

body, h1, h2, h3, p, ul, form {
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

#about,
#contact {
	scroll-margin-top: 80px;
}

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

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

/* -------------------------------------------------- */
/* Base */
/* -------------------------------------------------- */

body {
	font-family: 'Raleway', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 22px;
	color: #888;
	background: #fff;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* -------------------------------------------------- */
/* Header */
/* -------------------------------------------------- */

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 80px;
	background: rgba(255, 255, 255, 0.95);
	z-index: 100;
	transition: transform 0.3s ease;
}

.site-header.is-hidden {
	transform: translateY(-100%);
}

.site-header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}

.site-logo {
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
	font-size: 20px;
	color: #222;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.site-nav ul {
	list-style: none;
	display: flex;
	gap: 30px;
}

.site-nav a {
	font-family: 'Raleway', sans-serif;
	font-weight: 500;
	font-size: 11px;
	color: #555;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.site-nav a:hover {
	color: #b3b3b3;
}

.nav-toggle {
	display: none;
	width: 32px;
	height: 24px;
	position: relative;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: #222;
	transition: transform 0.2s ease;
}

.nav-toggle span {
	top: 11px;
}

.nav-toggle span::before {
	content: '';
	top: -9px;
}

.nav-toggle span::after {
	content: '';
	top: 9px;
}

.nav-toggle.is-active span {
	background: transparent;
}

.nav-toggle.is-active span::before {
	transform: translateY(9px) rotate(45deg);
}

.nav-toggle.is-active span::after {
	transform: translateY(-9px) rotate(-45deg);
}

.mobile-nav {
	display: none;
	position: fixed;
	top: 80px;
	left: 0;
	right: 0;
	background: #fff;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
	z-index: 99;
}

.mobile-nav.is-open {
	display: block;
}

.mobile-nav ul {
	list-style: none;
}

.mobile-nav a {
	display: block;
	padding: 16px 20px;
	font-family: 'Raleway', sans-serif;
	font-weight: 500;
	font-size: 12px;
	color: #555;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-top: 1px solid #eee;
}

/* -------------------------------------------------- */
/* Hero */
/* -------------------------------------------------- */

.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	background-image: url('../img/hero.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero-inner {
	padding-top: 80px;
}

.hero-title {
	font-family: 'Raleway', sans-serif;
	font-weight: 200;
	font-size: 46px;
	line-height: 1.25;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 15px;
}

.hero-subtitle {
	font-family: 'Raleway', sans-serif;
	font-weight: 400;
	font-size: 16px;
	color: #fff;
	letter-spacing: 0.5px;
	margin-bottom: 30px;
}

.hero-actions {
	display: flex;
	gap: 15px;
}

.btn {
	display: inline-block;
	font-family: 'Raleway', sans-serif;
	font-weight: 500;
	font-size: 11px;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 2px;
	padding: 12px 20px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	background: transparent;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.7);
}

/* -------------------------------------------------- */
/* Sections */
/* -------------------------------------------------- */

.section {
	padding: 80px 0;
}

.section-alt {
	background: #fafafa;
}

.section-title {
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
	font-size: 30px;
	color: #222;
	margin-bottom: 30px;
}

.section-content p {
	font-size: 14px;
	line-height: 22px;
	color: #000;
	margin-bottom: 15px;
}

.section-content a {
	color: #b3b3b3;
	text-decoration: underline;
}

/* -------------------------------------------------- */
/* Contact form */
/* -------------------------------------------------- */

.cform-field {
	margin-bottom: 18px;
}

.cform-field label {
	display: block;
	font-family: 'Raleway', sans-serif;
	font-size: 11px;
	color: #222;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 8px;
}

.cform-field input,
.cform-field textarea {
	width: 100%;
	border: 1px solid #ddd;
	padding: 10px;
	font-family: Arial, sans-serif;
	font-size: 13px;
	color: #333;
	background: #fff;
}

.cform-field textarea {
	resize: vertical;
	min-height: 120px;
}

.cform-submit {
	display: inline-block;
	font-family: 'Raleway', sans-serif;
	font-weight: 500;
	font-size: 11px;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 12px 24px;
	border: none;
	background: #b3b3b3;
	cursor: pointer;
	transition: background 0.2s ease;
}

.cform-submit:hover {
	background: #999;
}

.cform-submit:disabled {
	opacity: 0.6;
	cursor: default;
}

.cform-submit-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.cform-response {
	padding: 10px 15px;
	font-size: 13px;
	display: none;
}

.cform-response.is-visible {
	display: block;
}

.cform-response.is-success {
	border: 2px solid #398f14;
	color: #398f14;
}

.cform-response.is-error {
	border: 2px solid #d9534f;
	color: #d9534f;
}

.cform-honeypot {
	position: absolute;
	left: -9999px;
}

/* -------------------------------------------------- */
/* Footer */
/* -------------------------------------------------- */

.site-footer {
	position: relative;
	padding: 30px 0;
	text-align: center;
	font-size: 13px;
	color: #888;
}

.back-to-top {
	position: absolute;
	right: 20px;
	top: -40px;
	width: 40px;
	height: 40px;
	background: #fff;
	border-radius: 3px 3px 0 0;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.08);
}

.back-to-top svg {
	width: 16px;
	height: 16px;
	stroke: #222;
}

/* -------------------------------------------------- */
/* Responsive */
/* -------------------------------------------------- */

@media (max-width: 1024px) {
	.site-nav {
		display: none;
	}

	.nav-toggle {
		display: block;
	}
}

@media (max-width: 768px) {
	.hero {
		background-position: 80% center;
	}
}

@media (max-width: 600px) {
	.hero-title {
		font-size: 32px;
	}

	.hero-actions {
		flex-direction: column;
	}

	.btn {
		text-align: center;
	}
}
