/* ==========================================================================
   Akdeniz - feuille de style principale (site en une page)
   ========================================================================== */

:root {
	--gs-navy: #152a4a;
	--gs-orange: #e2622c;
	--gs-blue: #2fa6d9;
	--gs-gold: #f2b84b;
	--gs-bg: #ffffff;
	--gs-bg-muted: #f5f7fa;
	--gs-text: #1e2530;
	--gs-text-light: #616b78;
	--gs-radius: 14px;
	--gs-font-title: 'Poppins', 'Segoe UI', sans-serif;
	--gs-font-body: 'Inter', 'Segoe UI', sans-serif;
	--gs-max-width: 1140px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--gs-font-body);
	color: var(--gs-text);
	background: var(--gs-bg);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
	font-family: var(--gs-font-title);
	line-height: 1.2;
	margin: 0 0 0.5em;
}

p {
	margin: 0 0 1em;
}

a {
	color: var(--gs-orange);
	text-decoration: none;
}

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

.screen-reader-text {
	position: absolute;
	left: -9999px;
}

.gs-skip-link:focus {
	left: 1rem;
	top: 1rem;
	background: #fff;
	padding: 0.5rem 1rem;
	z-index: 999;
}

.gs-container {
	max-width: var(--gs-max-width);
	margin: 0 auto;
	padding: 0 24px;
}

/* Top bar */
.gs-topbar {
	background: var(--gs-navy);
	color: #fff;
	font-size: 0.82rem;
}

.gs-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	padding: 8px 24px;
}

.gs-topbar__tagline {
	margin: 0;
	opacity: 0.9;
}

.gs-topbar__right {
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
}

.gs-topbar__social {
	display: flex;
	gap: 16px;
}

.gs-topbar__social a {
	color: #fff;
	opacity: 0.85;
}

.gs-topbar__social a:hover {
	opacity: 1;
}

/* Sélecteur de langue */
.gs-lang-switch {
	display: flex;
	gap: 4px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	padding: 3px;
}

.gs-lang-switch button {
	background: transparent;
	border: none;
	color: #cfd6e3;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	padding: 4px 10px;
	border-radius: 999px;
	cursor: pointer;
}

.gs-lang-switch button.is-active {
	background: var(--gs-orange);
	color: #fff;
}

/* Header */
.gs-site-header {
	border-bottom: 1px solid #eee;
	padding: 14px 0;
}

.gs-site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
}

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

.gs-logo__text {
	font-family: var(--gs-font-title);
	font-weight: 700;
	font-size: 1.3rem;
	color: var(--gs-navy);
}

.gs-logo-badge {
	display: block;
}

.gs-nav-fallback {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 22px;
	margin: 0;
	padding: 0;
}

.gs-nav-fallback a {
	color: var(--gs-navy);
	font-weight: 600;
	font-size: 0.92rem;
}

.gs-nav-fallback a:hover {
	color: var(--gs-orange);
}

/* Hero */
.gs-hero {
	position: relative;
	padding: 64px 0 50px;
	text-align: center;
	background: linear-gradient(180deg, var(--gs-navy) 0%, #0d1b30 100%);
	color: #fff;
	overflow: hidden;
}

/* Fond vidéo YouTube (muet, en boucle) derrière le contenu du hero */
.gs-hero-video-bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
	z-index: 0;
	pointer-events: none;
}

.gs-hero-video-bg iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 300%;
	height: 300%;
	transform: translate(-50%, -50%);
	border: 0;
}

.gs-hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(13, 27, 48, 0.78);
	z-index: 1;
}

.gs-hero__inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.gs-hero__kicker {
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--gs-gold);
	margin: 18px 0 10px;
}

.gs-hero__title {
	font-size: clamp(1.8rem, 4vw, 2.6rem);
	max-width: 760px;
}

.gs-hero__subtitle {
	max-width: 620px;
	margin: 0 auto 22px;
	opacity: 0.9;
	font-size: 1.05rem;
}

.gs-hero__actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 26px;
}

.gs-page-nav {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
}

