:root {
	--wp--preset--color--text: unset !important;
}



/* === Reset === */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	/*color: #2d2d2d;*/
	background-color: #fff;
	line-height: 1.6;
	font-weight: 400;
}

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

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

/* === Typography === */


@font-face {
  font-family: 'Satoshi-Variable';
  src: url('/wp-content/themes/symphonai/assets/fonts/Satoshi-Variable.woff2') format('woff2');
  font-weight: 300 900;
  font-display: swap;
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Satoshi-Variable';
	font-weight: 800;
	color: #414042;
	margin-bottom: 0.5em;
	line-height: 1.3;
}
p {
	margin-bottom: 1.2em;
}


/* Sticky footer layout */
html, body {
	height: 100%;
}

body {
	display: flex;
	flex-direction: column;
}

.site-main {
	flex: 1 0 auto;
}

.site-footer {
	flex-shrink: 0;
}

/* === Container === */
.container,
.site-main > .container {
	width: 100%;
	max-width: 1300px;
	padding-left: 1rem;
	padding-right: 1rem;
	margin-left: auto;
	margin-right: auto;
}

/* === Gutenberg alignment support === */
.alignwide {
	max-width: 1440px;
	margin-left: auto;
	margin-right: auto;
}

.alignfull {
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
}

/* === Gutenberg support === */
.wp-block-group.has-background {
	position: relative;
}

.wp-block-group.has-background > .wp-block-group__inner-container {
	max-width: var(--wp--style--global--content-size, 800px);
	margin-left: auto;
	margin-right: auto;
	padding-left: 1rem;
	padding-right: 1rem;
}

.wp-block-group.alignwide.has-background > .wp-block-group__inner-container,
.wp-block-group.alignfull.has-background > .wp-block-group__inner-container {
	max-width: none;
	width: 100%;
}




.wp-block-columns,
.wp-block-column {
	--overlay-color: transparent;
	--overlay-opacity: 0;
}

.wp-block-columns .spn-overlay,
.wp-block-column .spn-overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}

.wp-block-columns,
.wp-block-column {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}

.wp-block-columns .spn-overlay,
.wp-block-column .spn-overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}





/* === Header === */
.site-header {
	padding: 1rem 0;
	/*border-bottom: 1px solid #eee;*/
	background-color: #fff;
	position: relative;
	top: 0;
	z-index: 1000;
}
.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.logo img {
	height: 40px;
}

/* === Navigation === */
.main-navigation ul {
	list-style: none;
	display: flex;
	gap: 1.5rem;
}
.main-navigation a {
	font-weight: 600;
	color: #414042;
}
.main-navigation a:hover {
	color: #f1792a;
}

/* === Hamburger === */
.hamburger {
	display: none;
	cursor: pointer;
	width: 24px;
	height: 24px;
	flex-direction: column;
	justify-content: space-between;
	background: none;
	border: none;
}
.hamburger span {
	display: block;
	height: 3px;
	background: #2d2d2d;
	border-radius: 2px;
}
.hamburger.is-active span:nth-child(2) {
	opacity: 0;
}
.hamburger.is-active span:nth-child(1) {
	transform: translateY(7.5px) rotate(45deg);
}
.hamburger.is-active span:nth-child(3) {
	transform: translateY(-7.5px) rotate(-45deg);
}

/* === Responsive Navigation === */
@media (max-width: 768px) {
	.hamburger {
		display: flex;
	}
	.main-navigation {
		display: none;
		flex-direction: column;
		background: #fff;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		border-top: 1px solid #eee;
		padding: 1rem;
	}
	.main-navigation.is-open {
		display: flex;
	}
}


.has-parallax-bg {
	background-attachment: fixed;
}

.parallax-desktop-only {
	background-attachment: scroll;
}

@media (min-width: 768px) {
	.parallax-desktop-only {
		background-attachment: fixed;
	}
}



/* === Post Loop === */
.post-summary {
	margin-bottom: 2rem;
}
.entry-title {
	font-size: 1.75rem;
}
.entry-title a {
	color: #3c8aa8;
}
.entry-excerpt {
	margin-top: 0.5rem;
}

/* === Pagination === */
.pagination {
	margin-top: 2rem;
	text-align: center;
}
.pagination a,
.pagination span {
	margin: 0 0.25rem;
	padding: 0.5rem 0.75rem;
	border: 1px solid #ddd;
	display: inline-block;
	color: #414042;
}
.pagination .current {
	background: #f1792a;
	color: #fff;
	border-color: #f1792a;
}

/* === Footer === */
.site-footer {
/*	padding: 2rem 0;*/
/*	background: #f7f7f7;
	border-top: 1px solid #eee;*/
}
.footer-widget-area {
	/*text-align: center;*/
	/*font-size: 0.9rem;*/
/*	color: #888;*/
}
.footer-widget {
	/*margin-bottom: 1rem;*/
}
.footer-widget h2 {
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
}

/* === Utilities === */
.text-center {
	text-align: center;
}

/*body.admin-bar {
	margin-top: 32px;
}

@media screen and (max-width: 782px) {
	body.admin-bar {
		margin-top: 46px;
	}
}*/


.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.pt-1 { padding-top: 1rem; }
.pt-2 { padding-top: 2rem; }
.pt-3 { padding-top: 3rem; }


.has-text-color[style] {
	color: unset !important;
}
.has-text-color[style][style*="color:"] {
	color: inherit !important;
}


.has-text-color:not([style*="color"]) {
  color: inherit !important;
}

body .has-text-color {
	color: inherit !important;
}





.symphonai-accordion-wrapper {
	border-top: 1px solid #ddd;
}

.symphonai-accordion {
	border-bottom: 1px solid #ddd;
}

.accordion-title {
	all: unset;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 1.2em 0;
	font-size: var(--accordion-title-font-size, 18px);
	color: var(--accordion-title-color, #000);
}

.accordion-title .accordion-label {
	flex-grow: 1;
	text-align: left;
}

.accordion-title .accordion-icon {
	font-size: 24px;
	margin-left: 1em;
	line-height: 1;
	transition: transform 0.3s ease;
}

.accordion-content {
	overflow: hidden;
	height: 0;
	color: #444;
	font-size: 16px;
	line-height: 1.6;
	padding-bottom: 0;
}


@media (max-width: 782px) {
	.wp-block-columns.has-reverse-mobile {
		flex-direction: column-reverse !important;
	}
}
