body {
	background-color: --color-second-light;
	margin: auto;
	font-family: var(--theme-font-family);
	font-weight: var(--font-weight-normal);
}


/**
* HEADER
*/
#header-logo {

	margin: 0;
	background-repeat: no-repeat;
	/*background: transparent url('images/geneva_logo.png') 0% 0% no-repeat padding-box;*/
	background-size: contain;
	background-position: center 0;
	height: 200px;
}

.header-body {
	display: var(--page-header);
	width: 65vw;
	min-width: 800px;
	margin: auto;
	flex-direction: column;
	flex-wrap: nowrap;
}

.header-body-element {
	margin: 10px;
	/*line-height: 75px;
  font-size: 30px;*/
}

.header-title {
	/* display: var(--card-image-title-header); */
	width: 45vw;
	min-width: 600px;
	letter-spacing: var(--character-spacing-0);
	color: var(--color-main);
	text-align: left;
	opacity: 1;
	font-size: var(--font-size-45);
	font-family: var(--theme-font-family-light);
	font-weight: var(--font-weight-light);
	line-height: var(--line-spacing-55);
	font-style: var(--font-style-normal);
	font-variant: normal;

}

.lang-card {
	display: flex;
	flex-direction: row;
}

.lang-card-element {
	width: 50%;
	min-width: 350px;
}

.inline-lang-button {
	cursor: pointer;
}

#card-and-discount {
	/* display: var(--card-image-title-header); */
	background-repeat: no-repeat;
	height: 130px;
	background-size: contain;
}


.menu-lang-button {
	width: 100px;
	height: 32px;
	background-color: white;
	border: 1px solid #dddddd;
	border-radius: 7px;
	text-align: center;
	font-size: 20px;
	font-family: var(--theme-font-family-medium);
	font-weight: var(--font-weight-medium);
	position: relative;
	display: inline-block;

}

.menu-lang-button:hover .menu-lang-content {
	display: block;
	/*background-color:  #F6F6F6;*/
}


.menu-lang-content {
	width: 100%;
	display: none;
	position: absolute;
	border: 1px solid #dddddd;
	background-color: white;
	border-radius: 7px;
	text-align: center;
	z-index: 1;
	top: 30px;
	left: 0px;

}

.menu-lang-content a {
	display: block;
	font-size: var(--font-size-14);
	line-height: var(--line-spacing-20);
	font-family: var(--theme-font-family-medium);
	font-weight: var(--font-weight-medium);
	text-decoration: none;
	display: block;
	color: var(--color-dark-grey);
	padding: 12px 16px;
	border-bottom: 1px solid #DDDDDD;
}

.menu-lang-button:hover .menu-lang-content,
.menu-lang-button[aria-expanded="true"] .menu-lang-content {
  display: block; /* Desktop hover + mobile state */
}
.menu-lang-content a:last-child {

	border-bottom: 0px;
}

.menu-lang-content a:hover {
	background-color: #f1f1f1;
	font-family: var(--theme-font-family-medium);
	font-weight: var(--font-weight-medium);
}

.inline-lang-selector .active {
	font: normal normal bold 18px/27px Poppins !important;
	letter-spacing: 0px;
	color: #000000 !important;
	text-transform: uppercase;
}

.inline-lang-selector .inline-lang-button {
	font: normal normal bold 18px/27px Poppins;
	letter-spacing: 0px;
	color: #C0C0C0;
	text-transform: uppercase;
}

.inline-lang-separator {
	display: inline-block;
	width: 3px;
	height: 15px;
	background-color: currentColor;
	margin: 0 8px;
	vertical-align: middle;
	color: #C0C0C0;
}



/**
* =====================================
* Content Home Page
* =====================================
* */


#content {
	width: 100%;
	background-color: var(--color-second-light);

	left: 0;
}

.body-content {
	display: flex;
	margin: auto;
	padding-top: 10px;
	padding-bottom: 10px;
}


.body-content .home-content {
	width: 60vw;
	display: flex;
  	justify-content: space-between; 	
  	align-items: flex-start;
	gap: 20px;
}

/**
* =====================================
* Footer
* =====================================
* */

#footer {
	margin: auto;
	width: 55vw;
	color: var(--color-dark-grey);
	font-family: var(--theme-font-family);
	font-weight: var(--font-weight-normal);
	font-size: var(--font-size-14);
	line-height: var(--line-spacing-20);
	margin-bottom: 20px;
	padding-top: 30px;
	padding-bottom: 30px;

}

#footer-note {
	font-weight: bold;
}