.gs-page-nav a {
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 999px;
	padding: 7px 18px;
	font-size: 0.85rem;
	font-weight: 500;
}

.gs-page-nav a:hover {
	background: var(--gs-orange);
	border-color: var(--gs-orange);
}

/* Buttons */
.gs-btn {
	display: inline-block;
	padding: 13px 28px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.95rem;
	transition: transform 0.15s ease, opacity 0.15s ease;
}

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

.gs-btn--primary {
	background: var(--gs-orange);
	color: #fff !important;
}

.gs-btn--outline-light {
	border: 2px solid #fff;
	color: #fff !important;
}

.gs-btn--outline {
	border: 2px solid var(--gs-navy);
	color: var(--gs-navy) !important;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
}

.gs-btn--outline:hover {
	background: var(--gs-navy);
	color: #fff !important;
}

.gs-btn--sm {
	padding: 9px 20px;
	font-size: 0.85rem;
	border: none;
	cursor: pointer;
}

/* Sections */
.gs-section {
	padding: 64px 0;
}

.gs-section--muted {
	background: var(--gs-bg-muted);
}

.gs-section__title {
	font-size: 2rem;
	text-align: center;
	color: var(--gs-navy);
}

.gs-section__lead {
	text-align: center;
	max-width: 600px;
	margin: 0 auto 40px;
	color: var(--gs-text-light);
}

.gs-eyebrow {
	text-transform: uppercase;
	font-size: 0.78rem;
	letter-spacing: 0.1em;
	font-weight: 700;
	color: var(--gs-orange);
	margin-bottom: 6px;
}

.gs-eyebrow--center {
	text-align: center;
}

/* Dish grid */
.gs-dish-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 22px;
}

.gs-dish-card {
	display: flex;
	gap: 18px;
	background: var(--gs-bg-muted);
	border-radius: var(--gs-radius);
	padding: 16px;
}

.gs-section:not(.gs-section--muted) .gs-dish-card {
	background: var(--gs-bg-muted);
}

.gs-dish-card__photo {
	flex: 0 0 auto;
	width: 84px;
	height: 84px;
	border-radius: 12px;
	overflow: hidden;
	background: #e8ecf1;
}

.gs-dish-card__photo-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gs-dish-card__photo-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: var(--gs-orange);
}

.gs-dish-card__photo-fallback .gs-icon {
	width: 40px;
	height: 40px;
}

.gs-dish-card__body {
	flex: 1;
	min-width: 0;
}

.gs-dish-card__head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 12px;
}

.gs-dish-card__head h3 {
	font-size: 1.05rem;
	margin-bottom: 4px;
	color: var(--gs-navy);
}

.gs-dish-card__head h4 {
	font-family: var(--gs-font-title);
	font-size: 1.02rem;
	margin: 0 0 4px;
	color: var(--gs-navy);
}

.gs-dish-card__price {
	font-weight: 700;
	color: var(--gs-orange);
	white-space: nowrap;
}

.gs-dish-card p {
	margin: 0;
	color: var(--gs-text-light);
	font-size: 0.92rem;
}

.gs-dish-card__note {
	margin-top: 6px !important;
	font-size: 0.82rem !important;
	color: var(--gs-blue) !important;
	font-weight: 600;
}

.gs-menu-cta {
	text-align: center;
	margin-top: 40px;
}

/* Plats phares (sans prix) */
.gs-featured-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 22px;
	margin-bottom: 10px;
}

.gs-featured-card {
	text-align: center;
}

.gs-featured-card__photo {
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: var(--gs-radius);
	overflow: hidden;
	background: #e8ecf1;
	margin-bottom: 12px;
	box-shadow: 0 8px 20px rgba(21, 42, 74, 0.12);
}

.gs-featured-card__photo .gs-dish-card__photo-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gs-featured-card h4 {
	font-family: var(--gs-font-title);
	font-size: 1rem;
	color: var(--gs-navy);
	margin: 0;
}

/* Onglets de catégories */
.gs-menu-tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-bottom: 46px;
}

