/* Eda Hac Umre Premium - ana tasarım stilleri */

:root {
	--green: #0f4d3f;
	--green-dark: #0a352c;
	--green-light: #17715c;
	--gold: #c8a34a;
	--gold-light: #e5cd8f;
	--ink: #1b2320;
	--muted: #5c6b65;
	--line: #e3e8e5;
	--bg: #ffffff;
	--bg-soft: #f6f8f6;
	--radius: 18px;
	--shadow: 0 18px 40px -24px rgba(15, 77, 63, 0.45);
	--container: 1200px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: "Manrope", -apple-system, "Segoe UI", Roboto, sans-serif;
	color: var(--ink);
	background: var(--bg);
	line-height: 1.7;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--green);
	text-decoration: none;
	transition: color 0.2s ease;
}

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

h1,
h2,
h3,
h4 {
	font-family: "Amiri", Georgia, serif;
	line-height: 1.25;
	margin: 0 0 0.6em;
	color: var(--green-dark);
	font-weight: 700;
}

p {
	margin: 0 0 1em;
}

.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 20px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.skip-link:focus {
	position: fixed;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	clip: auto;
	z-index: 999;
	background: #fff;
	padding: 10px 16px;
	border-radius: 8px;
}

/* Butonlar */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 26px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 15px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
	background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
	color: #fff;
	box-shadow: var(--shadow);
}

.btn-primary:hover {
	color: #fff;
	transform: translateY(-2px);
}

.btn-ghost {
	border-color: var(--gold);
	color: var(--green-dark);
	background: transparent;
}

.btn-ghost:hover {
	background: var(--gold);
	color: #fff;
}

/* Üst bar */
.topbar {
	background: var(--green-dark);
	color: rgba(255, 255, 255, 0.85);
	font-size: 14px;
}

.topbar a {
	color: rgba(255, 255, 255, 0.85);
}

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

.topbar-inner {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 24px;
	align-items: center;
	justify-content: space-between;
	padding-top: 8px;
	padding-bottom: 8px;
}

.topbar-note {
	margin: 0;
}

.topbar-contact {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Başlık */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--line);
}

.header-inner {
	display: flex;
	align-items: center;
	gap: 20px;
	padding-top: 14px;
	padding-bottom: 14px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 12px;
}

.brand-mark {
	font-family: "Amiri", serif;
	font-size: 30px;
	color: var(--gold);
	line-height: 1;
}

.brand-text strong {
	display: block;
	font-family: "Amiri", serif;
	font-size: 20px;
	color: var(--green-dark);
}

.brand-text em {
	display: block;
	font-style: normal;
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted);
}

.custom-logo {
	max-height: 64px;
	width: auto;
}

.main-navigation {
	margin-left: auto;
}

.primary-menu,
.primary-menu ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 6px;
}

.primary-menu li {
	position: relative;
}

.primary-menu a {
	display: block;
	padding: 10px 14px;
	font-weight: 600;
	color: var(--ink);
	border-radius: 999px;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a {
	background: var(--bg-soft);
	color: var(--green);
}

.primary-menu ul {
	position: absolute;
	top: 100%;
	left: 0;
	display: none;
	flex-direction: column;
	min-width: 220px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 8px;
	box-shadow: var(--shadow);
	gap: 2px;
}

.primary-menu li:hover > ul,
.primary-menu li:focus-within > ul {
	display: flex;
}

.menu-toggle {
	display: none;
	position: relative;
	margin-left: auto;
	width: 46px;
	height: 42px;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: #fff;
	cursor: pointer;
}

.menu-toggle-bar,
.menu-toggle-bar::before,
.menu-toggle-bar::after {
	position: absolute;
	left: 50%;
	width: 20px;
	height: 2px;
	background: var(--green-dark);
	transform: translateX(-50%);
	content: "";
}

.menu-toggle-bar {
	top: 50%;
	transform: translate(-50%, -50%);
}

.menu-toggle-bar::before {
	top: -6px;
}

.menu-toggle-bar::after {
	top: 6px;
}

/* Hero */
.hero {
	position: relative;
	background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 55%, var(--green-light) 100%);
	color: #fff;
	overflow: hidden;
}

.hero-pattern {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle at 12% 20%, rgba(200, 163, 74, 0.28) 0, transparent 42%),
		radial-gradient(circle at 88% 80%, rgba(200, 163, 74, 0.18) 0, transparent 45%);
	pointer-events: none;
}

.hero-inner {
	position: relative;
	padding-top: 70px;
	padding-bottom: 70px;
}

.eyebrow {
	margin: 0 0 10px;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-size: 12px;
	font-weight: 700;
	color: var(--gold-light);
}

.hero-static {
	max-width: 720px;
}

