:root {
	--gold: #daaf5a;
	--gold-dark: #b08c3e;
	--dark: #121212;
	--darker: #0a0a0a;
	--light: #ffffff;
	--gray: #2d2d2d;
	--light-gray: #aaaaaa;
}

body {
	font-family: "Montserrat", sans-serif;
	line-height: 1.6;
	margin: 0;
	padding: 0;
	background-color: var(--dark);
	color: var(--light);
	overflow-x: hidden;
}

/* CSS */
.hero-header {
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 0 20px;
	position: relative;
	border-bottom: 3px solid var(--gold);
	overflow: hidden;
	/* Cache les débordements de la vidéo */
}

.hero-header video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: -1;
	/* Place la vidéo en arrière-plan */
	object-fit: cover;
	/* Couvre toute la zone */
	/* Diminuer la vitesse de la vide */
	animation: slowMotion 7s infinite alternate;
}

@keyframes slowMotion { 
	0% {
		transform: translate(-50%, -50%) scale(1);
	}
	
	100% {
		transform: translate(-50%,-50%)
		scale(1.1);
	}
}

/* Overlay sombre */
.hero-header::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: -1;
}

.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	padding: 25px 0%;
	z-index: 100;
	transition: all 0.3s;
}

.logo {
	font-size: 28px;
	font-weight: 800;
	color: var(--gold);
	text-decoration: none;
	letter-spacing: 2px;
}

.nav-links {
	display: flex;
	list-style: none;
}

.nav-links li {
	margin-left: 30px;
}

.nav-links a {
	color: var(--light);
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	transition: color 0.3s;
	position: relative;
}

.nav-links a:after {
	content: "";
	position: absolute;
	width: 0;
	height: 2px;
	background: var(--gold);
	bottom: -5px;
	left: 0;
	transition: width 0.3s;
}

.nav-links a:hover {
	color: var(--gold);
}

.login-pc,.login-admin-pc,.login-phone, .login-admin-phone{
		border-radius:unset !important;
	}
	
.login-admin-pc, .login-admin-phone{
	background-color: transparent !important;
    color: var(--gold) !important;
    border: 2px solid var(--gold) !important;
}

.login-admin-pc:hover, .login-admin-phone:hover{
	background-color: var(--gold) !important;
    color: var(--dark) !important;
    border: 2px solid var(--gold) !important;
}

.nav-links a:hover:after {
	width: 100%;
}

.book {
	color: var(--light);
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	transition: color 0.3s;
	position: relative;
}

.hero-content {
	max-width: 800px;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 800;
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: var(--light);
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-title span {
	color: var(--gold);
}

.hero-subtitle {
	font-size: 1.2rem;
	margin-bottom: 30px;
	color: var(--light-gray);
}

.cta-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
}

.btn {
	padding: 12px 30px;
	border-radius: 30px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s;
	text-decoration: none;
	display: inline-block;
}

.btn-primary {
	background-color: var(--gold);
	color: var(--dark);
	border: 2px solid var(--gold);
}

.btn-primary:hover {
	background-color: transparent;
	color: var(--gold);
}

.btn-outline {
	border: 2px solid var(--light);
	color: var(--light);
}

.btn-outline:hover {
	background-color: var(--light);
	color: var(--dark);
}

/* Fòm Kontak */
.contact-container {
	background-color: var(--darker);
	padding: 80px 5%;
	/* margin: -80px auto 50px; */
	border-radius: 10px;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
	position: relative;
	z-index: 10;
	max-width: 1200px;
	border-top: 3px solid var(--gold);
}

.contact-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}

.contact-container .section-title {
	text-align: center;
}

.form-section, .map-section {
	flex: 1;
	min-width: 300px;
}

.form-group {
	/* margin-bottom: 10px; */
	
}

label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: var(--light);
}

input, textarea {
	width: 92%;
	padding: 12px;
	border: 1px solid var(--gray);
	border-radius: 6px;
	background-color: var(--gray);
	color: var(--light);
	transition: border 0.3s;
}

