/*
Theme Name:		Astra Child
The URI:		mwwood.dk
Description:	Beskrivelse her
Author:			Rasmus Hultquist
Author URI:		mwwood.dk
Template:		astra
Version:		1.0.0
License:		GNU General Public License v2 or later
License URI:	http://www.gnu.org/licenses/gpl-2.0.html
Text Domain		astra-child
*/

/* CUSTOM STYLING START */

/* ----------------------------- */
/* Root Variables */
/* ----------------------------- */
:root {
	--clr-dark: #1a1a1a;
	--clr-light: #ffffff;
	--clr-light-secondary: #d3c2a8;
	--clr-bg: #f5f5f0;
	--clr-bg-light: #f4f5ee;
	--clr-accent: #a3b58b;
	--clr-green: #839674;
	--clr-green-dark: #666d2c;
	--clr-yellow: #e1c65f;
	--clr-brown: #695e4d;
	--clr-orange: #ab846b;
	--max-width: 1250px;
	--ast-global-color-subtle-background: #839674;
	--clr-darkblue: #1f2a44;
	--clr-beige: #f2efe6;
}

.nav-btn-green {
	background: var(--clr-green);
	padding: 15px;
	border-radius: 6px;
}

.nav-btn-green a,
.nav-btn-green a:hover {
	color: var(--clr-bg-light) !important;
	font-weight: bold;
}

.nav-btn-blue {
	background: var(--clr-darkblue);
	padding: 15px;
	border-radius: 6px;
}

.nav-btn-blue a,
.nav-btn-blue a:hover {
	color: var(--clr-bg-light) !important;
	font-weight: bold;
}


.clr-light {
	color: var(--clr-light) !important;
}

.clr-light-secondary {
	color: var(--clr-light-secondary);
}

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

.clr-green-bg,
.clr-green-bg a {
	background: var(--clr-green) !important;
	color: var(--clr-light) !important;
	font-weight: bold !important;
}

.clr-green-bg a:active,
.clr-green-bg a:hover {
	color: var(--clr-light) !important;
}

.clr-blue-bg,
.clr-blue-bg a {
	background: var(--clr-darkblue) !important;
	color: var(--clr-light) !important;
	font-weight: bold !important;
}

.clr-blue-bg a:active,
.clr-blue-bg a:hover {
	color: var(--clr-light) !important;
}

.clr-green-dark-bg,
.clr-green-bg-dark a {
	background: var(--clr-green-dark) !important;
	color: var(--clr-light) !important;
	font-weight: bold !important;
}

.clr-green-bg-dark a:active,
.clr-green-bg-dark a:hover {
	color: var(--clr-light) !important;
}

.btn-primary:hover {
	color: #fff;
}

.btn-outline:hover {
	color: #839674;
}

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

body {
	font-family: Arial, sans-serif;
	background: var(--clr-light);
	color: var(--clr-dark);
	line-height: 1.6;
}

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

.container {
	width: 90%;
	max-width: var(--max-width);
	margin: 0 auto;
}

section {
	padding: 80px 0;
}

/* ----------------------------- */
/* Header */
/* ----------------------------- */
.header {
	width: 100%;
	padding: 20px 0;
	background: #fff;
	position: relative;
	z-index: 10;
}

.header__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header__logo img {
	height: 40px;
	/* Placeholder */
}



/* ----------------------------- */
/* Hero Section */
/* ----------------------------- */
.hero {
	background: linear-gradient(to right, #2a2a2a 40%, transparent), url('http://mwwood.dk/wp-content/uploads/2025/12/MW-wood-bg.avif');
	background-size: cover;
	background-position: center;
	color: #fff;
	padding: 150px 0;
}

.hero__content {
	/*max-width: 600px;*/
}

.hero__badge {
	display: inline-block;
	background: var(--clr-green);
	padding: 8px 12px;
	border-radius: 20px;
	color: #fff;
	font-size: 14px;
	margin-bottom: 20px;
	font-weight: bold;
}

.hero h1 {
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--clr-light-secondary);
}

.hero p {
	margin-bottom: 20px;
	font-size: 18px;
}

.hero__list {
	margin: 20px 0;
	display: flex;
	gap: 20px;
	font-size: 14px;
}

.hero__list li {
	margin-bottom: 10px;
	list-style: none;
	display: flex;
	gap: 10px;
}

.hero__buttons {
	display: flex;
	gap: 20px;
	margin-top: 25px;
}

.btn {
	display: inline-block;
	padding: 12px 14px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: bold;
}

.btn-primary {
	background: var(--clr-green);
	color: #fff;
	display: flex;
	align-items: center;
	gap: 5px;
}

.btn-light {
	background: var(--clr-light);
	color: var(--clr-green);
}

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

.btn-light.beige {
	background: var(--clr-light);
	color: var(--clr-beige);
}

.btn-light.clr__blue {
	background: var(--clr-light);
	color: var(--clr-darkblue);
}

.hero .btn-outline {
	border: 2px solid #fff;
}

.btn-outline {
	border: 2px solid var(--clr-green);
	color: var(--clr-green);
}

.btn-outline.beige {
	border: 2px solid var(--clr-beige) !important;
	color: var(--clr-beige) !important;
}

.btn-outline.clr__blue {
	border: 2px solid var(--clr-darkblue) !important;
	color: var(--clr-darkblue) !important;
}



.max-w-2xl {
	max-width: 672px;
}

/* ----------------------------- */
/* Services */
/* ----------------------------- */
.services {
	text-align: center;
	background: #fff;
}

