/*
  Çandarlı Otel - İç Sayfalar Ortak CSS
  Kapsam: Hakkımızda, Çandarlı Hakkında, Odalarımız, Galeri, İletişim
  Not: Anasayfa slider/header yapısı farklı olduğu için bu dosyaya dahil edilmemiştir.
*/

/* =========================
   01. Design Tokens
========================= */

:root {
	--navy: #0f2f44;
	--navy-dark: #071c2d;
	--gold: #ffd702;
	--gold-deep: #ffd702;
	--gold-muted: #ffd702;

	--page-bg: #f4f5f5;
	--page-bg-2: #eceff1;
	--white: #ffffff;

	--text: #162f43;
	--muted: #687889;
	--line: rgba(15, 47, 68, 0.10);

	--radius: 5px;
	--container: 1180px;
	--ease: cubic-bezier(.25, .8, .25, 1);
}

/* =========================
   02. Reset / Base
========================= */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Manrope", Arial, Helvetica, sans-serif;
	background: linear-gradient(180deg, #f4f5f5 0%, #eef1f2 100%);
	color: var(--text);
	line-height: 1.65;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
	font: inherit;
}

.container {
	width: min(var(--container), calc(100% - 64px));
	margin: 0 auto;
}

/* =========================
   03. Common Components
========================= */

.btn,
.btn-primary {
	min-height: 52px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 0 26px;
	border: 0;
	border-radius: var(--radius);
	background: var(--gold);
	color: var(--navy-dark);
	font-size: 15px;
	font-weight: 900;
	cursor: pointer;
	white-space: nowrap;
	box-shadow: 0 14px 30px rgba(255, 215, 2, 0.22);
	transition:
	transform .28s var(--ease),
	background .28s var(--ease),
	color .28s var(--ease),
	box-shadow .28s var(--ease);
}

.btn:hover,
.btn-primary:hover {
	background: #000000;
	color: #ffffff;
	transform: translateY(-1px);
	box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.eyebrow,
.about-mini,
.section-mini {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
	color: var(--text);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .18em;
	text-transform: none;
}

.about-mini,
.section-mini {
	font-size: 13px;
	letter-spacing: .20em;
	margin-bottom: 20px;
}

.eyebrow::before,
.about-mini::before,
.section-mini::before {
	content: "";
	width: 24px;
	height: 2px;
	background: var(--text);
}

/* =========================
   04. Shared Inner Header
========================= */

.site-header {
	position: sticky;
	top: 0;
	z-index: 90;
	padding: 22px 0;
	background: transparent;
}

.header-box {
	min-height: 82px;
	display: grid;
	grid-template-columns: 240px 1fr 198px;
	align-items: center;
	gap: 22px;
	padding: 0 20px 0 28px;
	background: rgba(255, 255, 255, .94);
	border: 1px solid rgba(255, 255, 255, .72);
	border-left: 4px solid var(--gold);
	border-radius: var(--radius);
	box-shadow: 0 22px 64px rgba(7, 28, 45, .105);
	backdrop-filter: blur(18px);
}

.brand {
	color: #000000;
	font-size: 26px;
	font-weight: 900;
	letter-spacing: -.045em;
	white-space: nowrap;
	line-height: 60px;
}
.brand img{
	float: left;
	margin-right: 10px;
	padding: 5px 10px;
	background: #000;
	border-radius: 5px;
}

.main-menu {
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 26px;
	color: var(--navy);
	font-size: 14px;
	font-weight: 900;
	white-space: nowrap;
}

.main-menu a {
	position: relative;
	display: inline-flex;
	padding: 10px 0;
	opacity: .92;
	transition: opacity .22s ease, color .22s ease;
}

.main-menu a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 3px;
	background: var(--gold);
	transition: width .24s var(--ease);
}

.main-menu a:hover,
.main-menu a.active {
	opacity: 1;
	color: #000000;
}

.main-menu a:hover::after,
.main-menu a.active::after {
	width: 100%;
}

