/* =============================================
   SECTIONS — Shared Section Styles (all pages)
   Abdullah Limozen | Top Class Limousine
   ============================================= */

section {
	padding: 90px 0 70px;
	position: relative;
	z-index: 10;
	scroll-margin-top: var(--header-height);
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 20px;
}

.section-badge {
	display: inline-block;
	padding: 12px 30px;
	background: rgba(212, 175, 55, 0.08);
	border: 1px solid rgba(212, 175, 55, 0.45);
	border-radius: 50px;
	font-size: 0.8rem;
	color: var(--gold);
	margin-bottom: 35px;
	text-transform: uppercase;
	letter-spacing: 4px;
	font-weight: 600;
	transition: all 0.35s ease;
	backdrop-filter: blur(10px);
	position: relative;
	overflow: hidden;
}

.section-badge::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 60%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.25), transparent);
	animation: badgeShimmer 3s ease-in-out infinite;
}

@keyframes badgeShimmer {
	0% {
		left: -60%;
	}
	100% {
		left: 130%;
	}
}

.section-badge:hover {
	background: rgba(212, 175, 55, 0.15);
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.section-badge:focus {
	outline: none;
}

.section-badge:focus-visible {
	outline: 2px solid rgba(212, 175, 55, 0.75);
	outline-offset: 3px;
}

h2 {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	font-weight: 700;
	margin-bottom: 35px;
	color: var(--gold-light);
	line-height: 1.2;
}

/* Premium Typography — section h2 override */
.section-header h2 {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 600;
	color: var(--gold);
	margin-bottom: 20px;
	letter-spacing: 1px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	line-height: 1.25;
}

.section-desc {
	color: var(--text-muted);
	max-width: 800px;
	margin: 0 auto;
	font-size: 1.2rem;
	font-weight: 300;
	line-height: 1.8;
	opacity: 0.9;
}
