/*
Theme Name: Leadgen BrikBeleg
Theme URI: https://example.com
Description: Child theme for GeneratePress funnel leadgen sites
Author: Jorn B.
Author URI: https://example.com
Template: generatepress
Version: 1.0.0
Text Domain: gp-leadgen-child
*/
.site-header {
	background: #fff;
	border-bottom: 1px solid #bdbdbd;
}

body {
	overflow-x: hidden;
}


/* Change page padding other pages than home */
.separate-containers .inside-article {
	padding: 0;
}
.site-main .wp-block-group__inner-container {
    padding: 0px !important;
}
.home .site-main .wp-block-group__inner-container {
    padding: 0px !important;
}
.site-main .wp-block-group__inner-container {
	max-width: none;
    padding-top: 0;
}

/* End */

.home.separate-containers .inside-article {
	padding: 0;
}

.inside-article {
	padding: 0;
}

.home .site-main .wp-block-group__inner-container {
	max-width: none;
    padding-top: 0;
}

.site-header__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 18px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.site-header__branding {
	flex: 0 0 auto;
}

.site-header__logo-link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.custom-logo {
	max-height: 60px;
	width: auto;
	display: block;
}

.site-header__nav {
	flex: 1 1 auto;
	display: flex;
	justify-content: center;
}

.site-header__menu {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 32px;
	margin: 0;
	padding: 0;
}

.site-header__menu li {
	margin: 0;
}

.site-header__menu a {
	text-decoration: none;
	color: #222;
	font-size: 18px;
	line-height: 1.2;
}

.site-header__menu a:hover,
.site-header__menu a:focus {
	text-decoration: underline;
}

.separate-containers .site-main {
    margin: 0px;
}


/* 404 page changes */

.error-404 {
    text-align: center;
    padding: 60px 20px;
    max-width: 700px;
    margin: 0 auto;
}

.error-404 .entry-title {
    font-size: 3em;
    margin-bottom: 20px;
}

.error-404 .page-content > p {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #555;
}

.error-404-actions {
    margin: 30px 0 50px;
}

.error-404 .button {
    display: inline-block;
    padding: 12px 28px;
    background: #4cc7df;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.2s;
}

.error-404 .button:hover {
    background: #fff;
    color: #4cc7df;
}

.error-404 h2 {
    font-size: 1.3em;
    margin-top: 40px;
    margin-bottom: 15px;
}

.error-404 .search-form {
    max-width: 400px;
    margin: 0 auto;
}

/* End 404 page changes */

@media (max-width: 900px) {
	.site-header__inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.site-header__nav {
		width: 100%;
		justify-content: flex-start;
	}

	.site-header__menu {
		flex-wrap: wrap;
		gap: 16px 20px;
	}
}