.header-phone {
	min-height: 54px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border-radius: var(--radius);
	background: var(--gold);
	color: var(--navy-dark);
	font-size: 15px;
	font-weight: 900;
	box-shadow: 0 16px 34px rgba(255, 215, 2, .24);
	transition: transform .28s var(--ease), background .28s var(--ease), color .28s var(--ease);
}

.header-phone:hover {
	background: #000000;
	color: #ffffff;
	transform: translateY(-1px);
}

/* =========================
   05. Mobile Drawer
========================= */

.mobile-toggle {
	display: none;
	width: 46px;
	height: 46px;
	border: 0;
	border-radius: var(--radius);
	background: var(--gold);
	cursor: pointer;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	justify-self: end;
}

.mobile-toggle span {
	width: 20px;
	height: 2px;
	background: var(--navy-dark);
	border-radius: 999px;
}

.mobile-backdrop {
	position: fixed;
	inset: 0;
	z-index: 100;
	background: rgba(7, 28, 45, .55);
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s var(--ease);
	backdrop-filter: blur(3px);
}

.mobile-drawer {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 110;
	width: min(360px, 86vw);
	height: 100vh;
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border-right: 4px solid var(--gold);
	box-shadow: 28px 0 80px rgba(7, 28, 45, .24);
	transform: translateX(-105%);
	transition: transform .42s var(--ease);
}

body.menu-open {
	overflow: hidden;
}

body.menu-open .mobile-backdrop {
	opacity: 1;
	pointer-events: auto;
}

body.menu-open .mobile-drawer {
	transform: translateX(0);
}

.mobile-drawer-head {
	min-height: 84px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 22px 24px;
	border-bottom: 1px solid var(--line);
}

.mobile-drawer-head strong {
	color: var(--navy);
	font-size: 23px;
	font-weight: 900;
	letter-spacing: -.04em;
}

.mobile-close {
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	border: 0;
	border-radius: 50%;
	background: #f1f3f4;
	color: var(--navy);
	cursor: pointer;
	transition: background .24s var(--ease), color .24s var(--ease), transform .24s var(--ease);
}

.mobile-close:hover {
	background: #000000;
	color: #ffffff;
	transform: rotate(90deg);
}

.mobile-nav {
	display: grid;
	padding: 18px 24px;
}

.mobile-nav a {
	padding: 17px 0;
	color: var(--navy);
	font-size: 18px;
	font-weight: 900;
	border-bottom: 1px solid rgba(15,47,68,.09);
	transform: translateX(-12px);
	opacity: 0;
	transition: transform .34s var(--ease), opacity .34s var(--ease), color .22s ease;
}

body.menu-open .mobile-nav a {
	transform: translateX(0);
	opacity: 1;
}

body.menu-open .mobile-nav a:nth-child(1) { transition-delay: .08s; }
body.menu-open .mobile-nav a:nth-child(2) { transition-delay: .12s; }
body.menu-open .mobile-nav a:nth-child(3) { transition-delay: .16s; }
body.menu-open .mobile-nav a:nth-child(4) { transition-delay: .20s; }
body.menu-open .mobile-nav a:nth-child(5) { transition-delay: .24s; }
body.menu-open .mobile-nav a:nth-child(6) { transition-delay: .28s; }

.mobile-drawer-footer {
	margin-top: auto;
	padding: 24px;
	background: #f1f3f4;
	display: grid;
	gap: 14px;
}

.mobile-call {
	min-height: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: var(--gold);
	color: var(--navy-dark);
	border-radius: var(--radius);
	font-weight: 900;
	transition: background .28s var(--ease), color .28s var(--ease);
}

.mobile-call:hover {
	background: #000000;
	color: #ffffff;
}

.mobile-drawer-footer span {
	color: var(--muted);
	font-size: 13px;
	line-height: 1.55;
}

/* =========================
   06. Shared Page Hero
========================= */

