:root {
	--bg: #0e1410; /* koyu yeşilimsi arka plan */
	--panel: rgba(255, 255, 255, 0.06);
	--panel-strong: rgba(255, 255, 255, 0.12);
	--text: #e8f5e9; /* açık yeşilimsi beyaz */
	--muted: #a5c9a1; /* yumuşak yeşil-gri */
	--brand: #4caf50; /* ana yeşil */
	--brand-2: #81c784; /* açık yeşil ton */
	--shadow: 0 10px 30px rgba(0, 0, 0, .35);
	--radius: 22px;
	--blur: 12px;
}

/* Light theme vars */
.light {
	--bg: #f5fff6; /* açık yeşilimsi beyaz */
	--panel: rgba(255, 255, 255, .9);
	--panel-strong: rgba(0, 0, 0, .08);
	--text: #1b3120; /* koyu yeşil */
	--muted: #49624d; /* doğal yeşil-gri */
	--brand: #2e7d32; /* koyu doğa yeşili */
	--brand-2: #66bb6a; /* taze yeşil */
	--shadow: 0 10px 30px rgba(0, 0, 0, .1);
}


* {
	box-sizing: border-box
}

html,
body {
	height: 100%
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: Inter, Poppins, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
	line-height: 1.6;
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none
}

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

/* ====== Navbar ====== */
.nav {
	position: fixed;
	inset-inline: 0;
	top: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 76px;
	backdrop-filter: blur(var(--blur));
}

.nav-inner {
	width: min(1200px, 92%);
	height: 56px;
	margin-top: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: var(--panel);
	border: 1px solid var(--panel-strong);
	border-radius: calc(var(--radius) - 6px);
	padding: 0 14px;
	box-shadow: var(--shadow);
}

.brand {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 800;
	letter-spacing: .5px
}

.brand .logo {
	width: 36px;
	height: 36px;
	border-radius: 12px;
	display: grid;
	place-items: center;
	background: linear-gradient(145deg, var(--brand), var(--brand-2));
	color: white;
	font-weight: 900;
	box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .25);
}

.menu {
	display: flex;
	gap: 14px;
	align-items: center
}

.menu a {
	padding: 10px 14px;
	border-radius: 14px;
	color: var(--text);
	border: 1px solid transparent;
	opacity: .9;
	transition: .25s ease;
}

.menu a:hover {
	border-color: var(--panel-strong);
	opacity: 1;
}

.actions {
	display: flex;
	gap: 10px;
	align-items: center
}

.btn {
	padding: 10px 14px;
	border-radius: 14px;
	cursor: pointer;
	border: 1px solid var(--panel-strong);
	background: var(--panel);
	color: var(--text);
	transition: .25s ease;
	box-shadow: var(--shadow);
}

.btn.primary {
	background: linear-gradient(145deg, var(--brand), var(--brand-2));
	border: none;
	color: white;
	font-weight: 700
}

.btn:hover {
	transform: translateY(-1px);
}

.hamburger {
	display: none;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 8px;
}

.hamburger span {
	display: block;
	width: 26px;
	height: 2px;
	background: var(--text);
	margin: 6px 0;
	transition: .3s
}

/* ====== Sections ====== */
section {
	padding: 100px 0;
}

.wrap {
	width: min(1200px, 92%);
	margin-inline: auto;
}

/* ====== Hero (Parallax) ====== */
.hero {
	position: relative;
	min-height: 92vh;
	display: grid;
	place-items: center;
	background: radial-gradient(1200px 600px at 50% 120%, var(--bg), transparent),
		radial-gradient(800px 400px at 80% 20%, var(--bg), transparent),
		var(--bg);
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -2;
	opacity: .95;
	background-image: url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?q=80&w=2400&auto=format&fit=crop');
	background-size: cover;
	background-position: center;
	transform: translateZ(0) scale(1.04);
	filter: contrast(1.02) saturate(1.1) brightness(.9);
}

.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(to top, rgba(0, 0, 0, .6), rgba(0, 0, 0, .15) 50%, rgba(0, 0, 0, 0));
}

.hero-inner {
	text-align: center;
	padding-top: 60px;
}

.kicker {
	display: inline-block;
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 12px;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: #fff;
	background: linear-gradient(145deg, var(--brand), var(--brand-2));
	margin-bottom: 14px;
}