.gs-menu-tabs a {
	background: var(--gs-bg-muted);
	color: var(--gs-navy);
	font-weight: 600;
	font-size: 0.85rem;
	padding: 8px 18px;
	border-radius: 999px;
	border: 1px solid #e5e9ef;
}

.gs-menu-tabs a:hover {
	background: var(--gs-orange);
	color: #fff;
	border-color: var(--gs-orange);
}

.gs-menu-category {
	scroll-margin-top: 90px;
	margin-bottom: 54px;
}

.gs-menu-category:last-child {
	margin-bottom: 0;
}

.gs-menu-category__title {
	color: var(--gs-navy);
	font-size: 1.4rem;
	border-bottom: 2px solid var(--gs-orange);
	display: inline-block;
	padding-bottom: 4px;
	margin-bottom: 6px;
}

.gs-menu-category__note {
	color: var(--gs-text-light);
	font-size: 0.88rem;
	font-style: italic;
	margin-bottom: 20px;
}

.gs-dish-card__dual-price {
	display: flex;
	gap: 16px;
	margin: 8px 0 0 !important;
	font-size: 0.82rem !important;
	color: var(--gs-navy) !important;
}

.gs-dish-card__dual-price strong {
	color: var(--gs-orange);
}

.gs-dish-card__variants {
	list-style: none;
	margin: 8px 0 0;
	padding: 0;
	font-size: 0.85rem;
}

.gs-dish-card__variants li {
	display: flex;
	justify-content: space-between;
	padding: 3px 0;
	border-bottom: 1px dashed #e0e0e0;
}

.gs-dish-card__variants li:last-child {
	border-bottom: none;
}

.gs-dish-card__variants strong {
	color: var(--gs-orange);
}

/* Section vidéos YouTube */
.gs-video-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 260px));
	justify-content: center;
	gap: 24px;
	margin-bottom: 36px;
}

.gs-video-card {
	position: relative;
	width: 100%;
	aspect-ratio: 9 / 16;
	border-radius: var(--gs-radius);
	overflow: hidden;
	background: #000;
	box-shadow: 0 10px 30px rgba(21, 42, 74, 0.15);
}

.gs-video-card iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* Nos cartes (un PDF par restaurant) */
.gs-menus-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 22px;
	max-width: 760px;
	margin: 0 auto;
}

.gs-menus-grid__item {
	background: var(--gs-bg-muted);
	border-radius: var(--gs-radius);
	padding: 26px 20px;
	text-align: center;
}

.gs-menus-grid__item h3 {
	color: var(--gs-navy);
	font-size: 1.1rem;
	margin-bottom: 14px;
}

/* Fenêtre modale "Commander" */
.gs-modal {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: none;
	align-items: center;
	justify-content: center;
}

.gs-modal.is-open {
	display: flex;
}

.gs-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10, 18, 32, 0.65);
}