.page-hero,
.rooms-hero,
.gallery-hero,
.contact-hero {
	margin-top: -126px;
	padding: 198px 0 82px;
	background:
	radial-gradient(circle at 85% 10%, rgb(255 215 2 / 4%), transparent 30%), 
	linear-gradient(180deg, #f4f5f5 0%, #eef1f2 100%);
	overflow: hidden;
}

.page-hero {
	position: relative;
	padding: 204px 0 92px;
}
.cand-image{
	position: relative;
	height: 540px;
	object-fit: cover;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--navy-dark);
	box-shadow: 0 32px 84px rgba(7, 28, 45, .16);
	transition: transform .38s var(--ease), box-shadow .38s var(--ease);
}
.about-grid,
.cand-grid,
.rooms-hero-grid,
.gallery-hero-grid,
.contact-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 520px;
	gap: 76px;
	align-items: center;
}

.gallery-hero-grid,
.contact-hero-grid {
	grid-template-columns: minmax(0, 1fr) 460px;
	gap: 70px;
}

.about-copy h1,
.cand-copy h1,
.rooms-copy h1,
.gallery-copy h1,
.contact-copy h1 {
	max-width: 760px;
	color: var(--navy);
	font-size: clamp(38px, 4.3vw, 58px);
	line-height: 1.06;
	letter-spacing: -.05em;
	font-weight: 900;
	margin-bottom: 24px;
}

.rooms-copy h1,
.gallery-copy h1,
.contact-copy h1 {
	font-size: clamp(40px, 4.5vw, 60px);
	line-height: 1.02;
	letter-spacing: -.055em;
}

.about-copy p,
.cand-copy p,
.rooms-copy p,
.gallery-copy p,
.contact-copy p {
	max-width: 710px;
	color: var(--muted);
	font-size: 18px;
	line-height: 1.82;
	font-weight: 500;
	margin-bottom: 18px;
}

.about-image,
.cand-image,
.rooms-image,
.gallery-hero-card {
	position: relative;
	min-height: 540px;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--navy-dark);
	box-shadow: 0 32px 84px rgba(7, 28, 45, .16);
	transition: transform .38s var(--ease), box-shadow .38s var(--ease);
}

.about-image:hover,
.cand-image:hover,
.rooms-image:hover,
.gallery-hero-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 34px 86px rgba(7, 28, 45, .18);
}

.about-image::after,
.cand-image::after,
.rooms-image::after,
.gallery-hero-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(7,28,45,.02), rgba(7,28,45,.24));
}

.about-image img,
.cand-image img,
.rooms-image img,
.gallery-hero-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* =========================
   07. Hakkımızda Page
========================= */

.about-points,
.cand-facts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-top: 34px;
	max-width: 780px;
}

.about-point,
.cand-fact {
	min-height: 72px;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	background: rgba(255,255,255,.82);
	border: 1px solid rgba(15,47,68,.08);
	border-radius: var(--radius);
	box-shadow: 0 12px 30px rgba(7,28,45,.045);
}

.about-point i,
.cand-fact i {
	width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 34px;
	border-radius: 50%;
	background: rgba(255, 215, 2, .16);
	color: #000;
	font-size: 14px;
}

.about-point span,
.cand-fact span {
	color: var(--navy);
	font-size: 13px;
	font-weight: 900;
	line-height: 1.3;
}

.about-actions,
.contact-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: 30px;
}

.president-section {
	padding: 86px 0 96px;
	background: #ffffff;
}

.president-card {
	display: grid;
	grid-template-columns: 360px minmax(0, 1fr);
	gap: 58px;
	align-items: center;
	padding: 44px;
	background: #ffffff;
	border: 1px solid var(--line);
	border-left: 4px solid var(--gold);
	border-radius: var(--radius);
	box-shadow: 0 18px 48px rgba(7, 28, 45, .06);
}

.president-image {
	position: relative;
	min-height: 430px;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--page-bg-2);
}

.president-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.president-content h2 {
	color: var(--navy);
	font-size: clamp(32px, 4vw, 52px);
	line-height: 1.08;
	letter-spacing: -.05em;
	font-weight: 900;
	margin-bottom: 20px;
}

.president-content p {
	color: var(--muted);
	font-size: 17px;
	line-height: 1.82;
	font-weight: 500;
	margin-bottom: 18px;
}

.president-sign {
	margin-top: 28px;
	padding-top: 22px;
	border-top: 1px solid var(--line);
}

