/*!
Theme Name: DKamman
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: dkamman
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

DKamman is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');

.entry-header,
.post-thumbnail {
	display: none;
}

:root {

	/* Typography */
	--body-font: 'Merriweather';
	--heading-font: 'Merriweather';

	/* Utility */
	--section-margin: 320px;
	--max-container-width: 1280px;
	--container-padding: calc((100vw - var(--max-container-width)) / 2);

	--navbar-height: 100px;

	--box-shadow: 0 4px 30px rgba(0, 0, 0, .15);

	/* Colors */
	--antique-white: #fff5ea;

	--black: #000;
	--white: #fff;

	--text: #7d6a6a;

	--primary: #b71010;
	--primary-tint-1: #D66363;
}
@media (max-width: 1280px) {
	:root {
		--section-margin: 80px;
		--container-padding: calc((100vw - 90vw) / 2);
		--navbar-height: 56px;
	}
}

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

html {
	scroll-behavior: smooth;
}

body {
	position: relative;
	font-family: var(--body-font);
}

/* .body-overlay {
position: absolute;
inset: 0;

background-image: url('/wp-content/uploads/2024/12/wall.svg');
background-size: 25%;
background-repeat: repeat;
opacity: .15;
} */

#page {
	position: relative;
	z-index: 2;
}


body,
p,
a,
a:visited {
	font-family: var(--body-font);
	color: var(--black);
	text-decoration: none;

	font-size: 16px;
	line-height: 1.3;
}

h1, h2, h3, h4 {
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-style: italic;
}

h1, .h1 {
	font-size: 64px;
}
h2, .h2 {
	font-size: 48px;
}
h3, .h3 {
	font-size: 32px;
}
h4, .h4 {
	font-size 24px;
	letter-spacing: 1px;
}

section {
	margin-top: var(--section-margin);
}

img, video, svg, iframe {
	display: block;
}

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

.wysiwyg h1 {
	margin-bottom: 24px;
}
.wysiwyg p {
	margin: 16px 0 32px;
}
.wysiwyg p:last-child {
	margin-bottom: 0;
}

.btn-group {
	display: flex;
	gap: 8px;
	margin-top: 16px;
	flex-wrap: wrap;
}

.page__intro {
	margin-top: 32px;
}
@media (min-width: 1280px) {
	.page__intro {
		display: none;
	}
}

/* Buttons */
.btn,
.btn:visited {
	background-color: var(--primary-tint-1);
	padding: 12px 16px;
	color: var(--white);
	white-space: nowrap;
	transition: all .2s ease;
}
.btn:hover {
	background-color: var(--primary);
}

/* Header */
#masthead {
	position: sticky;
	top: 0;
	background-color: var(--white);
	z-index: 999;
}
#masthead .main-navigation {
	height: 100px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 64px;
	padding: 0 var(--container-padding);
	position: relative;
}
#masthead .main-navigation:before {
	content: '';
	position: absolute;
	bottom: 0;
	width: calc(100% - (var(--container-padding) * 2));
	height: 1px;
	background: var(--black);
	left: var(--container-padding);
	transition: all .2s ease;
	transform-origin: center;
	transform: scaleX(0);
}

#masthead.header--scrolled .main-navigation:before {
	transform: scaleX(1);
}

#masthead .menu-desktop-menu-left-container .menu,
#masthead .menu-desktop-menu-right-container .menu {
	display: flex;
	gap: 16px;
	list-style: none;
}

#masthead .menu-item.disabled {
	pointer-events: none;
	cursor: default;
}
#masthead .menu-item.disabled a {
	color: lightgray;
}

#masthead .menu-item a {
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-style: italic;

	transition: all .2s ease;
}

#masthead .menu-item a:hover {
	color: var(--primary);
}

#masthead .menu-item.current-menu-item > a {
	color: var(--primary);
}

.header__logo-wrapper {
	height: 64px;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: all .3s ease;
	transform-origin: left;
}
.header__logo-wrapper:hover {
	scale: 1.06;
}

.header__logo-wrapper img {
	height: 100%;
}

.header__hamburger {
	display: none;

	flex-direction: column;
	gap: 4px;

	padding-right: var(--container-padding);
}