input:focus, textarea:focus {
	border-color: var(--gold);
	outline: none;
}

textarea {
	height: 140px;
	resize: vertical;
}

.submit-btn {
	background-color: var(--gold);
	color: var(--dark);
	padding: 14px;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s;
}

.book.btn.btn-primary {
	padding: 1px 7px !important;
	font-size:10px;
}

.submit-btn:hover {
	background-color: var(--gold-dark);
}

/* Seksyon Servis */
.services-section {
	padding: 80px 5%;
	text-align: center;
	/* margin-bottom: 120px; */
	background-color: var(--darker);
}

.section-title {
	font-size: 2.5rem;
	margin-bottom: 50px;
	color: var(--gold);
	position: relative;
}

.section-title:after {
	content: "";
	position: absolute;
	width: 100px;
	height: 3px;
	background: var(--gold);
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.service-card {
	background: var(--gray);
	padding: 30px;
	border-radius: 10px;
	transition: transform 0.3s;
	border-bottom: 3px solid var(--gold);
}

.service-card:hover {
	transform: translateY(-10px);
}

.service-icon {
	font-size: 50px;
	color: var(--gold);
	margin-bottom: 20px;
}

/* Footer */
footer {
	background-color: var(--dark);
	padding: 50px 5%;
	text-align: center;
	/* border-top: 3px solid var(--gold); */
}

/* ABOUT US */
.about-section {
	background-color: var(--dark);
	color: var(--light);
	padding: 80px 5%;
}

.about-section .section-title {
	text-align: center;
}

.about-content {
	max-width: 1000px;
	margin: 0 auto;
}

.about-intro {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--gold);
	margin-bottom: 40px;
	text-align: center;
}

.about-block {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 40px;
}

.about-block h3 {
	color: var(--gold);
	font-size: 1.2rem;
	margin-bottom: 10px;
}

.about-block p, .about-block ul {
	color: var(--light-gray);
	font-size: 1rem;
	line-height: 1.7;
	margin: 0;
}

.about-block ul {
	padding-left: 18px;
	list-style-type: disc;
}

.icon {
	font-size: 28px;
	color: var(--gold);
	margin-top: 6px;
	min-width: 30px;
}

.about-closing {
	margin-top: 50px;
	text-align: center;
	font-style: italic;
	color: var(--light);
	font-weight: 500;
	line-height: 1.6;
}

/* ABOUUT END */
.footer-logo {
	font-size: 2rem;
	font-weight: 800;
	color: var(--gold);
	margin-bottom: 20px;
	display: block;
	letter-spacing: 2px;
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin: 20px 0;
}

.social-links a {
	color: var(--light);
	font-size: 1.5rem;
	transition: color 0.3s;
}

.social-links a:hover {
	color: var(--gold);
}

.copyright {
	color: var(--light-gray);
	margin-top: 30px;
}

/* MODAL START */
/* La modale (cachée par défaut) */
.modal {
	display: none;
	position: fixed;
	z-index: 100;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.7);
}

input, textarea {
	background: var(--light) !important;
}

/* Contenu de la modale */
.modal-content {
	background-color: var(--light);
	margin: 5% auto;
	/* padding: 30px; */
	/* border: 1px solid #ddd; */
	width: 80%;
	max-width: 800px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	border-radius: 8px;
	position: relative;
}