.hero-title {
	font-size: clamp(2.2rem, 5vw, 3.6rem);
	color: #fff;
}

.hero-text {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.86);
	max-width: 620px;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 26px;
}

.hero-actions .btn-ghost {
	color: #fff;
	border-color: var(--gold-light);
}

/* Slider */
.slider {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	min-height: 420px;
}

.slide {
	display: none;
	position: relative;
	min-height: 420px;
}

.slide.is-active {
	display: block;
	animation: eda-fade 0.6s ease;
}

@keyframes eda-fade {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

.slide-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.55);
}

.slide-content {
	position: relative;
	max-width: 680px;
	padding: 60px 40px;
}

.slide-title {
	color: #fff;
	font-size: clamp(1.8rem, 4vw, 3rem);
}

.slide-text {
	color: rgba(255, 255, 255, 0.88);
}

.slider-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.5);
	background: rgba(0, 0, 0, 0.25);
	color: #fff;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
}

.slider-nav:hover {
	background: var(--gold);
	border-color: var(--gold);
}

.slider-nav.prev {
	left: 16px;
}

.slider-nav.next {
	right: 16px;
}

/* Özellikler */
.features {
	margin-top: -40px;
	position: relative;
	z-index: 5;
	padding-bottom: 20px;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.feature {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 26px 22px;
	box-shadow: var(--shadow);
}

.feature-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 14px;
	background: var(--bg-soft);
	color: var(--gold);
	font-size: 22px;
	margin-bottom: 12px;
}

.feature h3 {
	font-size: 1.1rem;
	margin-bottom: 6px;
}

.feature p {
	color: var(--muted);
	font-size: 0.95rem;
	margin: 0;
}

/* Bölümler */
.section,
.about {
	padding: 70px 0;
}

.section-alt {
	background: var(--bg-soft);
}

.section-head {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 40px;
}

.section-head .eyebrow {
	color: var(--gold);
}

.section-title {
	font-size: clamp(1.7rem, 3.4vw, 2.5rem);
}

.section-foot {
	text-align: center;
	margin-top: 36px;
}

.about-inner {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 46px;
	align-items: center;
}

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

.lede {
	color: var(--muted);
}

.about-stats {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.about-stats li {
	background: var(--bg-soft);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 22px;
	text-align: center;
}

.about-stats strong {
	display: block;
	font-family: "Amiri", serif;
	font-size: 2rem;
	color: var(--green);
}

.about-stats span {
	font-size: 0.9rem;
	color: var(--muted);
}

/* Kartlar */
.grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.layout .grid {
	grid-template-columns: repeat(3, 1fr);
}

.card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.card-media {
	display: block;
	aspect-ratio: 4 / 3;
	background: var(--bg-soft);
	overflow: hidden;
}

.card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.card:hover .card-media img {
	transform: scale(1.05);
}

.card-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	font-size: 46px;
	color: var(--gold);
}

.card-body {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}

.card-title {
	font-size: 1.15rem;
	margin: 0;
}

.card-text {
	color: var(--muted);
	font-size: 0.95rem;
	margin: 0;
}

.card-link {
	margin-top: auto;
	font-weight: 700;
	font-size: 0.9rem;
	color: var(--gold);
}

/* Sayfa başlığı */
.page-hero {
	background: linear-gradient(135deg, var(--green-dark), var(--green));
	color: #fff;
	padding: 54px 0;
}

.page-hero-title {
	color: #fff;
	margin: 0 0 8px;
	font-size: clamp(1.7rem, 3.6vw, 2.6rem);
}

.breadcrumbs {
	display: flex;
	gap: 10px;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs a {
	color: var(--gold-light);
}

/* İçerik düzeni */
.layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 40px;
	padding-top: 56px;
	padding-bottom: 70px;
}

body.no-sidebar .layout {
	grid-template-columns: minmax(0, 1fr);
}

.entry-content h2,
.entry-content h3 {
	margin-top: 1.4em;
}

.entry-content ul,
.entry-content ol {
	padding-left: 20px;
}

.single-media {
	margin: 0 0 26px;
	border-radius: var(--radius);
	overflow: hidden;
}

.single-cta {
	margin-top: 36px;
	padding: 26px;
	border-radius: var(--radius);
	background: var(--bg-soft);
	border: 1px solid var(--line);
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: center;
	justify-content: space-between;
}

.single-cta p {
	margin: 0;
	font-weight: 600;
}

/* Kenar çubuğu */
.sidebar .widget {
	background: var(--bg-soft);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 22px;
	margin-bottom: 22px;
}

.widget-title {
	font-size: 1.1rem;
	margin-bottom: 12px;
}

.widget ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.widget li + li {
	margin-top: 8px;
}

