/* =========================================================
   Kürk Eğitim Vakfı - Bileşene özel stiller
   Hero slider, filtre butonları, galeri lightbox, formlar,
   etkinlik rozetleri.
   ========================================================= */

/* ---------- Anasayfa Hero / Slider ---------- */
.kev-hero {
	position: relative;
	min-height: 620px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: #00212f;
}

.kev-hero-bg-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.kev-hero-video {
	position: absolute;
	inset: 0;
	overflow: hidden;
	z-index: 1;
	pointer-events: none;
}

.kev-hero-video iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 177.78vh;
	height: 56.25vw;
	min-width: 100%;
	min-height: 100%;
	transform: translate(-50%, -50%);
	border: 0;
}

.kev-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(160deg, rgba(0, 26, 38, 0.82), rgba(0, 65, 95, 0.78));
	z-index: 2;
}

.kev-hero-content {
	position: relative;
	z-index: 3;
	max-width: 960px;
	padding: 100px 32px;
	text-align: center;
	animation: fadeUp 0.9s ease both;
}

.kev-hero-content h1 {
	font-family: var(--kev-font-heading);
	font-weight: 600;
	font-size: 50px;
	line-height: 1.18;
	color: var(--kev-white);
	margin: 0;
}

.kev-hero-slides { position: relative; }

.kev-hero-slide {
	display: none;
}

.kev-hero-slide.is-active {
	display: block;
	animation: fadeUp 0.6s ease both;
}

.kev-hero-buttons {
	display: flex;
	justify-content: center;
	gap: 14px;
	margin-top: 36px;
	flex-wrap: wrap;
}

.kev-hero-controls {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 18px;
	margin-top: 52px;
}

.kev-hero-arrow {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.4);
	background: transparent;
	color: var(--kev-white);
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.kev-hero-arrow:hover { background: rgba(255, 255, 255, 0.15); }

.kev-hero-dots { display: flex; gap: 9px; align-items: center; }

.kev-hero-dot {
	width: 9px;
	height: 9px;
	border-radius: 5px;
	border: none;
	cursor: pointer;
	padding: 0;
	background: rgba(255, 255, 255, 0.45);
	transition: all 0.35s ease;
}

.kev-hero-dot.is-active {
	width: 26px;
	background: var(--kev-gold);
}

@media (max-width: 640px) {
	.kev-hero-content h1 { font-size: 32px; }
	.kev-hero { min-height: 520px; }
}

/* ---------- Faaliyetler filtre butonları ---------- */
.kev-filters {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.kev-filter-pill {
	padding: 9px 20px;
	border-radius: 24px;
	font-size: 14px;
	font-weight: 600;
	font-family: var(--kev-font-body);
	cursor: pointer;
	transition: all 0.3s ease;
	border: 1.5px solid var(--kev-border-light);
	background: var(--kev-white);
	color: var(--kev-muted);
	text-decoration: none;
	display: inline-block;
}

.kev-filter-pill:hover {
	border-color: var(--kev-primary);
	color: var(--kev-primary);
}

.kev-filter-pill.is-active {
	border-color: var(--kev-primary);
	background: var(--kev-primary);
	color: var(--kev-white);
}

/* ---------- Etkinlik kartları ---------- */
.kev-event-card {
	display: flex;
	gap: 18px;
	align-items: center;
	background: var(--kev-white);
	border: 1px solid var(--kev-border-light);
	border-radius: 12px;
	padding: 16px 18px;
	transition: all 0.3s ease;
	flex-wrap: wrap;
}

.kev-event-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(0, 65, 95, 0.08);
}

.kev-event-card-lg {
	padding: 26px 30px;
	gap: 26px;
	border-radius: 18px;
}

.kev-event-date-box {
	text-align: center;
	min-width: 56px;
	background: var(--kev-tint-pale);
	border-radius: 10px;
	padding: 9px 10px;
	flex-shrink: 0;
}

.kev-event-card-lg .kev-event-date-box {
	min-width: 84px;
	border-radius: 14px;
	padding: 16px 14px;
}

.kev-event-day {
	font-family: var(--kev-font-heading);
	font-weight: 900;
	font-size: 20px;
	color: var(--kev-primary);
	line-height: 1;
}

.kev-event-card-lg .kev-event-day { font-size: 32px; }

.kev-event-month {
	font-size: 11.5px;
	font-weight: 600;
	color: var(--kev-muted);
	text-transform: uppercase;
	margin-top: 3px;
	letter-spacing: 1px;
}

.kev-event-body { flex: 1; min-width: 220px; }