.president-sign-logo {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.president-sign strong {
	display: block;
	color: var(--navy);
	font-size: 19px;
	font-weight: 900;
	letter-spacing: -.03em;
}

.president-sign span {
	display: block;
	color: #000000;
	font-size: 14px;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: unset;
	margin-top: 4px;
}

.president-sign-logo img {
	height: 72px;
	width: auto;
	object-fit: contain;
	margin-left: auto;
	padding: 10px;
	background: #000;
	border-radius: 5px;
}

/* =========================
   08. Çandarlı Hakkında Page
========================= */

.history-section,
.life-section {
	padding: 92px 0;
	background: #ffffff;
}

.history-grid {
	display: grid;
	grid-template-columns: .72fr 1.28fr;
	gap: 70px;
}

.section-title h2,
.life-head h2 {
	color: var(--navy);
	font-size: clamp(32px, 4vw, 52px);
	line-height: 1.08;
	letter-spacing: -.05em;
	font-weight: 900;
}

.history-content p,
.castle-card p {
	color: var(--muted);
	font-size: 17px;
	font-weight: 500;
	line-height: 1.86;
	margin-bottom: 18px;
}

.quote-box {
	margin-top: 28px;
	padding: 26px;
	background: var(--page-bg);
	border-left: 4px solid var(--gold);
	border-radius: var(--radius);
	color: var(--navy);
	font-size: 18px;
	line-height: 1.72;
	font-weight: 700;
}

.image-break {
	position: relative;
	height: 500px;
	overflow: hidden;
	background: var(--navy-dark);
}

.image-break::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(7,28,45,.06), rgba(7,28,45,.38));
}

.image-break img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.castle-section {
	padding: 92px 0;
	background: var(--page-bg);
}

.castle-card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 420px;
	gap: 54px;
	align-items: center;
	padding: 46px;
	background: #ffffff;
	border: 1px solid var(--line);
	border-left: 4px solid var(--gold);
	border-radius: var(--radius);
	box-shadow: 0 18px 48px rgba(7,28,45,.06);
}

.castle-card h2 {
	color: var(--navy);
	font-size: clamp(32px, 4vw, 50px);
	line-height: 1.08;
	letter-spacing: -.05em;
	font-weight: 900;
	margin-bottom: 18px;
}

.castle-list {
	display: grid;
	gap: 12px;
	margin-top: 24px;
}

.castle-list li {
	list-style: none;
	display: flex;
	gap: 12px;
	color: var(--navy);
	font-size: 15px;
	font-weight: 800;
}

.castle-list i {
	margin-top: 4px;
	color: var(--gold-deep);
}

.castle-image {
	min-height: 430px;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--page-bg-2);
}

.castle-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.life-head {
	max-width: 760px;
	margin-bottom: 34px;
}

.life-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.life-card,
.info-card,
.experience-card {
	min-height: 250px;
	position: relative;
	overflow: hidden;
	padding: 30px;
	background: #ffffff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.life-card::before,
.info-card::before,
.experience-card::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: 0;
	background: radial-gradient(circle at 18% 0%, rgba(255,215,2,.16), transparent 42%);
	transition: opacity .35s ease;
}

.life-card:hover,
.info-card:hover,
.experience-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 24px 60px rgba(7,28,45,.08);
}

.life-card:hover::before,
.info-card:hover::before,
.experience-card:hover::before {
	opacity: 1;
}

.life-card i,
.life-card h3,
.life-card p,
.info-card i,
.info-card h3,
.info-card p,
.info-card a,
.experience-card i,
.experience-card h3,
.experience-card p {
	position: relative;
	z-index: 1;
}

.life-card i,
.info-card i,
.experience-card i {
	color: var(--gold-muted);
	font-size: 32px;
	margin-bottom: 22px;
}

.life-card h3,
.info-card h3,
.experience-card h3 {
	color: var(--navy);
	font-size: 23px;
	font-weight: 900;
	letter-spacing: -.04em;
	margin-bottom: 12px;
}

.life-card p,
.info-card p,
.experience-card p {
	color: var(--muted);
	font-size: 16px;
	line-height: 1.7;
	font-weight: 500;
}

