/* =============================================
   FLEET — Vehicle Cards Grid (Songs section)
   Used on: index.html, fleet.html, services.html
   Abdullah Limozen | Top Class Limousine
   ============================================= */

#songs {
	background: var(--bg-section);
}

.songs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
	gap: 30px;
	max-width: 1400px;
	margin: 0 auto;
}

.song-card {
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: 20px;
	padding: 30px;
	display: flex;
	align-items: center;
	gap: 25px;
	transition: all 0.4s ease;
	cursor: pointer;
	text-decoration: none;
	color: inherit;
	position: relative;
	overflow: hidden;
	touch-action: manipulation;
}

.song-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--gold), transparent);
	transition: all 0.6s ease;
}

.song-card:hover::before {
	left: 100%;
}

.song-card:hover {
	border-color: var(--gold);
	transform: translateX(10px) translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.song-card:focus-visible {
	outline: 2px solid rgba(212, 175, 55, 0.75);
	outline-offset: 3px;
	border-color: var(--gold);
}

.song-card:hover .song-card-duration {
	color: var(--gold);
	transform: scale(1.2);
}

.song-card-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	flex-shrink: 0;
	color: #000;
	font-weight: bold;
}

.song-card-info {
	flex: 1;
}

.song-card-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.4rem;
	color: var(--gold-light);
	margin-bottom: 8px;
	font-weight: 600;
}

.song-card-meta {
	font-size: 0.9rem;
	color: var(--text-muted);
	letter-spacing: 0.5px;
}

.song-card-duration {
	font-size: 1.2rem;
	color: var(--text-muted);
	transition: all 0.3s ease;
	flex-shrink: 0;
}