.gs-modal__panel {
	position: relative;
	background: #fff;
	border-radius: var(--gs-radius);
	padding: 34px 28px;
	max-width: 420px;
	width: calc(100% - 32px);
	text-align: center;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.gs-modal__title {
	color: var(--gs-navy);
	font-size: 1.25rem;
	margin-bottom: 22px;
}

.gs-modal__close {
	position: absolute;
	top: 10px;
	right: 14px;
	background: none;
	border: none;
	font-size: 1.6rem;
	line-height: 1;
	cursor: pointer;
	color: var(--gs-text-light);
}

.gs-modal__buttons {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.gs-modal__city {
	font-weight: 700;
	font-size: 1rem;
}

.gs-modal__phone {
	font-size: 0.85rem;
	opacity: 0.85;
}

body.gs-modal-open {
	overflow: hidden;
}

/* Formulaire de contact */
.gs-contact-wrap {
	max-width: 640px;
}

.gs-contact-intro {
	text-align: center;
}

.gs-hp-field {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	opacity: 0;
}

.gs-contact-form {
	background: #fff;
	border-radius: var(--gs-radius);
	padding: 30px;
	border: 1px solid #ececec;
}

.gs-form-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 16px;
}

.gs-form-field {
	margin-bottom: 16px;
}

.gs-form-field label {
	display: block;
	font-weight: 600;
	font-size: 0.85rem;
	color: var(--gs-navy);
	margin-bottom: 6px;
}

.gs-form-field input,
.gs-form-field textarea {
	width: 100%;
	padding: 11px 14px;
	border: 1px solid #dde2e8;
	border-radius: 8px;
	font-family: var(--gs-font-body);
	font-size: 0.95rem;
	background: var(--gs-bg-muted);
}

.gs-form-field input:focus,
.gs-form-field textarea:focus {
	outline: 2px solid var(--gs-blue);
	outline-offset: 1px;
}

.gs-contact-form .gs-btn {
	border: none;
	cursor: pointer;
	width: 100%;
}

.gs-form-notice {
	text-align: center;
	padding: 12px 18px;
	border-radius: 10px;
	font-weight: 600;
	margin-bottom: 20px;
}

.gs-form-notice--success {
	background: #e4f6ea;
	color: #1f7a43;
}

.gs-form-notice--error {
	background: #fdeaea;
	color: #b3261e;
}

/* About */
.gs-about {
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
}

.gs-about h2 {
	font-size: 1.8rem;
	color: var(--gs-navy);
}

.gs-quote {
	margin: 24px auto 0;
	max-width: 560px;
	font-family: var(--gs-font-title);
	font-style: italic;
	font-size: 1.15rem;
	color: var(--gs-navy);
	border-left: 3px solid var(--gs-orange);
	padding-left: 18px;
	text-align: left;
}

/* Order banner */
.gs-order-banner {
	background: var(--gs-orange);
	color: #fff;
	padding: 56px 0;
	text-align: center;
}

.gs-order-banner__title {
	color: #fff;
	font-size: 1.6rem;
	max-width: 640px;
	margin: 0 auto 28px;
}

.gs-order-phones {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 18px;
}

.gs-order-phones__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #fff !important;
	text-decoration: none;
	transition: transform 0.15s ease;
}

.gs-order-phones__item:hover {
	transform: translateY(-2px);
}

.gs-order-phones__city {
	text-transform: uppercase;
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	opacity: 0.85;
	margin-bottom: 4px;
}

.gs-order-phones__number {
	font-family: var(--gs-font-title);
	font-weight: 700;
	font-size: 1.6rem;
}

.gs-order-banner__note {
	opacity: 0.9;
	margin: 0;
}

/* Locations */
.gs-locations-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 26px;
}

.gs-location-card {
	background: #fff;
	border: 1px solid #ececec;
	border-radius: var(--gs-radius);
	padding: 24px;
	text-align: center;
}

.gs-location-card__icon {
	width: 40px;
	height: 40px;
	margin: 0 auto 10px;
	color: var(--gs-orange);
}

.gs-location-card h3 {
	color: var(--gs-navy);
	font-size: 1.15rem;
}

.gs-location-card__address,
.gs-location-card__hours,
.gs-location-card__contact {
	font-size: 0.9rem;
	color: var(--gs-text-light);
	margin: 0 0 8px;
}

.gs-map {
	margin-top: 14px;
	border-radius: 10px;
	overflow: hidden;
}

/* Footer */
.gs-site-footer {
	background: var(--gs-navy);
	color: #cfd6e3;
	padding: 46px 0;
}

.gs-site-footer__inner {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 24px;
	align-items: start;
}

.gs-site-footer a {
	color: #cfd6e3;
}

.gs-site-footer a:hover {
	color: #fff;
}

.gs-footer-col--right {
	text-align: right;
}

@media (max-width: 640px) {
	.gs-footer-col--right {
		text-align: left;
	}

	.gs-hero {
		padding: 48px 0 36px;
	}

	.gs-section {
		padding: 44px 0;
	}

	.gs-topbar__inner {
		justify-content: center;
		text-align: center;
	}

	.gs-dish-card {
		flex-direction: column;
	}

	.gs-dish-card__photo {
		width: 100%;
		height: 160px;
	}
}