/* =========================
   09. Odalar Page
========================= */

.rooms-section {
	padding: 90px 0 100px;
	background: #ffffff;
}

.rooms-list {
	display: grid;
	gap: 34px;
}

.room-card {
	display: grid;
	grid-template-columns: 560px minmax(0, 1fr);
	gap: 42px;
	padding: 28px;
	background: #ffffff;
	border: 1px solid var(--line);
	border-left: 4px solid var(--gold);
	border-radius: var(--radius);
	box-shadow: 0 18px 48px rgba(7,28,45,.06);
	transition: transform .34s var(--ease), box-shadow .34s var(--ease);
}

.room-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 24px 62px rgba(7,28,45,.10);
}

.room-gallery {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

.room-main {
	position: relative;
	height: 360px;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--page-bg-2);
	box-shadow: 0 16px 40px rgba(7,28,45,.08);
	cursor: pointer;
}

.room-main::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(7,28,45,0.02), rgba(7,28,45,0.20));
	pointer-events: none;
	z-index: 1;
}

.room-main::before {
	content: "Görseli değiştir";
	position: absolute;
	left: 16px;
	bottom: 16px;
	z-index: 3;
	min-height: 34px;
	display: inline-flex;
	align-items: center;
	padding: 0 13px;
	border-radius: 999px;
	background: rgba(0,0,0,.58);
	color: #ffffff;
	font-size: 12px;
	font-weight: 900;
	opacity: 0;
	transform: translateY(6px);
	transition: opacity .28s var(--ease), transform .28s var(--ease);
	backdrop-filter: blur(8px);
	pointer-events: none;
}

.room-main:hover::before {
	opacity: 1;
	transform: translateY(0);
}

.room-main img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .8s var(--ease), opacity .28s ease;
}

.room-card:hover .room-main img {
	transform: scale(1.035);
}

.room-gallery-count {
	position: absolute;
	right: 16px;
	bottom: 16px;
	z-index: 2;
	min-height: 34px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 0 13px;
	border-radius: 999px;
	background: rgba(255,255,255,.92);
	color: var(--navy);
	font-size: 12px;
	font-weight: 900;
	box-shadow: 0 10px 26px rgba(0,0,0,.12);
	backdrop-filter: blur(10px);
}

.room-thumbs {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}

.room-thumb {
	position: relative;
	height: 82px;
	overflow: hidden;
	border: 0;
	border-radius: var(--radius);
	background: var(--page-bg-2);
	cursor: pointer;
	padding: 0;
	box-shadow: inset 0 0 0 1px rgba(15,47,68,.08);
}

.room-thumb::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(7,28,45,.22);
	opacity: 1;
	transition: opacity .24s var(--ease), box-shadow .24s var(--ease);
	box-shadow: inset 0 0 0 0 var(--gold);
}

.room-thumb.active::after,
.room-thumb:hover::after {
	opacity: 0;
	box-shadow: inset 0 0 0 3px var(--gold);
}

.room-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .34s var(--ease);
}

.room-thumb:hover img {
	transform: scale(1.06);
}

.room-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.room-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 18px;
}

.room-content h2 {
	color: var(--navy);
	font-size: 34px;
	line-height: 1.05;
	letter-spacing: -.05em;
	font-weight: 900;
}

.room-badge {
	min-height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 16px;
	border-radius: var(--radius);
	background: rgba(255,215,2,.18);
	color: #000000;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .12em;
	text-transform: uppercase;
	white-space: nowrap;
}

.room-content p {
	color: var(--muted);
	font-size: 17px;
	line-height: 1.82;
	font-weight: 500;
	margin-bottom: 24px;
}

.room-features {
	display: grid;
	grid-template-columns: repeat(2, minmax(0,1fr));
	gap: 12px;
	margin-bottom: 28px;
}

.room-features li {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--navy);
	font-size: 15px;
	font-weight: 800;
}

.room-features i {
	color: var(--gold-deep);
	font-size: 14px;
}

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

/* =========================
   10. Galeri Page
========================= */

.gallery-section {
	padding: 90px 0 104px;
	background: #ffffff;
}

