/* Brameijsenring Theme Stylesheet */

:root {
	--color-orange: #EB8900;
	--color-dark: #1A1A1A;
	--color-dark-bg: #252525;
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Open Sans', sans-serif;
	background-color: #252525;
	color: #E5E5E5;
	line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Outfit', sans-serif;
	letter-spacing: -0.01em;
}

a {
	color: var(--color-orange);
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover {
	opacity: 0.8;
}

/* Navigation */
nav ul {
	list-style: none;
	display: flex;
	gap: 1.5rem;
}

nav a {
	display: inline-block;
	padding: 0.5rem 0;
	color: #E5E5E5;
	font-weight: 500;
	transition: color 0.3s ease;
}

nav a:hover {
	color: var(--color-orange);
}

/* Buttons */
.btn-primary {
	background: linear-gradient(135deg, #EB8900 0%, #FFA726 100%);
	color: white;
	padding: 1rem 2rem;
	border-radius: 0.5rem;
	font-weight: 600;
	text-transform: uppercase;
	transition: all 0.3s ease;
	display: inline-block;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(235, 137, 0, 0.4);
}
/* Gradient utilities */
.text-gradient-orange {
	background: linear-gradient(135deg, #EB8900 0%, #FFA726 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.bg-gradient-orange {
	background: linear-gradient(135deg, #EB8900 0%, #FFA726 100%);
}

.bg-gradient-orange-hover:hover {
	background: linear-gradient(135deg, #F09E26 0%, #FFB74D 100%);
}

.border-gradient-orange {
	border: 2px solid transparent;
	background-image: linear-gradient(white, white), linear-gradient(135deg, #EB8900 0%, #FFA726 100%);
	background-origin: border-box;
	background-clip: padding-box, border-box;
}

.hover-gradient-fill:hover {
	background-image: linear-gradient(135deg, #EB8900 0%, #FFA726 100%);
	color: white !important;
}

.border-b-gradient {
	position: relative;
}

.border-b-gradient::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, #EB8900 0%, #FFA726 100%);
}

.icon-gradient {
	fill: url(#iconGradient);
}

/* Forms */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
	width: 100%;
	padding: 0.75rem;
	border: 1px solid #333;
	border-radius: 0.375rem;
	background-color: #3D3D3D;
	color: #E5E5E5;
	font-family: inherit;
	transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
	outline: none;
	border-color: var(--color-orange);
	box-shadow: 0 0 0 3px rgba(235, 137, 0, 0.1);
}

/* Typography */
.prose {
	color: #B0B0B0;
	line-height: 1.8;
}

.prose h2 {
	color: #E5E5E5;
	margin-top: 1.5rem;
	margin-bottom: 0.75rem;
	font-size: 1.875rem;
	font-weight: 600;
}

.prose h3 {
	color: #E5E5E5;
	margin-top: 1.25rem;
	margin-bottom: 0.5rem;
	font-size: 1.5rem;
	font-weight: 600;
}

.prose p {
	margin-bottom: 1rem;
}

.prose a {
	color: var(--color-orange);
	text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fade-in {
	animation: fadeInUp 0.6s ease-out;
}

@keyframes gradientFloat {
	0% {
		background-position: 0% 20%;
	}
	25% {
		background-position: 70% 40%;
	}
	50% {
		background-position: 30% 80%;
	}
	75% {
		background-position: 90% 30%;
	}
	100% {
		background-position: 0% 20%;
	}
}

@keyframes scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* Subtle animated gradient background */
.subtle-gradient-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(235, 137, 0, 0.12) 0%,
		rgba(255, 167, 38, 0.15) 25%,
		rgba(253, 243, 230, 0.08) 50%,
		rgba(255, 167, 38, 0.15) 75%,
		rgba(235, 137, 0, 0.12) 100%
	);
	background-size: 400% 400%;
	animation: gradientFloat 30s ease-in-out infinite;
	pointer-events: none;
	z-index: 0;
}

/* Logo carousel */
.logo-carousel {
	display: flex;
	gap: 3rem;
	animation: scroll 20s linear infinite;
}

.logo-carousel:hover {
	animation-play-state: paused;
}

.logo-track {
	display: flex;
	gap: 3rem;
}

/* Client logos */
.client-logo {
	filter: grayscale(100%);
	opacity: 1;
	transition: all 0.3s ease;
}

.client-logo:hover {
	filter: grayscale(0%);
	opacity: 1;
}

/* Portfolio */
.portfolio-item {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
	transform: scale(1.05);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Audio */
.audio-item:hover {
	box-shadow: 0 5px 7.5px -1.5px rgba(255, 255, 255, 0.1), 0 2px 3px -1px rgba(255, 255, 255, 0.05);
}

/* Media */
.hero-image {
	object-fit: cover;
	object-position: center top;
}

.hero-video {
	object-fit: cover;
	object-position: center center;
}

/* Desktop navigation */
header nav.hidden.lg\:flex > li {
	list-style: none;
	margin: 0;
	padding: 0;
	display: inline-block;
}

header nav.hidden.lg\:flex > li > a {
	display: inline-block;
}

header nav.hidden.lg\:flex > a {
	display: inline-block;
	padding: 0 0 2px 0;
}

/* Hero wave overlay */
#home::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 65px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 100' preserveAspectRatio='none'%3E%3Cpath d='M0,100 L1200,100 L1200,0 Q1000,30 600,20 Q200,10 0,30 Z' fill='%23252525'/%3E%3C/svg%3E") no-repeat bottom;
	background-size: 100% 100%;
	pointer-events: none;
	z-index: 1;
	opacity: 0;
	animation: fadeIn 1s ease-out forwards;
}

/* Section pattern background */
.section-pattern {
	position: relative;
	overflow: hidden;
}

.section-pattern::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image:
		radial-gradient(circle at 20% 50%, rgba(235, 137, 0, 0.03) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(235, 137, 0, 0.02) 0%, transparent 50%);
	pointer-events: none;
}

.section-pattern > * {
	position: relative;
	z-index: 1;
}

/* video-watermark: zie blocks.css */
/* Waves en section transitions: zie blocks.css */

/* Container */
.container {
	max-width: 1280px;
	margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.5rem;
	}

	.prose h2 {
		font-size: 1.5rem;
	}

	nav ul {
		flex-direction: column;
		gap: 0.5rem;
	}
}

/* Custom scrollbar */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
	background: #EB8900;
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: #ff9c24;
}

/* Utility classes */
.text-brand-orange {
	color: var(--color-orange);
}

/* Video en Audio archive: lichte achtergrond override */
body.post-type-archive-video,
body.post-type-archive-audio {
	background-color: #ffffff;
	color: #1a1a1a;
}

.bg-brand-orange {
	background-color: var(--color-orange);
}

.text-dark-text {
	color: #E5E5E5;
}

.text-brand-grey {
	color: #4A4A4A;
}

.bg-dark-bg {
	background-color: #252525;
}

.bg-dark-bg-secondary {
	/*background-color: #1A1A1A;*/
	background-color:#252525;
}

.bg-brand-light {
	background-color: #F5F5F5;
}

.bg-brand-dark {
	background-color: #1A1A1A;
}

.border-dark-border {
	border-color: #333333;
}

.text-dark-text-secondary {
	color: #B0B0B0;
}