.services__grid {
	margin-top: 40px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
}

.service-card {
	background: var(--clr-beige);
	padding: 25px;
	border-radius: 12px;
	text-align: left;
}

section.services .service-icon {
	margin-bottom: 10px;
}

.service-icon {
	width: 60px;
	height: 60px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.service-icon.primary-green {
	background: var(--clr-green);
}

.service-icon.dark-green {
	background: var(--clr-green-dark);
}

.service-icon.brown {
	background: var(--clr-brown);
}

.service-icon.orange {
	background: var(--clr-orange);
}

.service-icon.blue {
	background: var(--clr-darkblue);
}

.service-icon.beige {
	background: var(--clr-beige);
}

.service-card h3 {
	margin-bottom: 10px;
}

/* ----------------------------- */
/* Why Us */
/* ----------------------------- */
.whyus {
	background: var(--clr-beige);
	color: var(--clr-dark);
}

.whyus h2 {
	color: var(--clr-dark);
}

.whyus__content {
	display: flex;
	gap: 50px;
	align-items: center;
}

.whyus__text {
	flex: 1;
}

.whyus__image {
	flex: 1;
}

.whyus__image img {
	border-radius: 20px;
}

.whyus__point {
	font-size: 18px;
}

.whyus__sellingpoints {
	margin-bottom: 10px;
}

/* ----------------------------- */
/* Projects */
/* ----------------------------- */
.projects {
	background: #fff;
	text-align: center;
}

.projects__grid {
	margin-top: 40px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
}

.project-card {
	background: #ddd;
	height: 260px;
	border-radius: 12px;
	padding: 20px;
	display: flex;
	align-items: end;
	color: #fff;
	background-size: cover;
	position: relative;
	border-radius: 20px;
}

.project-card::after {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	content: "";
	background: #000;
	opacity: 0.4;
	border-radius: 20px;
}

.project-card strong {
	z-index: 1;
}

/* ----------------------------- */
/* CTA Contact */
/* ----------------------------- */
.cta {
	background: var(--clr-darkblue);
}

.cta__point {
	margin: 10px 0;
}

.cta__point a {
	color: inherit !important;
}

.cta__inner {
	display: flex;
	gap: 50px;
}

.cta__right {
	display: flex;
	align-items: center;
}

.cta__right .contact-box {
	width: 100%;
}

.cta__left,
.cta__right {
	flex: 1;
}

.contact-box {
	background: #fff;
	padding: 30px;
	border-radius: 12px;
}

/* ----------------------------- */
/* Footer */
/* ----------------------------- */
.footer {
	background: #1e1e1e;
	color: #fff;
	padding: 60px 0;
}

.footer__cols {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
}

footer a {
	color: var(--clr-green) !important;
	text-decoration: none;
	font-weight: bold;
}

footer section {
	padding: 20px 0;
}

/* ----------------------------- */
/* Mobile Responsive */
/* ----------------------------- */
@media (max-width: 1024px) {

	.services__grid,
	.projects__grid,
	.footer__cols {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.header__nav {
		display: none;
		flex-direction: column;
		background: #fff;
		padding: 20px;
		position: absolute;
		top: 70px;
		right: 0;
		width: 200px;
	}

	.hero h1 {
		font-size: 32px;
	}

	.menu-toggle {
		display: block;
	}

	.hero {
		padding: 40px 0;
	}

	.services__grid {
		grid-template-columns: 1fr;
	}

	.whyus__content {
		flex-direction: column;
	}

	.projects__grid {
		grid-template-columns: 1fr;
	}

	.cta__inner {
		flex-direction: column;
	}

	.hero__list {
		display: block;
	}
}

/* THEME STYLING START */

.content-area {
	max-width: 800px;
}

.ast-site-identity {
	padding: 10px 0;
}

#ast-scroll-top {
	background: #839674;
}

.flex {
	display: flex !important;
}

.al-center {
	align-items: center !important;
}

.transition {
	transition: ease-in-out 0.2s;
}

.translate02:hover {
	transform: translate(0, -2px);
	box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

.translate06:hover {
	transform: translate(0, -6px);
	box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

.bold {
	font-weight: bold;
}

.block {
	display: block !important;
}

.zoom:hover {
	transform: scale(1.02);
}

.box-shadow {
	box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

.site-footer p {
	margin: 8px 0 !important;
}

.site-footer i {
	margin-right: 10px;
}

.ast-builder-grid-row-container-inner {
	max-width: 90%;
	margin: auto;
}

.main-navigation a {
	color: #fff !important;
}

.main-navigation a:hover {
	color: #839774 !important;
}

#menu-item-15 > a, #menu-item-16 > a:hover {
	color: #fff !important;
}

.fp-section-top {
	background: url("http://mwwood.dk/wp-content/uploads/2025/12/MW-wood-bg.avif");
}

.cl-b {
	clear: both;
}

.ast-theme-transparent-header #masthead {
	position: relative !important;
}

.a:hover,
a:focus {
	color: inherit !important;
}

[data-section="section-header-mobile-trigger"] .ast-button-wrap .mobile-menu-toggle-icon .ast-mobile-svg {
	fill: #3e3e3e;
}

.ast-button-wrap .menu-toggle.main-header-menu-toggle {
	padding: 0;
}

nav li {
	margin: 0 5px !important;
}

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


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


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


@media (max-width: 767.98px) {
	h1 {
		font-size: 2.25rem;
	}
}


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