/* Style du formulaire */
.reservation-form {
	background-color: var(--light);
	padding: 10px 10px;
	margin: 30px auto !important;
	display: flex;
	flex-direction: column;
	max-width: 400px;
	gap: 10px;
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-group label {
	margin-bottom: 8px;
	font-weight: 600;
	color: var(--gray);
	font-size: 13px;
}

.contact-container .form-group label {
	color: var(--light);
}

.contact-container .form-group {
	margin-bottom: 10px;
}

.form-group select {
	width: 95%;
}

.form-group input, .form-group select, .form-group textarea {
	padding: 5px;
	border: 1px solid var(--light-gray);
	border-radius: 4px;
	color: var(--dark) !important;
	font-size: 12px;
	margin: 0 auto;
}

.contact-container .form-group input, .contact-container .form-group select,
	.contact-container .form-group textarea {
	padding: 10px;
}

.form-group textarea {
	height: 100px;
	resize: vertical;
}

.submit-btn {
	background-color: var(--gold);
	color: var(--light);
	border: none;
	padding: 12px;
	font-size: 16px;
	cursor: pointer;
	border-radius: 4px;
	transition: background-color 0.3s;
	margin-top: 10px;
}

.submit-btn:hover {
	background-color: var(--gold-dark);
}

/* Titre de la modale */
.modal-title {
	text-align: left;
	color: var(--gold);
	/* margin-bottom: 30px; */
	/* margin-left: 20px; */
	padding: 10px;
	font-size: 16px;
	font-weight: 700;
}

.modal-subtitle {
	text-align: center;
	color: var(--gray);
	font-size: 14px;
	margin: 5px;
}

/* Bouton fermer */
.close {
	color: #aaa;
	position: absolute;
	right: 20px;
	top: 10px;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
}

.close:hover {
	color: #333;
}

/* Note de réservation */
.reservation-note {
	font-size: 14px;
	color: var(--gray);
	margin-top: 20px;
	text-align: left;
	font-style: italic;
}

.reservation-form-container {
	background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
		url("../image/69food.jpg") no-repeat center center/cover;
	padding: 20px 20px;
}

/* Menu déroulant */
.menu-section {
	margin-top: 20px;
}

.menu-title {
	color: #8b4513;
	font-weight: 600;
	margin-bottom: 10px;
	border-bottom: 1px solid #ddd;
	padding-bottom: 5px;
}

.confirm-booking {
	padding: 10px;
	display: flex;
	justify-content: space-around;
}

/* MODAL END */

/* Responsive */
@media ( max-width : 768px) {
	.hero-title {
		font-size: 2.5rem;
	}
	.navbar {
		padding: 20px 5%;
	}
	.nav-links {
		display: none;
	}
	.contact-container {
		margin-top: -50px;
	}
}

@media ( max-width : 610px) {
	.cta-buttons {
		display: block;
	}
	.hero-content {
		margin-top: 95px;
	}
	.cta-buttons .btn {
		margin-bottom: 30px;
	}
	.confirm-booking {
		display: block;
	}
}

.menu-toggle {
	display: none;
	font-size: 28px;
	color: var(--light);
	cursor: pointer;
	z-index: 1001;
}

.mobile-nav-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	display: none;
	z-index: 998;
}

.mobile-nav {
	position: fixed;
	top: 0;
	left: -300px;
	width: 250px;
	height: 100%;
	background-color: var(--dark);
	z-index: 999;
	transition: left 0.3s ease;
	padding: 60px 20px 20px 20px;
	box-shadow: 2px 0 10px rgba(0, 0, 0, 0.4);
}

.mobile-nav.show {
	left: 0;
}

.mobile-nav-header {
	position: absolute;
	top: 10px;
	right: 10px;
}

.close-mobile-nav {
	font-size: 24px;
	color: var(--light);
	cursor: pointer;
}

.mobile-nav ul {
	list-style: none;
	padding: 0;
	margin-top: 30px;
}

.mobile-nav li {
	margin-bottom: 20px;
}

.mobile-nav a {
	color: var(--light);
	text-decoration: none;
	font-size: 18px;
	font-weight: 600;
}

/* MODAL CONTAINER */
.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
}

/* LOGIN BOX */
.login-box {
	background: var(--dark);
	color: var(--gold);
	width: 354px;
	padding: 45px 30px;
	border-radius: 8px;
	box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.6);
	position: relative;
	margin: 100px auto;
	text-align: center;
	font-family: 'Montserrat', sans-serif;
}