.display {
	font-size: clamp(36px, 7vw, 72px);
	font-weight: 800;
	line-height: 1.05;
	margin: 0 0 12px;
	text-shadow: 0 14px 50px rgba(0, 0, 0, .6);
}

.lead {
	color: var(--text);
	max-width: 760px;
	margin: 0 auto 22px;
	opacity: .95
}

.cta-row {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 8px
}

.scroll-indicator {
	position: absolute;
	bottom: 18px;
	left: 50%;
	transform: translateX(-50%);
	opacity: .8;
	font-size: 13px;
}

/* ====== Features / Destinations ====== */
.grid {
	display: grid;
	gap: 16px
}

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

.card {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius);
	border: 1px solid var(--panel-strong);
	background: var(--panel);
	box-shadow: var(--shadow);
	isolation: isolate;
	transform: translateY(8px);
	opacity: 0;
	transition: .6s cubic-bezier(.2, .7, .2, 1);
}

.card.revealed {
	transform: translateY(0);
	opacity: 1
}

.card .img {
	aspect-ratio: 16/11;
	background: #111;
	overflow: hidden
}

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

.card:hover .img img {
	transform: scale(1.06);
}

.card .content {
	padding: 16px 16px 18px
}

.tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .12em;
	opacity: .8
}

.tag .dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--brand);
	box-shadow: 0 0 0 3px rgba(89, 216, 161, .25)
}

.card h3 {
	margin: 10px 0 6px;
	font-size: 20px
}

.card p {
	margin: 0;
	color: var(--muted)
}

/* ====== Split Section ====== */
.split {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 24px;
	align-items: center
}

.panel {
	background: var(--panel);
	border: 1px solid var(--panel-strong);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 22px;
	backdrop-filter: blur(var(--blur));
}

/* ====== Gallery ====== */
.masonry {
	columns: 3 260px;
	column-gap: 16px
}

.masonry figure {
	break-inside: avoid;
	margin: 0 0 16px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--shadow)
}

/* ====== Testimonials ====== */
.slider {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius);
	border: 1px solid var(--panel-strong);
	background: var(--panel);
}

.slides {
	display: flex;
	transition: transform .6s ease;
}

.slide {
	flex: 0 0 100%;
	padding: 26px;
}

.quote {
	font-size: 18px;
}

.author {
	margin-top: 10px;
	color: var(--muted)
}

.dots {
	display: flex;
	gap: 8px;
	justify-content: center;
	padding: 10px 0
}

.dotbtn {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 1px solid var(--panel-strong);
	background: #ffffff30;
	cursor: pointer
}

.dotbtn.active {
	background: linear-gradient(145deg, var(--brand), var(--brand-2));
	border: none
}

/* ====== Footer ====== */
footer {
	padding: 26px 0 60px;
	color: var(--muted)
}

.foot {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap
}

/* ====== Contact ====== */
form .row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px
}

form input,
form textarea {
	width: 100%;
	padding: 12px 14px;
	border-radius: 14px;
	border: 1px solid var(--panel-strong);
	background: #ffffff08;
	color: var(--text);
	outline: none;
	transition: border .2s ease;
	font: inherit;
}

form input:focus,
form textarea:focus {
	border-color: var(--brand-2)
}

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

/* ====== Utilities ====== */
.muted {
	color: var(--muted)
}

.pill {
	display: inline-block;
	padding: 8px 12px;
	border-radius: 999px;
	background: #ffffff14;
	border: 1px solid var(--panel-strong)
}

.center {
	text-align: center
}

.section-title {
	font-size: clamp(26px, 4vw, 40px);
	margin: 0 0 10px
}

.section-lead {
	color: var(--muted);
	margin: 6px auto 18px;
	max-width: 860px
}

/* ====== Responsive ====== */
@media (max-width: 920px) {
	.grid.cols-3 {
		grid-template-columns: 1fr 1fr;
	}

	.split {
		grid-template-columns: 1fr;
	}

	.nav-inner {
		height: auto;
		padding: 10px 12px
	}

	.menu {
		display: none;
	}

	.hamburger {
		display: block
	}
}

@media (max-width: 560px) {
	.grid.cols-3 {
		grid-template-columns: 1fr;
	}

	form .row {
		grid-template-columns: 1fr
	}
}