/* ============================================================
   AKADEMİ HUKUK — Shared Design System
   Ortak stiller. Her şablon bu dosyayı import eder.
   ============================================================ */

:root {
	--gold: #C5A059;
	--gold-soft: #D4B373;
	--gold-deep: #A08048;
	--ink: #0A0E17;
	--ink-2: #141923;
	--ink-3: #1F2631;
	--cream: #F7F3EC;
	--cream-2: #EFEAE1;
	--muted: #8A8578;
	--line: rgba(197, 160, 89, 0.18);
	--line-ink: rgba(10, 14, 23, 0.08);
}

* { -webkit-font-smoothing: antialiased; }

html { scroll-behavior: smooth; }

body {
	font-family: 'Manrope', sans-serif;
	color: var(--ink);
	background: var(--cream);
	font-weight: 400;
	line-height: 1.65;
	overflow-x: hidden;
}

/* ───── TYPOGRAPHY ───── */
.display-serif {
	font-family: 'Fraunces', serif;
	font-variation-settings: 'opsz' 144, 'SOFT' 50;
	font-weight: 400;
	letter-spacing: -0.02em;
	line-height: 1.05;
}

.display-serif em {
	font-style: italic;
	font-weight: 300;
	color: var(--gold);
}

.eyebrow {
	font-family: 'Manrope', sans-serif;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--gold-deep);
	display: inline-flex;
	align-items: center;
	gap: 14px;
}

.eyebrow::before {
	content: "";
	width: 32px;
	height: 1px;
	background: var(--gold);
}

.eyebrow.light { color: var(--gold-soft); }

.eyebrow.center {
	display: flex;
	justify-content: center;
}

.eyebrow.center::before,
.eyebrow.center::after {
	content: "";
	width: 32px;
	height: 1px;
	background: var(--gold);
}

.accent { color: var(--gold); }

.section-title {
	font-size: clamp(2.2rem, 4.2vw, 3.6rem);
	margin: 16px 0 24px;
}

.section-intro {
	font-size: 1.05rem;
	color: var(--muted);
	max-width: 620px;
	line-height: 1.75;
}

section { padding: 110px 0; }

::selection {
	background: var(--gold);
	color: var(--ink);
}

/* ───── TOP BAR ───── */
.topbar {
	background: var(--ink);
	color: var(--cream-2);
	font-size: 0.82rem;
	padding: 10px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar a {
	color: var(--cream-2);
	text-decoration: none;
	transition: color .2s;
}

.topbar a:hover { color: var(--gold); }

.topbar .separator {
	color: rgba(255, 255, 255, 0.2);
	margin: 0 14px;
}

/* ───── NAVBAR ───── */
.navbar {
	background: rgba(247, 243, 236, 0.92) !important;
	backdrop-filter: saturate(180%) blur(14px);
	-webkit-backdrop-filter: saturate(180%) blur(14px);
	padding: 18px 0;
	transition: padding .3s ease, background .3s ease;
	border-bottom: 1px solid var(--line);
}

.navbar.scrolled { padding: 10px 0; }

.navbar-brand {
	font-family: 'Fraunces', serif;
	font-weight: 500;
	font-size: 1.55rem;
	letter-spacing: -0.01em;
	color: var(--ink);
	display: flex;
	align-items: center;
	gap: 12px;
}

.brand-mark {
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	border: 1px solid var(--gold);
	color: var(--gold);
	font-family: 'Fraunces', serif;
	font-style: italic;
	font-size: 1.3rem;
	font-weight: 500;
	transition: transform .4s ease;
}

.navbar-brand:hover .brand-mark { transform: rotate(-8deg); }

.navbar-brand small {
	display: block;
	font-family: 'Manrope', sans-serif;
	font-size: 0.62rem;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--muted);
	margin-top: 2px;
	font-weight: 500;
}

.navbar-nav .nav-link {
	color: var(--ink);
	font-size: 0.92rem;
	font-weight: 500;
	padding: 8px 18px !important;
	position: relative;
}

.navbar-nav .nav-link::after {
	content: "";
	position: absolute;
	left: 18px;
	bottom: 4px;
	width: 0;
	height: 1px;
	background: var(--gold);
	transition: width .3s ease;
}

.navbar-nav .nav-link.active { color: var(--ink); }
.navbar-nav .nav-link.active::after { width: calc(100% - 36px); }
.navbar-nav .nav-link:hover { color: var(--ink); }
.navbar-nav .nav-link:hover::after { width: calc(100% - 36px); }

/* ───── BUTTONS ───── */
.btn-gold {
	background: var(--ink);
	color: var(--cream);
	border: 1px solid var(--ink);
	border-radius: 0;
	padding: 14px 30px;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	transition: all .35s ease;
	position: relative;
	overflow: hidden;
}

.btn-gold::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--gold);
	transform: translateY(100%);
	transition: transform .35s ease;
	z-index: 0;
}