.gallery-rails {
	display: grid;
	gap: 56px;
}

.gallery-rail-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 22px;
}

.gallery-rail-title h2 {
	color: var(--navy);
	font-size: clamp(30px, 3.5vw, 34px);
	line-height: 1.08;
	letter-spacing: -.05em;
	font-weight: 900;
}

.gallery-rail-title p {
	margin-top: 10px;
	color: var(--muted);
	font-size: 16px;
	line-height: 1.7;
	font-weight: 500;
}

.gallery-rail-controls {
	display: flex;
	gap: 10px;
	flex: 0 0 auto;
}

.gallery-rail-btn {
	width: 46px;
	height: 46px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(15,47,68,.14);
	border-radius: 50%;
	background: #ffffff;
	color: var(--navy);
	cursor: pointer;
	box-shadow: 0 10px 26px rgba(7,28,45,.06);
	transition: transform .24s var(--ease), background .24s var(--ease), color .24s var(--ease), box-shadow .24s var(--ease);
}

.gallery-rail-btn:hover {
	background: #000000;
	color: #ffffff;
	transform: translateY(-1px);
	box-shadow: 0 16px 34px rgba(7,28,45,.14);
}

.gallery-rail-viewport {
	overflow: hidden;
}

.gallery-rail-track {
	display: flex;
	gap: 18px;
	transition: transform .5s var(--ease);
	will-change: transform;
}

.gallery-rail-card {
	position: relative;
	flex: 0 0 calc((100% - 54px) / 4);
	height: 300px;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--navy-dark);
	box-shadow: 0 14px 34px rgba(7,28,45,.08);
	isolation: isolate;
	transition: transform .34s var(--ease), box-shadow .34s var(--ease);
}

.gallery-rail-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 24px 62px rgba(7,28,45,.14);
}

.gallery-rail-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .7s var(--ease), opacity .35s ease;
}

.gallery-rail-card:hover img {
	transform: scale(1.045);
	opacity: .96;
}

.gallery-rail-card::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(7,28,45,.02), rgba(7,28,45,.58));
	opacity: .76;
	transition: opacity .28s ease;
}

.gallery-rail-card:hover::after {
	opacity: .88;
}

.gallery-rail-caption {
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: 18px;
	z-index: 2;
	color: #ffffff;
}

.gallery-rail-caption strong {
	display: block;
	font-size: 19px;
	font-weight: 900;
	letter-spacing: -.035em;
	margin-bottom: 3px;
}

.gallery-rail-caption span {
	display: block;
	color: rgba(255,255,255,.76);
	font-size: 13px;
	font-weight: 700;
}

.gallery-rail-card:hover .gallery-rail-caption strong {
	color: var(--gold);
}

/* Lightbox */
.lb-data .lb-caption {
	font-family: "Manrope", Arial, sans-serif;
	font-weight: 800;
}

.lightbox .lb-image {
	border-radius: 5px;
	border: 0;
}

/* =========================
   11. İletişim Page
========================= */

.contact-panel {
	padding: 28px;
	background: #ffffff;
	border: 1px solid rgba(15,47,68,.10);
	border-left: 4px solid var(--gold);
	border-radius: var(--radius);
	box-shadow: 0 24px 62px rgba(7,28,45,.10);
}

.contact-panel h2 {
	color: var(--navy);
	font-size: 28px;
	line-height: 1.1;
	letter-spacing: -.04em;
	font-weight: 900;
	margin-bottom: 18px;
}

.contact-panel-list {
	display: grid;
	gap: 16px;
}

.contact-panel-item {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--line);
}

.contact-panel-item:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.contact-panel-icon {
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	background: rgb(0 0 0 / 3%);
	color: #000000;
	flex: 0 0 42px;
}

.contact-panel-item strong {
	display: block;
	color: var(--navy);
	font-size: 15px;
	font-weight: 900;
	margin-bottom: 2px;
}

.contact-panel-item a,
.contact-panel-item span {
	color: var(--muted);
	font-size: 15px;
	line-height: 1.55;
	font-weight: 600;
}

.contact-panel-item a:hover {
	color: #000000;
}