.header__hamburger-line {
	width: 24px;
	height: 2px;
	background-color: var(--black);
}

.header__mobile-navigation {
	display: none;

	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	height: 100svh;
	width: 100%;

	justify-content: flex-end;

	padding: 16px;

	background-color: rgba(0,0,0,0);
	pointer-events: none;

	transition: all .15s .3s ease;
}

.header__mobile-navigation-inner {
	background-color: var(--white);
	padding: 24px;
	height: 100%;

	width: 100%;
	max-width: 380px;

	display: flex;
	flex-direction: column;
	align-items: flex-end;

	transform-origin: right;

	transform: scaleX(0);
	transition: all .15s .1s ease;
}

.header__mobile-navigation .menu-desktop-menu-left-container .menu,
.header__mobile-navigation .menu-desktop-menu-right-container .menu {
	flex-direction: column;
	align-items: flex-end;
}

.header__mobile-navigation-close {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	margin-bottom: 16px;

	transform: translateX(24px);
	opacity: 0;
	transition: all .15s ease;
}

.header__mobile-navigation-close i {
	font-size: 24px;
}

.header__mobile-navigation-wrapper {
	display: flex;
	flex-direction: column;
	gap: 24px;
	justify-content: center;

	transform: translateX(24px);
	opacity: 0;
	transition: all .2s ease;
}

.header__mobile-navigation-socials {
	margin-top: auto;
	display: flex;
	justify-content: space-between;
	width: 100%;
	border-top: 1px solid var(--black);
	padding-top: 24px;

	transform: translateX(24px);
	opacity: 0;
	transition: all .2s ease;
}
.header__mobile-navigation-socials i {
	font-size: 24px;
}

.header__logo-wrapper.mobile {
	display: none;
	padding-left: var(--container-padding);
	height: 40px;
	position: relative;
	top: unset;
	left: unset;
	transform: translate(0, 0);
}

body.header--open .header__mobile-navigation {
	background-color: rgba(0,0,0,0.25);
	pointer-events: all;

	transition: all .18s ease;
}
body.header--open .header__mobile-navigation-inner {
	transform: scaleX(1);

	transition: all .18s .18s ease-in-out;
}
body.header--open .header__mobile-navigation-close,
body.header--open .header__mobile-navigation-wrapper,
body.header--open .header__mobile-navigation-socials {
	transform: translateX(0);
	opacity: 1;
	transition: all .18s .345s ease;
}

@media (max-width: 1280px) {
	#masthead {
		display: flex;
		justify-content: space-between;
		align-items: center;
		height: 56px;
	}
	#masthead:after {
		content: '';
		position: absolute;
		bottom: 0;
		width: 90%;
		height: 1px;
		background-color: black;
		left: 50%;
		transform: translateX(-50%);
	}

	.header__logo-wrapper.mobile {
		display: block;
	}

	#masthead .main-navigation {
		display: none;
	}

	.header__hamburger {
		display: flex;
	}

	.header__mobile-navigation {
		display: flex;
	}

	#masthead .menu-desktop-menu-left-container .menu, #masthead .menu-desktop-menu-right-container .menu {
		gap: 24px;
	}
}
/* End Header */


/* Footer */
#colophon {
	margin-top: var(--section-margin);
	padding-bottom: 24px;
}
.footer__mobile-navigation-socials {
	margin-top: auto;
	display: flex;
	justify-content: space-around;
	width: 100%;
	border-top: 1px solid var(--black);
	padding-top: 24px;
	transition: all .2s ease;
}
.footer__mobile-navigation-socials i {
	font-size: 24px;
}

.footer__bottom {
	display: flex;
	justify-content: center;
	padding-top: 24px;
}
.footer__bottom-text,
.footer__bottom-text a {
	font-size: 12px;
}
/* End Footer */


/* Component Intro */
.component-intro {
	margin-bottom: 96px;
}

.component-intro h2 {
	text-align: center;
}
/* END Component Intro */

.invisible-start {
	opacity: 0;
}


@media (min-width: 1024px) {
	:root {
		--section-padding: 128px;
	}
}