.btn-gold span {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.btn-gold:hover { color: var(--ink); border-color: var(--gold); }
.btn-gold:hover::before { transform: translateY(0); }

.btn-outline-gold {
	background: transparent;
	color: var(--cream);
	border: 1px solid var(--gold);
	border-radius: 0;
	padding: 14px 30px;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	transition: all .3s ease;
}

.btn-outline-gold:hover {
	background: var(--gold);
	color: var(--ink);
}

.btn-outline-dark {
	background: transparent;
	color: var(--ink);
	border: 1px solid var(--ink);
	border-radius: 0;
	padding: 14px 30px;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	transition: all .3s ease;
}

.btn-outline-dark:hover {
	background: var(--ink);
	color: var(--cream);
}

/* ───── PAGE HERO (inner page variant) ───── */
.page-hero {
	background: var(--ink);
	color: var(--cream);
	padding: 130px 0 90px;
	position: relative;
	overflow: hidden;
}

.page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 75% 30%, rgba(197, 160, 89, 0.12) 0%, transparent 45%),
		radial-gradient(circle at 10% 80%, rgba(197, 160, 89, 0.06) 0%, transparent 50%);
	pointer-events: none;
}

.page-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(197, 160, 89, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(197, 160, 89, 0.04) 1px, transparent 1px);
	background-size: 80px 80px;
	pointer-events: none;
}

.page-hero .container { position: relative; z-index: 2; }

.page-hero h1 {
	font-size: clamp(2.4rem, 5vw, 4.4rem);
	color: var(--cream);
	margin-bottom: 20px;
}

.page-hero p.lead-text {
	font-size: 1.1rem;
	color: rgba(247, 243, 236, 0.72);
	max-width: 640px;
	margin: 0;
}

/* Breadcrumb */
.breadcrumb-custom {
	display: flex;
	gap: 10px;
	align-items: center;
	font-size: 0.78rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 30px;
}

.breadcrumb-custom a {
	color: var(--gold-soft);
	text-decoration: none;
	transition: color .2s;
}

.breadcrumb-custom a:hover { color: var(--gold); }

.breadcrumb-custom .divider { color: var(--line); }

.breadcrumb-custom .current { color: var(--cream); }

/* ───── FOOTER ───── */
.footer {
	background: var(--ink-2);
	color: rgba(247, 243, 236, 0.7);
	padding: 80px 0 0;
	border-top: 1px solid var(--line);
}

.footer h5 {
	font-family: 'Fraunces', serif;
	font-weight: 500;
	color: var(--cream);
	font-size: 1.1rem;
	margin-bottom: 22px;
	letter-spacing: 0.02em;
}

.footer a {
	color: rgba(247, 243, 236, 0.65);
	text-decoration: none;
	transition: color .25s, padding .25s;
	display: inline-block;
}

.footer a:hover {
	color: var(--gold);
	padding-left: 4px;
}

.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: 10px; font-size: 0.92rem; }

.footer-contact li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}

.footer-contact li i {
	color: var(--gold);
	margin-top: 4px;
	font-size: 0.85rem;
}

.footer-brand {
	font-family: 'Fraunces', serif;
	font-size: 1.6rem;
	color: var(--cream);
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.footer-brand .brand-mark {
	border-color: var(--gold);
	color: var(--gold);
}

.socials {
	display: flex;
	gap: 10px;
	margin-top: 24px;
}

.socials a {
	width: 40px;
	height: 40px;
	display: grid;
	place-items: center;
	border: 1px solid var(--line);
	color: var(--gold-soft);
	transition: all .3s ease;
}

.socials a:hover {
	background: var(--gold);
	color: var(--ink);
	border-color: var(--gold);
	padding: 0;
}

.footer-bottom {
	margin-top: 60px;
	padding: 24px 0;
	border-top: 1px solid var(--line);
	font-size: 0.82rem;
	color: var(--muted);
}

.footer-bottom a:hover { padding: 0; }

/* ───── FORM ELEMENTS ───── */
.form-group-custom {
	margin-bottom: 24px;
}

.form-label-custom {
	display: block;
	font-size: 0.75rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 10px;
	font-weight: 600;
}

.form-control-custom,
.form-select-custom {
	width: 100%;
	background: transparent;
	border: none;
	border-bottom: 1px solid var(--line-ink);
	border-radius: 0;
	padding: 14px 0;
	font-family: 'Manrope', sans-serif;
	font-size: 1rem;
	color: var(--ink);
	transition: border-color .3s;
}

.form-control-custom:focus,
.form-select-custom:focus {
	outline: none;
	border-bottom-color: var(--gold);
}

textarea.form-control-custom {
	resize: vertical;
	min-height: 120px;
}

.form-select-custom {
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C5A059' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0 center;
	padding-right: 20px;
}

/* ───── RESPONSIVE ───── */
@media (max-width: 991px) {
	section { padding: 80px 0; }
	.page-hero { padding: 110px 0 70px; }
}
