/* ===== БАЗА СТРАНИЦЫ ===== */
/* Body styling is now handled in base.css */

/* ======== КАРУСЕЛЬ ======== */
.fixed-carousel {
	height: 450px;
	/* Taller hero */
	overflow: hidden;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.5);
}

.fixed-carousel .carousel-inner {
	height: 100%;
}

.fixed-carousel .carousel-item,
.fixed-carousel .carousel-item img {
	height: 100%;
}

.fixed-carousel .carousel-item img {
	width: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 8s ease;
	/* Subtle zoom effect */
}

.fixed-carousel .carousel-item.active img {
	transform: scale(1.05);
}

/* ===== HERO BLOCK ===== */
.hero-card {
	border: 1px solid rgba(148, 163, 184, 0.2);
	background: var(--bg-surface);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	padding: 2rem;
	transition: var(--transition-base);
}

.hero-card:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-2px);
}

.hero-title {
	font-size: 3rem;
	font-weight: 800;
	color: var(--color-primary);
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 0.5rem;
	letter-spacing: -0.02em;
}

.hero-subtitle {
	font-size: 1.25rem;
	color: #334155;
	font-weight: 600;
}

.hero-btn {
	border-radius: var(--radius-pill);
	padding: 12px 32px;
	font-weight: 600;
	box-shadow: var(--shadow-md);
	transition: var(--transition-base);
}

.hero-btn:hover {
	box-shadow: var(--shadow-glow);
	transform: translateY(-1px);
}

.hero-officer {
	max-height: 380px;
	filter: drop-shadow(0 20px 40px rgba(15, 23, 42, 0.3));
	transition: var(--transition-base);
}

.hero-officer:hover {
	transform: scale(1.02);
}