.contact-info-section {
	padding: 90px 0;
	background: #ffffff;
}

.info-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.info-card a {
	color: var(--navy);
	font-weight: 900;
	font-size: 15px;
}

.info-card a:hover {
	color: #000000;
}

.map-section {
	padding: 100px 0;
	background: #ffffff;
}

.map-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 430px;
	gap: 34px;
	align-items: stretch;
}

.map-box {
	min-height: 470px;
	overflow: hidden;
	border-radius: var(--radius);
	border: 1px solid var(--line);
	box-shadow: 0 18px 48px rgba(7,28,45,.06);
	background: var(--page-bg-2);
}

.map-box iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

.reservation-box {
	padding: 34px;
	background: var(--page-bg);
	border: 1px solid var(--line);
	border-left: 4px solid var(--gold);
	border-radius: var(--radius);
}

.reservation-box h2 {
	color: var(--navy);
	font-size: 32px;
	line-height: 1.1;
	letter-spacing: -.045em;
	font-weight: 900;
	margin-bottom: 16px;
}

.reservation-box p {
	color: var(--muted);
	font-size: 16px;
	line-height: 1.75;
	font-weight: 500;
	margin-bottom: 24px;
}

.reservation-buttons {
	display: grid;
	gap: 12px;
}

.reservation-note {
	margin-top: 22px;
	padding-top: 20px;
	border-top: 1px solid var(--line);
	color: var(--muted);
	font-size: 14px;
	line-height: 1.6;
	font-weight: 600;
}

/* =========================
   12. Footer
========================= */

.footer {
	background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
	color: #ffffff;
	border-top: 3px solid var(--gold);
}

.footer-top {
	display: grid;
	grid-template-columns: 1.2fr .8fr 1fr;
	gap: 54px;
	padding: 62px 0;
}

.footer-col h3 {
	color: #ffffff;
	font-size: 27px;
	font-weight: 900;
	margin-bottom: 15px;
	letter-spacing: -.04em;
	line-height: 55px;
}

.footer-col h3 img{
	float: left;
	margin-right: 10px;
	padding: 5px 10px;
	background: #000;
	border-radius: 5px;
}

.footer-col h4 {
	color: var(--gold);
	margin-bottom: 16px;
	font-size: 17px;
	font-weight: 900;
}

.footer-col p {
	max-width: 470px;
	color: rgba(255,255,255,.80);
	line-height: 1.7;
	margin-bottom: 10px;
}

.footer-col ul {
	list-style: none;
	display: grid;
	gap: 9px;
}

.footer-col a {
	display: inline-flex;
	align-items: flex-start;
	gap: 8px;
	color: rgba(255,255,255,.82);
	transition: color .22s ease, transform .22s ease;
}

.footer-col a:hover {
	color: var(--gold);
	transform: translateX(2px);
}

.footer-col i {
	color: var(--gold);
	margin-top: 4px;
	width: 16px;
	flex: 0 0 16px;
}

.footer-bottom {
	border-top: 1px solid rgba(255,255,255,.14);
	padding: 18px 0;
	color: rgba(255,255,255,.72);
	font-size: 14px;
	background: rgba(0,0,0,.08);
}

.footer-bottom-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
}

/* =========================
   13. Responsive
========================= */