.login-icon {
	width: 90px;
	height: 90px;
	background-color: var(--dark);
	border-radius: 50%;
	margin: -60px auto 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.login-box h2 {
	font-size: 16px;
	margin-bottom: 20px;
	font-weight: 400;
}

.input-group {
	position: relative;
	margin-bottom: 15px;
}

.input-group input {
	width: 100%;
	padding: 10px 35px 10px 10px;
	border: none;
	border-radius: 4px;
	background: var(--gold);
	color: var(--dark);
	font-size: 14px;
}

.input-group i {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--gold);
}

.login-btn {
	background: transparent;
	color: #ecf0f1;
	border: 1px solid #ecf0f1;
	padding: 10px;
	border-radius: 4px;
	width: 100%;
	cursor: pointer;
	transition: 0.3s;
}

.login-btn:hover {
	background-color: var(--gold);
	border-color: var(--gold);
	color: #fff;
}

.login-options {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	margin-top: 10px;
	color: #bdc3c7;
}

.login-options a {
	color: var(--gold);
	text-decoration: none;
}

.register-link {
	text-align: left;
	margin-top: 20px;
	font-size: 13px;
	color: #bdc3c7;
}

.register-link a {
	color: var(--gold);
	text-decoration: underline;
	margin-left: 5px;
}

.register-link a:hover {
	text-decoration: none;
	color: var(--gold-dark)
}

/* Close bouton */
.close {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 24px;
	font-weight: bold;
	color: var(--gold);
	cursor: pointer;
	z-index: 100;
}

.close:hover {
	color: var(--gold-dark);
}

/* CSS POUR LES MESSAGES */
.toast-message {
	position: fixed;
	top: 100px;
	right: 20px;
	background-color: var(--dark);
	color: var(--gold);
	padding: 16px 24px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	z-index: 9999;
	display: flex;
	align-items: center;
	gap: 16px;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast-message.hidden {
	opacity: 0;
	transform: translateX(100%);
	pointer-events: none;
}

.toast-close {
	cursor: pointer;
	font-weight: bold;
}

/* Responsive */
@media ( max-width : 768px) {
	.navbar{
		justify-content: space-between !important;
	}
	.nav-links {
		display: none;
	}
	.login-pc,.login-admin-pc {
		display: none;
	}
	.menu-toggle {
		display: block;
	}
	#cart-icon-pc{
		display:none;
	}
	.icon-phone{
		display: flex !important;
	}
}

@media ( max-width : 768px) {
	.nav-links {
		display: none;
	}
	.menu-toggle {
		display: block;
	}
	.user-menu.pc {
		display: none !important;
	}
	
}


/* DROPDOWN MENU */
.user-menu {
	position: relative;
	display: flex;
	align-items: center;
	/*   margin-left: auto; */
}

.user-toggle {
	display: flex;
	align-items: center;
	/* background-color: var(--dark); */
	color: var(--light);
	padding: 6px 10px;
	border-radius: 25px;
	cursor: pointer;
	transition: background-color 0.3s;
}

.user-toggle:hover {
	background-color: #2c2c2c;
}

.user-name {
	margin-right: 10px;
	font-weight: 500;
	color: #f1f1f1;
}

.user-avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	object-fit: cover;
	margin-right: 6px;
}

.user-dropdown {
	display: none;
	position: absolute;
	top: 45px;
	right: 0;
	background-color: #111;
	border-radius: 10px;
	min-width: 200px;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
	z-index: 1000;
}

.user-dropdown a {
	display: flex;
	align-items: center;
	padding: 10px 16px;
	color: #ddd;
	text-decoration: none;
	transition: background-color 0.3s;
}

.user-dropdown a i {
	margin-right: 10px;
}

.user-dropdown a:hover {
	background-color: #222;
}

.user-dropdown .logout {
	color: var(--gold);
}

.divider {
	height: 1px;
	background-color: #333;
	margin: 5px 0;
}

.user-menu:hover .user-dropdown {
	display: block;
}