/**
 * Industries Served Section Styles
 * Section with background image, overlay, and industry buttons
 *
 * @package Eryvium
 * @since Eryvium 1.0.0
 */

/* ============================================
   INDUSTRIES SERVED SECTION
   ============================================ */

.industries-served-section {
	position: relative;
	padding: clamp(80px, 12vw, 160px) 0;
	overflow: hidden;
	min-height: 600px;
	display: flex;
	align-items: center;
}

/* Background */
.industries-served-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	pointer-events: none;
}

.industries-served-bg-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: translate3d(0, 0, 0) scale(1.16);
	will-change: transform;
	backface-visibility: hidden;
}

/* Container */
.industries-served-container {
	position: relative;
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 var(--container-padding);
	z-index: 1;
}

/* ============================================
   HEADER
   ============================================ */

.industries-served-header {
	margin-bottom: 60px;
	text-align: center;
}

.industries-served-header-left {
	max-width: 800px;
	margin: 0 auto;
}

.industries-served-title {
	font-family: var(--font-heading);
	font-size: var(--font-size-h2);
	font-weight: var(--font-weight-h2);
	line-height: var(--line-height-h2);
	color: var(--color-pure-white);
	margin: 0 0 24px 0;
}

.industries-served-description {
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: var(--color-pure-white);
	margin: 0;
}

/* ============================================
   BUTTONS
   ============================================ */

.industries-served-buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
	width: 100%;
}

.industries-served-button {
	padding: 12px 24px;
	background-color: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50px;
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--color-pure-white);
	cursor: pointer;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.industries-served-button:hover {
	background-color: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-2px);
}

.industries-served-button:active {
	transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
	.industries-served-buttons {
		gap: 12px;
	}
	
	.industries-served-button {
		padding: 10px 20px;
		font-size: 14px;
	}
}

@media (max-width: 768px) {
	.industries-served-section {
		padding: clamp(60px, 10vw, 120px) 0;
		min-height: auto;
	}
	
	.industries-served-header {
		margin-bottom: 40px;
	}
	
	.industries-served-buttons {
		flex-direction: column;
		align-items: stretch;
	}
	
	.industries-served-button {
		width: 100%;
		text-align: center;
	}
}