@media (max-width: 1100px) {
	.header-box {
		grid-template-columns: 1fr auto;
	}

	.site-header nav,
	.header-phone {
		display: none;
	}

	.mobile-toggle {
		display: inline-flex;
	}

	.about-grid,
	.cand-grid,
	.rooms-hero-grid,
	.gallery-hero-grid,
	.contact-hero-grid,
	.history-grid,
	.castle-card,
	.room-card,
	.map-grid,
	.president-card {
		grid-template-columns: 1fr;
	}

	.about-points,
	.cand-facts {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.life-grid,
	.info-grid {
		grid-template-columns: 1fr;
	}

	.room-card {
		grid-template-columns: 1fr;
	}

	.gallery-rail-card {
		flex-basis: calc((100% - 18px) / 2);
	}

	.footer-top {
		grid-template-columns: 1fr 1fr;
	}

	.footer-top .footer-col:first-child {
		grid-column: 1 / -1;
	}

	.president-image {
		min-height: 380px;
	}
}

@media (max-width: 900px) {
	.president-sign-logo {
		align-items: flex-start;
		flex-direction: column;
	}

	.president-sign-logo img {
		margin-left: 0;
		height: 64px;
	}
}

@media (max-width: 760px) {
	.container {
		width: min(100% - 36px, var(--container));
	}

	.site-header {
		padding: 12px 0;
	}

	.header-box {
		min-height: 70px;
		padding: 0 14px 0 18px;
	}

	.brand {
		font-size: 20px;
		line-height: 45px;
	}
	.brand img{
		height: 45px;
	}
	.page-hero,
	.rooms-hero,
	.gallery-hero,
	.contact-hero {
		margin-top: -94px;
		padding: 132px 0 64px;
	}

	.about-copy h1,
	.cand-copy h1,
	.rooms-copy h1,
	.gallery-copy h1,
	.contact-copy h1 {
		font-size: 38px;
	}

	.rooms-copy h1,
	.gallery-copy h1,
	.contact-copy h1 {
		font-size: 40px;
	}

	.about-copy p,
	.cand-copy p,
	.rooms-copy p,
	.gallery-copy p,
	.contact-copy p,
	.history-content p,
	.castle-card p,
	.room-content p {
		font-size: 16px;
	}

	.about-points,
	.cand-facts,
	.room-features {
		grid-template-columns: 1fr;
	}

	.about-image,
	.cand-image,
	.rooms-image,
	.gallery-hero-card {
		min-height: 360px;
	}

	.president-section,
	.history-section,
	.castle-section,
	.life-section,
	.rooms-section,
	.gallery-section,
	.contact-info-section {
		padding: 64px 0;
	}

	.map-section {
		padding-bottom: 64px;
	}

	.image-break {
		height: 360px;
	}

	.castle-card,
	.room-card,
	.president-card {
		padding: 24px;
	}

	.castle-image,
	.president-image {
		min-height: 320px;
	}

	.room-main {
		height: 300px;
	}

	.room-thumbs {
		grid-template-columns: repeat(2, 1fr);
	}

	.room-thumb {
		height: 84px;
	}

	.room-top {
		flex-direction: column;
	}

	.room-content h2 {
		font-size: 30px;
	}

	.gallery-rail-head {
		align-items: flex-start;
		flex-direction: column;
	}

	.gallery-rail-card {
		flex-basis: 86%;
		height: 260px;
	}

	.map-box {
		min-height: 360px;
	}

	.footer-top {
		grid-template-columns: 1fr;
	}

	.footer-top .footer-col:first-child {
		grid-column: auto;
	}
}


.fixed-actions {
	position: fixed;
	inset: auto 0 34px 0;
	z-index: 120;
	pointer-events: none;
}

.fixed-action {
	position: fixed;
	bottom: 34px;
	min-height: 56px;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 0 22px;
	border-radius: 5px;
	background: #ffd702;
	color: #071c2d;
	font-size: 15px;
	font-weight: 900;
	box-shadow: 0 18px 44px rgba(7, 28, 45, .18);
	pointer-events: auto;
	transition: .28s cubic-bezier(.25,.8,.25,1);
}

.fixed-action:hover {
	background: #000;
	color: #fff;
	transform: translateY(-2px);
}

.fixed-action-left {
	left: 28px;
}

.fixed-action-right {
	right: 28px;
}

.fixed-action i {
	font-size: 18px;
}

@media (max-width: 760px) {
	body {
		padding-bottom: 82px;
	}

	.fixed-actions {
		left: 0;
		right: 0;
		bottom: 0;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 1px;
		padding: 10px;
		background: rgba(255,255,255,.92);
		backdrop-filter: blur(14px);
		border-top: 1px solid rgba(15,47,68,.10);
	}

	.fixed-action {
		position: static;
		min-height: 56px;
		justify-content: center;
		border-radius: 5px;
		padding: 0 12px;
		font-size: 14px;
		box-shadow: none;
	}
}