.kev-event-tag {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--kev-gold-dark);
}

.kev-event-title {
	font-family: var(--kev-font-heading);
	font-weight: 700;
	font-size: 15.5px;
	color: var(--kev-heading-dark);
	margin: 6px 0;
	line-height: 1.35;
}

.kev-event-card-lg .kev-event-title { font-size: 1.1rem; }

.kev-event-title a { color: inherit; text-decoration: none; }
.kev-event-title a:hover { color: var(--kev-primary); }

.kev-event-desc {
	font-size: 14.5px;
	line-height: 1.65;
	color: var(--kev-muted);
	margin: 0 0 6px;
}

.kev-event-meta {
	font-size: 13px;
	color: var(--kev-muted);
	margin-top: 3px;
}

.kev-event-card-lg .kev-event-meta {
	font-size: 13.5px;
	font-weight: 600;
	color: var(--kev-primary);
	margin-top: 10px;
}

.kev-event-status-badge {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-left: 8px;
}

.kev-event-status-badge.kev-status-tamamlandi {
	background: var(--kev-border-light);
	color: var(--kev-body-text);
}

.kev-event-status-badge.kev-status-ertelendi {
	background: var(--kev-gold-dark);
	color: var(--kev-white);
}

.kev-event-card.is-past {
	opacity: 0.72;
}

.kev-event-card.is-past .kev-btn {
	background: var(--kev-disabled);
	color: var(--kev-body-text);
	pointer-events: none;
}

/* ---------- Galeri / Lightbox (Müze) ---------- */
.kev-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 18px;
	margin-top: 40px;
}

.kev-gallery-item {
	border: none;
	padding: 0;
	background: none;
	cursor: zoom-in;
	border-radius: 14px;
	overflow: hidden;
	display: block;
}

.kev-gallery-item img {
	width: 100%;
	height: 230px;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.kev-gallery-item:hover img { transform: scale(1.05); }

.kev-lightbox {
	position: fixed;
	inset: 0;
	z-index: 300;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.kev-lightbox.is-open { display: flex; }

.kev-lightbox-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 15, 22, 0.92);
}

.kev-lightbox-close,
.kev-lightbox-prev,
.kev-lightbox-next {
	position: absolute;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.3);
	background: transparent;
	color: var(--kev-white);
	cursor: pointer;
	z-index: 2;
	transition: all 0.3s ease;
}

.kev-lightbox-close:hover,
.kev-lightbox-prev:hover,
.kev-lightbox-next:hover { background: rgba(255, 255, 255, 0.15); }

.kev-lightbox-close { top: 22px; right: 26px; width: 44px; height: 44px; font-size: 17px; }
.kev-lightbox-prev { left: 22px; width: 48px; height: 48px; font-size: 19px; }
.kev-lightbox-next { right: 22px; width: 48px; height: 48px; font-size: 19px; }

.kev-lightbox-figure {
	position: relative;
	margin: 0;
	text-align: center;
	max-width: 1000px;
	width: 100%;
	animation: fadeUp 0.3s ease both;
}

.kev-lightbox-figure img {
	max-width: 100%;
	max-height: 78vh;
	border-radius: 12px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
	margin: 0 auto;
}

.kev-lightbox-caption {
	color: var(--kev-tint-light);
	font-size: 14.5px;
	margin-top: 16px;
	font-family: var(--kev-font-body);
}

/* ---------- Sessiz Akademi liste ---------- */
.kev-check-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 14px;
}

.kev-check-list li {
	display: flex;
	gap: 14px;
	align-items: center;
	background: var(--kev-surface);
	border: 1px solid var(--kev-border-light);
	border-radius: 12px;
	padding: 14px 18px;
	transition: all 0.3s ease;
	font-size: 15.5px;
	font-weight: 500;
	color: var(--kev-body-text);
}

.kev-check-list li:hover {
	transform: translateX(4px);
	border-color: var(--kev-tint-light);
}

.kev-check-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--kev-gold);
	flex-shrink: 0;
}

/* ---------- Kurul kartları ---------- */
.kev-avatar {
	width: 76px;
	height: 76px;
	border-radius: 50%;
	background: linear-gradient(150deg, var(--kev-primary), var(--kev-avatar-end));
	color: var(--kev-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--kev-font-heading);
	font-weight: 800;
	font-size: 22px;
	margin: 0 auto 18px;
}

/* ---------- Formlar (FormLayer Pro uyumlu) ---------- */
.formlayer-form {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 20px;
}

.formlayer-form .kev-field { display: grid; gap: 6px; }
.formlayer-form .kev-field-full { grid-column: 1 / -1; }