/* Arama formu */
.search-form {
	display: flex;
	gap: 8px;
}

.search-form input[type="search"],
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="search"],
textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--line);
	border-radius: 12px;
	font: inherit;
	background: #fff;
	color: var(--ink);
}

textarea {
	min-height: 140px;
	resize: vertical;
}

input:focus,
textarea:focus {
	outline: 2px solid var(--gold);
	outline-offset: 1px;
}

.search-form .btn,
.search-submit {
	white-space: nowrap;
	background: var(--green);
	color: #fff;
	border: 0;
	border-radius: 12px;
	padding: 12px 20px;
	font-weight: 700;
	cursor: pointer;
}

/* CTA */
.cta {
	background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
	color: #fff;
	padding: 60px 0;
}

.cta .section-title {
	color: #fff;
}

.cta-inner {
	display: flex;
	flex-wrap: wrap;
	gap: 26px;
	align-items: center;
	justify-content: space-between;
}

.cta-inner p {
	color: rgba(255, 255, 255, 0.85);
	max-width: 620px;
	margin: 0;
}

.cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.cta-actions .btn-primary {
	background: var(--gold);
}

.cta-actions .btn-ghost {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.6);
}

/* İletişim sayfası */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	padding: 56px 0;
}

.contact-card {
	background: var(--bg-soft);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 26px;
}

.contact-map iframe,
.contact-map {
	width: 100%;
	min-height: 380px;
	border: 0;
	border-radius: var(--radius);
}

/* Alt bilgi */
.site-footer {
	background: var(--green-dark);
	color: rgba(255, 255, 255, 0.8);
	margin-top: 20px;
}

.site-footer a {
	color: rgba(255, 255, 255, 0.85);
}

.site-footer a:hover {
	color: var(--gold-light);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.3fr 1.2fr 1fr 1fr;
	gap: 32px;
	padding-top: 60px;
	padding-bottom: 40px;
}

.footer-title {
	color: #fff;
	font-size: 1.1rem;
	margin-bottom: 14px;
}

.footer-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
	font-size: 0.95rem;
}

.footer-social {
	display: flex;
	gap: 14px;
	margin-top: 12px;
	font-weight: 700;
}

.footer-widgets {
	padding-bottom: 30px;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 0.9rem;
	padding: 16px 0;
}

.footer-bottom p {
	margin: 0;
}

/* WhatsApp */
.whatsapp-float {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 90;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #25d366;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	box-shadow: 0 12px 30px -10px rgba(37, 211, 102, 0.8);
}

.whatsapp-float:hover {
	color: #fff;
	transform: translateY(-2px);
}

/* Sayfalama */
.pagination {
	margin-top: 40px;
	display: flex;
	justify-content: center;
}

.pagination .nav-links {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border-radius: 12px;
	border: 1px solid var(--line);
	font-weight: 600;
}

.pagination .page-numbers.current {
	background: var(--green);
	color: #fff;
	border-color: var(--green);
}

/* Yorumlar */
.comments-area {
	margin-top: 50px;
	padding-top: 30px;
	border-top: 1px solid var(--line);
}

.comment-list {
	list-style: none;
	margin: 0 0 30px;
	padding: 0;
}

.comment-list li {
	background: var(--bg-soft);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 18px;
	margin-bottom: 14px;
}

.comment-form p {
	margin-bottom: 14px;
}

.comment-form .submit {
	background: var(--green);
	color: #fff;
	border: 0;
	border-radius: 999px;
	padding: 13px 26px;
	font-weight: 700;
	cursor: pointer;
}

/* Duyarlılık */
@media (max-width: 1024px) {
	.feature-grid,
	.grid,
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.layout,
	.about-inner,
	.contact-grid {
		grid-template-columns: 1fr;
	}
	.layout .grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 782px) {
	.menu-toggle {
		display: block;
	}
	.header-cta {
		display: none;
	}
	.main-navigation {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #fff;
		border-bottom: 1px solid var(--line);
		display: none;
		padding: 12px 20px 20px;
	}
	.main-navigation.is-open {
		display: block;
	}
	.primary-menu {
		flex-direction: column;
		gap: 2px;
	}
	.primary-menu ul {
		position: static;
		display: flex;
		box-shadow: none;
		border: 0;
		padding-left: 14px;
	}
	.topbar-inner {
		justify-content: center;
		text-align: center;
	}
	.slide-content {
		padding: 40px 22px;
	}
}

@media (max-width: 620px) {
	.feature-grid,
	.grid,
	.layout .grid,
	.footer-grid,
	.about-stats {
		grid-template-columns: 1fr;
	}
	.hero-inner {
		padding-top: 46px;
		padding-bottom: 46px;
	}
	.section,
	.about {
		padding: 46px 0;
	}
}