#footer a {
	color: var(--color-dark-grey);
	text-decoration: underline;
}

#footer img {
	margin-top: 30px;
}


#footer-copyright {
	display: flex;
	justify-content: space-between;
}

#footer-copyright a {
	text-decoration: none;
	color: #000000;
}

.error-banner
{
	background-color: rgb(248, 135, 135);
	color: #ffffff;
	padding: 10px;
	box-sizing: border-box;
	border-radius: 8px;
	border: 1px solid rgb(177, 55, 55);
	margin-bottom: 20px;
}


.info-panel {
  max-width: 520px;
  width: 30rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
  overflow: hidden; 
 margin: 20px 0;

}

.info-panel .action-button {  
  max-width: 15rem;
}

/* Container droite */
.guest-form {
  max-width: 520px;
  margin: 20px 0;
  padding: 0; 
  width: 30rem;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden; /
}

.guest-form__title {
  padding: 20px 30px;
  font-weight: 700;
  font-family: var(--theme-font-family-bold, sans-serif);
  color: #FFFFFF;
  line-height: 1.2;
  text-align: left; 
  background-color: var(--color-card-header, #2b2b2b); 
  margin: 0;
  border-radius: 0; 
}
/* Bloc champs */
.guest-form__fields {
  padding: 0 30px 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Inputs */
.guest-input {
  height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid #e2e2e2;
  font-size: 14px;
  outline: none;
  transition: all 0.2s ease;
  background: #f9f9f9;
}

.guest-input:focus {
  border-color: var(--color-button-primary, #A71F2D);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(167, 31, 45, 0.15);
}

.guest-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  color: #333;
}

.guest-select option[value=""] {
  color: #999;
}

.action-button {
  background-color: var(--color-button-primary, #A71F2D);
  color: white;
  height: 42px;
  border-radius: 50px;
  font-family: var(--theme-font-family-bold, "linotype-tradegothiclt-bold"), sans-serif;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
}

.action-button:hover:not(:disabled) {
  opacity: 0.85;
  filter: brightness(1.1);
}

.disabled-action-button {
  background-color: var(--color-disable-button, #A8A8A8);
  color: white;
  height: 42px;
  border-radius: 50px;
  font-family: var(--theme-font-family-bold, "linotype-tradegothiclt-bold"), sans-serif;
  font-size: 16px;
  border: none;
  cursor: not-allowed;
  opacity: 0.6;
  width: 100%;
  transition: all 0.2s ease;
}


/* Coupon affiché */
.guest-form__coupon {
  text-align: center;
  font-size: 14px;
  color: #333;
  margin-top: 10px;
}

/**
* =====================================
* Establishment Selector
* =====================================
*/

.establishment-selector {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.establishment-selector__title {
	font-family: var(--theme-font-family-bold, sans-serif);
	font-size: 16px;
	color: var(--color-main, #000);
	margin: 0;
}

.establishment-selector__list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.establishment-card {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 16px 20px;
	background: #f9f9f9;
	border: 1px solid #e2e2e2;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.2s ease;
	text-align: left;
	width: 100%;
}

.establishment-card:hover {
	border-color: var(--color-button-primary, #A71F2D);
	background: #ffffff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.establishment-card__name {
	font-family: var(--theme-font-family-bold, sans-serif);
	font-size: 15px;
	color: var(--color-main, #000);
}

.establishment-card__id {
	font-family: var(--theme-font-family, sans-serif);
	font-size: 13px;
	color: var(--color-dark-grey, #615f5f);
}

.establishment-selector__back {
	background: none;
	border: none;
	cursor: pointer;
	font-family: var(--theme-font-family-bold, sans-serif);
	font-size: 14px;
	color: var(--color-button-primary, #A71F2D);
	padding: 8px 0;
	text-align: left;
	transition: opacity 0.2s ease;
}

.establishment-selector__back:hover {
	opacity: 0.7;
}

/**
* =====================================
* Maintenance Banner
* =====================================
*/

.maintenance-banner {
	max-width: 520px;
	margin: 20px 0;
	padding: 40px 30px;
	width: 30rem;
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	text-align: center;
}

.maintenance-banner__icon {
	font-size: 48px;
	line-height: 1;
}

.maintenance-banner__title {
	font-family: var(--theme-font-family-bold, sans-serif);
	font-size: 20px;
	color: var(--color-main, #000);
	margin: 0;
}

.maintenance-banner__message {
	font-family: var(--theme-font-family, sans-serif);
	font-size: 15px;
	color: var(--color-dark-grey, #615f5f);
	line-height: 1.5;
	margin: 0;
}