.kev-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

@media (max-width: 560px) {
	.kev-form-row { grid-template-columns: 1fr; }
}

.formlayer-form label {
	font-size: 13.5px;
	font-weight: 600;
}

.formlayer-input,
.formlayer-select,
.formlayer-textarea {
	border: 1.5px solid #dfe4e8;
	border-radius: 8px;
	padding: 13px 14px;
	font-size: 15px;
	font-family: var(--kev-font-body);
	color: var(--kev-body-text);
	outline: none;
	transition: border-color 0.3s ease;
	width: 100%;
	background: var(--kev-white);
}

.formlayer-input:focus,
.formlayer-select:focus,
.formlayer-textarea:focus {
	border-color: var(--kev-primary);
}

.formlayer-textarea { resize: vertical; }

.formlayer-submit {
	background: var(--kev-primary);
	color: var(--kev-white);
	border: none;
	font-family: var(--kev-font-body);
	font-weight: 600;
	font-size: 15.5px;
	padding: 14px 32px;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.formlayer-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 22px rgba(0, 65, 95, 0.3);
}

.formlayer-submit:disabled {
	background: var(--kev-disabled);
	color: #6b6b6b;
	cursor: not-allowed;
}

.formlayer-submit:disabled:hover { transform: none; box-shadow: none; }

.kev-form-panel {
	background: var(--kev-white);
	border: 1px solid var(--kev-border-light);
	border-radius: 18px;
	padding: 44px;
	box-shadow: 0 8px 30px rgba(0, 65, 95, 0.05);
}

.kev-form-panel.is-dark {
	background: var(--kev-cta-gradient);
	color: var(--kev-white);
	border: none;
}

.kev-form-panel.is-muted {
	background: var(--kev-surface);
	border: 1px solid var(--kev-border-light);
}

.kev-form-panel h2 {
	color: var(--kev-primary);
	font-size: 26px;
	margin: 0 0 6px;
}

.kev-form-panel.is-dark h2 { color: var(--kev-white); }

.kev-form-panel .kev-form-desc {
	font-size: 14.5px;
	color: var(--kev-muted);
	margin: 0 0 28px;
}

.kev-form-panel.is-dark .kev-form-desc { color: var(--kev-tint-light); }

.kev-notice {
	background: rgba(255, 255, 255, 0.12);
	border: 1.5px solid var(--kev-gold);
	border-radius: 10px;
	padding: 16px 20px;
	margin: 0 0 24px;
}

.kev-notice p {
	margin: 0;
	font-family: var(--kev-font-body);
	font-weight: 700;
	font-size: 15px;
	color: var(--kev-gold);
}

.formlayer-form fieldset {
	border: 1.5px solid rgba(255, 255, 255, 0.25);
	border-radius: 10px;
	padding: 16px 18px;
	margin: 0;
}

.formlayer-form legend {
	font-size: 13.5px;
	font-weight: 600;
	color: var(--kev-tint-light);
	padding: 0 8px;
}

.kev-radio-row { display: flex; gap: 26px; flex-wrap: wrap; }

.kev-radio-row label,
.kev-checkbox-row {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	cursor: pointer;
}

.kev-checkbox-row {
	grid-column: 1 / -1;
	align-items: flex-start;
	font-size: 13.5px;
	color: var(--kev-tint-light);
	line-height: 1.6;
}

.kev-checkbox-row input { margin-top: 3px; }

.kev-upload-mock {
	grid-column: 1 / -1;
	border: 2px dashed rgba(255, 255, 255, 0.35);
	border-radius: 12px;
	padding: 34px;
	text-align: center;
	transition: all 0.3s ease;
}

.kev-upload-mock strong {
	display: block;
	font-family: var(--kev-font-heading);
	font-weight: 700;
	font-size: 15.5px;
}

.kev-upload-mock span {
	display: block;
	font-size: 13px;
	color: #9dbecd;
	margin-top: 6px;
}

/* ---------- WhatsApp / CTA bantları ---------- */
.kev-cta-band {
	background: var(--kev-cta-gradient);
	color: var(--kev-white);
}

.kev-cta-band-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 64px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	flex-wrap: wrap;
}

.kev-cta-band h2 { color: var(--kev-white); }

.kev-cta-eyebrow {
	font-family: var(--kev-font-body);
	font-weight: 400;
	font-size: 20px;
	color: var(--kev-gold);
	margin: 0 0 10px;
}

@media (max-width: 700px) {
	.kev-cta-band-inner { flex-direction: column; align-items: flex-start; }
}
