/* ═══════════════════════════════════════════
   Hotel Guest Guide — frontend styles
   Dark luxury · gold accent · Playfair + Inter
   ═══════════════════════════════════════════ */

:root {
	--hgg-accent: #e3c27e;
	--hgg-bg: #0d0c0a;
	--hgg-card: rgba(255, 255, 255, 0.05);
	--hgg-card-border: rgba(255, 255, 255, 0.09);
	--hgg-text: #f5f1e8;
	--hgg-muted: rgba(245, 241, 232, 0.62);
	--hgg-display: "Playfair Display", Georgia, serif;
	--hgg-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

.hgg-app {
	background: var(--hgg-bg);
	color: var(--hgg-text);
	font-family: var(--hgg-body);
	min-height: 100vh;
	position: relative;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;

	/* Full-bleed: σπάει έξω από οποιοδήποτε container του θέματος */
	width: 100vw;
	max-width: 100vw;
	left: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
}

/* Σκούρο φόντο και γύρω από την εφαρμογή — όχι λευκά περιθώρια */
body:has(.hgg-app) {
	background: var(--hgg-bg) !important;
	overflow-x: hidden;
	margin: 0;
}
body.hgg-fullscreen { background: var(--hgg-bg); }
.hgg-app *, .hgg-app *::before, .hgg-app *::after { box-sizing: border-box; }
.hgg-app img { max-width: 100%; height: auto; }
.hgg-app a { color: var(--hgg-accent); text-decoration: none; }

/* ── Hero ── */
.hgg-hero {
	position: relative;
	min-height: 100vh;
	min-height: 100dvh;
	background: #1a1814 center / cover no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-radius: 0 0 28px 28px;
	overflow: hidden;
}
.hgg-hero-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(13,12,10,.25) 0%, rgba(13,12,10,.35) 55%, var(--hgg-bg) 100%);
}
.hgg-hero-inner { position: relative; padding: 48px 24px 72px; width: 100%; }
.hgg-logo { max-height: 72px; width: auto; margin-bottom: 28px; }
.hgg-eyebrow {
	font-size: 12px; letter-spacing: .42em; text-transform: uppercase;
	color: var(--hgg-accent); font-weight: 600; margin: 0 0 10px;
}
.hgg-title {
	font-family: var(--hgg-display);
	font-size: clamp(42px, 11vw, 64px);
	font-weight: 700; line-height: 1.05; margin: 0;
	color: #f7f3ea;
}
.hgg-rule {
	width: 120px; height: 2px; margin: 18px auto;
	background: linear-gradient(90deg, transparent, var(--hgg-accent), transparent);
}
.hgg-location {
	font-size: 13px; letter-spacing: .3em; text-transform: uppercase;
	color: var(--hgg-accent); margin: 0 0 28px;
}
.hgg-weather {
	display: inline-flex; flex-direction: column; gap: 2px;
	background: rgba(20, 18, 15, 0.55);
	backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 18px; padding: 14px 26px;
	font-size: 14px; color: var(--hgg-text);
}
.hgg-weather-temp { font-size: 24px; }
.hgg-weather-temp strong { font-weight: 700; }
.hgg-weather-desc { font-weight: 600; }
.hgg-weather-wind { color: var(--hgg-muted); font-size: 13px; }
.hgg-scroll {
	display: flex; align-items: center; justify-content: center;
	width: 56px; height: 56px; margin: 34px auto 0;
	border: 1px solid var(--hgg-accent); border-radius: 50%;
	color: var(--hgg-accent);
	animation: hgg-bob 2.4s ease-in-out infinite;
}
.hgg-scroll svg { width: 22px; height: 22px; }
@keyframes hgg-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
@media (prefers-reduced-motion: reduce) { .hgg-scroll { animation: none; } }

/* ── Sections ── */
.hgg-section {
	padding: 44px 20px 8px;
	max-width: 1120px;
	margin-left: auto;
	margin-right: auto;
}
.hgg-h2 {
	font-family: var(--hgg-display);
	font-size: clamp(32px, 8vw, 42px);
	font-weight: 500; text-align: center;
	color: #f2ecdf; margin: 0 0 8px;
}
.hgg-h2-rule {
	width: 150px; height: 2px; margin: 0 auto 26px;
	background: var(--hgg-accent);
}

/* ── Cards grid ── */
.hgg-grid {
	display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 22px;
}
@media (min-width: 768px) {
	.hgg-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
	.hgg-grid-essentials { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
	.hgg-grid { grid-template-columns: repeat(4, 1fr); }
	.hgg-grid-essentials { grid-template-columns: repeat(4, 1fr); }
}
.hgg-card {
	position: relative;
	display: flex; flex-direction: column; align-items: flex-start;
	gap: 6px;
	background: var(--hgg-card);
	border: 1px solid var(--hgg-card-border);
	border-radius: 20px;
	padding: 22px 20px;
	color: var(--hgg-text);
	font-family: var(--hgg-body);
	text-align: left; cursor: pointer;
	transition: transform .18s ease, border-color .18s ease, background .18s ease;
	appearance: none; -webkit-appearance: none;
	font-size: inherit;
}
.hgg-card:hover, .hgg-card:focus-visible {
	transform: translateY(-2px);
	border-color: var(--hgg-accent);
	background: rgba(255,255,255,.08);
	outline: none;
}
.hgg-card:focus-visible { box-shadow: 0 0 0 2px var(--hgg-accent); }
.hgg-icon { color: var(--hgg-accent); width: 40px; height: 40px; margin-bottom: 8px; }
.hgg-icon svg { width: 100%; height: 100%; }
.hgg-card-title { font-size: 19px; font-weight: 700; color: #fff; line-height: 1.25; }
.hgg-card-sub { font-size: 14px; color: var(--hgg-muted); }
.hgg-chev {
	position: absolute; right: 18px; bottom: 20px;
	color: var(--hgg-accent); font-size: 22px; line-height: 1;
}
.hgg-card-square { align-items: center; text-align: center; padding: 34px 16px; min-height: 165px; justify-content: center; }
.hgg-card-square .hgg-icon { margin-bottom: 12px; }
.hgg-card-square .hgg-card-title { font-size: 20px; }

/* ── Book direct ── */
.hgg-book {
	background: linear-gradient(135deg, #2b241a 0%, #4a3c26 100%);
	border-radius: 26px; padding: 42px 30px; margin-top: 14px;
}
.hgg-book-title {
	font-family: var(--hgg-display);
	font-size: clamp(34px, 9vw, 46px); font-weight: 700;
	color: #fff; margin: 0 0 14px; line-height: 1.12;
}
.hgg-book-text { color: rgba(255,255,255,.75); font-size: 17px; margin: 0 0 26px; }
.hgg-book-btn {
	display: inline-block;
	background: #fff; color: #14120e !important;
	font-weight: 700; font-size: 17px;
	padding: 15px 32px; border-radius: 999px;
	transition: transform .18s ease;
}
.hgg-book-btn:hover { transform: scale(1.03); }

/* ── Footer ── */
.hgg-footer {
	text-align: center; padding: 52px 24px 110px;
	color: var(--hgg-muted); font-size: 15px; line-height: 1.9;
}
.hgg-footer-name { letter-spacing: .28em; text-transform: uppercase; font-weight: 700; color: #fff; font-size: 17px; margin: 0 0 6px; }
.hgg-footer p { margin: 0; }

/* ── Floating WhatsApp ── */
.hgg-fab {
	position: fixed; right: 20px; bottom: 24px; z-index: 60;
	width: 62px; height: 62px; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	background: radial-gradient(circle at 30% 30%, #f0d9a3, #c89b4f);
	color: #fff !important;
	box-shadow: 0 8px 26px rgba(0,0,0,.45), 0 0 0 1px rgba(227,194,126,.4);
	transition: transform .18s ease;
}
.hgg-fab:hover { transform: scale(1.07); }
.hgg-fab svg { width: 28px; height: 28px; }

/* ── Modals ── */
.hgg-modal {
	position: fixed; inset: 0; z-index: 100;
	background: rgba(8, 7, 5, 0.78);
	backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
	display: flex; align-items: flex-end; justify-content: center;
	padding: 0;
}
.hgg-modal[hidden] { display: none; }
.hgg-modal-box {
	background: #17140f;
	border: 1px solid rgba(227,194,126,.22);
	border-radius: 26px 26px 0 0;
	padding: 30px 26px 42px;
	width: 100%; max-width: 640px;
	max-height: 82vh; overflow-y: auto;
	color: var(--hgg-text);
	animation: hgg-up .28s ease;
}
@keyframes hgg-up { from { transform: translateY(40px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .hgg-modal-box { animation: none; } }
.hgg-modal-box h3 {
	font-family: var(--hgg-display);
	font-size: 30px; font-weight: 600; color: #fff;
	margin: 0 0 18px; padding-right: 44px;
}
.hgg-modal-close {
	position: absolute; /* fallback */
	float: right;
	background: rgba(255,255,255,.08); border: none;
	width: 38px; height: 38px; border-radius: 50%;
	color: #fff; font-size: 16px; cursor: pointer;
	position: sticky; top: 0; margin-left: auto; display: block;
}
.hgg-kv {
	display: flex; justify-content: space-between; align-items: center;
	background: rgba(255,255,255,.05);
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 14px; padding: 15px 18px; margin-bottom: 12px;
	font-size: 16px;
}
.hgg-kv span { color: var(--hgg-muted); }
.hgg-kv strong { color: var(--hgg-accent); font-weight: 700; letter-spacing: .02em; }
.hgg-copy {
	display: block; width: 100%; text-align: center;
	background: var(--hgg-accent); color: #14120e !important;
	border: none; border-radius: 999px;
	font-weight: 700; font-size: 16px; font-family: var(--hgg-body);
	padding: 14px 20px; margin-top: 12px; cursor: pointer;
	transition: filter .18s ease;
}
.hgg-copy:hover { filter: brightness(1.07); }
.hgg-modal-content { font-size: 16px; line-height: 1.75; color: rgba(245,241,232,.88); }
.hgg-modal-content h1, .hgg-modal-content h2, .hgg-modal-content h3, .hgg-modal-content h4 { color: #fff; font-family: var(--hgg-display); }
.hgg-modal-content ul, .hgg-modal-content ol { padding-left: 22px; }
.hgg-modal-content li { margin-bottom: 6px; }
.hgg-app .hgg-modal-content img { border-radius: 14px; }

/* ── Body lock when modal open ── */
body.hgg-modal-open { overflow: hidden; }

/* ── Wider screens ── */
@media (min-width: 700px) {
	.hgg-modal-box { border-radius: 26px; margin-bottom: 5vh; }
	.hgg-modal { align-items: center; padding: 24px; }
	.hgg-book { padding: 56px 48px; text-align: center; }
}
