/* @override 
	https://gorelkine.com/KOLAB/ARCHE/css/style.css */
	
	
	
@font-face {
    font-family:"TCCC-UnityText";
    src:url("../fonts/TCCC-UnityText-Light.woff2") format("woff2"),url("../fonts/TCCC-UnityText-Light.woff") format("woff"),url("../fonts/TCCC-UnityText-Light.ttf") format("truetype");
    font-style:normal;
    font-weight:300;
}
@font-face {
    font-family:"TCCC-UnityText";
    src:url("../fonts/TCCC-UnityText-Regular.woff2") format("woff2"),url("../fonts/TCCC-UnityText-Regular.woff") format("woff"),url("../fonts/TCCC-UnityText-Regular.ttf") format("truetype");
    font-style:normal;
    font-weight:400;
}
@font-face {
    font-family:"TCCC-UnityText";
    src:url("../fonts/TCCC-UnityText-Medium.woff2") format("woff2"),url("../fonts/TCCC-UnityText-Medium.woff") format("woff"),url("../fonts/TCCC-UnityText-Medium.ttf") format("truetype");
    font-style:normal;
    font-weight:500;
}
@font-face {
    font-family:"TCCC-UnityText";
    src:url("../fonts/TCCC-UnityText-Bold.woff2") format("woff2"),url("../fonts/TCCC-UnityText-Bold.woff") format("woff"),url("../fonts/TCCC-UnityText-Bold.ttf") format("truetype");
    font-style:normal;
    font-weight:700;
}
        

/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: TCCC-UnityText, Arial, sans-serif;
  background: #000;
  
}

/* Écran d'intro */
#intro-screen {
  position: relative;
  width: 100%;
  height: 100vh;
}
#bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#touch-message {
  position: absolute;
  bottom: 13%;
  left: 50%;
  transform: translate(-50%, -50%)!important;
  background: #CD0E18;
  color: #fff;
  padding: 1rem 3rem;
  font-size: 22px;
  border-radius: 8px;
  cursor: pointer;
  border-radius: 100px;
  text-transform: uppercase;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 1);
   transform: scale(1);
   animation: pulse 1.5s infinite ease-out;
  text-align: center;
  max-width: 450px;
  min-width: 450px;
}

#touch-message:hover {
	background: #fff;
	color: #CD0E18;
	
}


@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0px 0 rgba(255, 255, 255, 0.5);
    }

    50% {
        transform: scale(1);
        box-shadow: 0 0 10px 40px rgba(255, 255, 255, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0px 0 rgba(255, 255, 255, 0);
    }
}

/* Masquer les éléments par défaut */
.hidden {
  display: none !important;
}

/* Écran scan (fond ecran-01) */
#screen-scan {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #000 url('../images/background-min.jpg') no-repeat left top;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#lottie-container {
  position: fixed;
  width: 100%;
  height: 100%;
  margin-bottom: 20px;
  z-index: 0;
}
#lottie-offers {
  position: fixed;
  top: -250px;
  right: -200px;
  width: 600px;       /* Adjust size as needed */
  height: 600px;      /* Adjust size as needed */
  pointer-events: none;  /* So it doesn’t block clicks */
  z-index: 0;        /* Place it behind content */
}
/* Wave animation container styling */
#lottie-wave {
  position: fixed;
  bottom: 5%;
  left: 0;
  width: 100%;  /* Full width */
  height: 30vh;  /* Adjust as needed */
  z-index: 0;    /* Behind other content */
  pointer-events: none; /* So it doesn't block interactions */
  opacity: 0.3;  /* Adjust transparency as needed */
}

#scan-logo {
z-index: 1;
width: 200px;
position: absolute;
top: 40px;
}

#qr-code-icon {
	width: 70px;
	margin-bottom: 20px;
}

.scan-text-block {
  padding: 1rem 2rem;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  z-index: 1;
  font-weight: 500;
  margin-bottom: 30px;
   cursor: pointer;
}

.scan-text-block p {
	font-size: 20px!important;
	width: 200px;
}

.scan-text-block p {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.or-line {
  font-weight: bold;
  margin: 0.5rem 0;
}

/* Écran offres : fond en dégradé */
#screen-offers {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #000 url('../images/background-min.jpg') no-repeat left top;
  background-size: cover;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
#screen-offers header {
  display: flex;
  margin-bottom: 1rem;
  padding: 0 1rem;
  border-radius: 8px;
  margin-top: 20px;
  position: absolute;
  width: calc(100% - 40px);

}
#dynamic-logo {
  width: auto;
  margin-right: 1rem;

}
#dynamic-user {
  font-size: 1.3rem;
  color: #fff;
  position: absolute;
  right: 20px;
  text-align: right;
  white-space: pre-line;
}




/* Titre principal de l'écran offres */
.main-title {
  text-align: center;
  font-size: 2.4rem;
  color: #fff;
  width: 100%;
  text-transform: uppercase;
  max-width: 700px;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 50px;

}

@media (min-width: 1025px) {
	
}

/* Titres des blocs avec trait */

#offer-container {
	padding: 15px!important;
	width: calc(100% - 20px)!important;	
	margin-top: 20px!important;
	margin-bottom: 20px!important;
}
#offer-images {
	margin-bottom: 0px!important;
}
#offer-container #offer-image, #offer-container #store-plan, #offer-container #store-3d  {
  margin-bottom: 10px;
}
.offer-title {
  font-size: 1.4rem;
  font-weight: bold;
}
.offer-subtitle {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.5rem;
  font-weight: 300;
  font-style: normal;

  top: -10px;
  position: relative;
}
#offer-title:before {
	content: 'Get directions to find this offer:';
	color: #000;
	text-transform: none;
	display: block;
	margin-bottom: 5px;
}
#offer-title {
	margin-bottom: 20px;
	line-height: 1.2em!important;
	color: #dd0b1b;
}

#qr-code-title {
	font-size: 16px;
	margin-bottom: 10px;
	text-transform: uppercase;
}

/* Grille des offres sur desktop */
/* 1 bloc en portrait et 2 en paysage, chaque bloc limité à 20vw */
.offers {
 width: 100%;
 max-width: 1920px;
 height: 100%;
 text-align: center;
margin: auto;
position: relative;
}

 .offer img { max-width: 100%; border-radius: 10px;
 }

.offer {
	transition: all 0.3s ease-in-out 0s;
	background: rgba(255, 255, 255, 0.25);
	border-radius: 15px;
	padding: 10px;
	box-sizing: border-box;
	position: absolute;
	cursor: pointer;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.5);
}
.offer:hover {
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7), 0 0 40px rgba(255, 255, 255, 0.5);
	transition: all 0.3s ease-out 0s;
}

.offer .offer-title-container {
	position: absolute;
	color: #fff;
}
@media (min-width: 1025px) {

.offer:nth-child(1) .offer-title-container{
	top: calc(100% + 58px);
	right: 150px;
	text-align: right;
	
} 

.offer:nth-child(2) .offer-title-container{
	right: calc(100% + 120px);
	top: 0;
	width: inherit;
	max-width: 380px;
	text-align: right;
} 


.offer:nth-child(3) .offer-title-container{
	left: calc(100% + 120px);
	text-align: left;
	top: 115px;
	width: 150px;
} 
.offer:nth-child(3) .offer-title{
	width: 150px;
} 

.offer:nth-child(1):before {
	content: '';
	width: 54px;
	height: 88px;
	bottom: -88px;
	right: 80px;
	position: absolute;
	background: url('../images/bullet-bottom.svg') no-repeat left top;
    background-size: contain;
}
.offer:nth-child(2):before {
	content: '';
	width: 106px;
	height: 64px;
	top: 2px;
	left: -105px;
	position: absolute;
	background: url('../images/bullet-left.svg') no-repeat left top;
    background-size: contain;
}
.offer:nth-child(3):before {
	content: '';
	width: 106px;
	height: 64px;
	top: 120px;
	right: -107px;
	position: absolute;
	background: url('../images/bullet-right.svg') no-repeat left top;
    background-size: contain;
}

}



.offer:nth-child(1), .offer:nth-child(2), .offer:nth-child(3) {
	width: 500px;
 	height: 360px;
 	max-width: 500px;
 	max-height: 360px;
}



.offer:nth-child(1) {
	top: 100px;
	right: calc(60% + 100px);
}
.offer:nth-child(2) {
 	left: calc(50% + 200px);
}
.offer:nth-child(3) {
	top: 400px;
	left: calc(40%);
}

@media (max-width: 1920px) {
		
	.offer:nth-child(1) {
		right: calc(60%);
	}
	.offer:nth-child(2) {
		left: calc(50% + 200px);
	}

	.offer:nth-child(3) {
		left: calc(48% - 50px);
	}

}

@media (max-width: 1440px) {
	
		.offer {
			max-width: 45%!important;
			min-height: auto!important;
			height: auto!important;
		}
		
	.offer:nth-child(1) {
		left: 30px!important;
	}
	.offer:nth-child(2) {
		right: 30px!important;
		left: inherit;
	}

	.offer:nth-child(3) {
		left: calc(45% + 50px);
	}
	
}
@media (max-width: 1440px) and (min-width: 1025px){

.offer:nth-child(3) .offer-title{
	width: 100%;
} 


.offer:nth-child(3) .offer-title-container{
		right: calc(100% + 120px);
		left: auto;
		top: 60%;
		width: inherit;
		max-width: 160px;
		text-align: right;
} 
.offer:nth-child(3):before {
	top: 61%;
	left: -105px;
	background: url('../images/bullet-left.svg') no-repeat left top;
}
}	

@media (max-width: 1200px) {
		.offer:nth-child(3) {
		left: calc(50%);
	}
	.main-title {
		font-size: 30px;
		max-width: 500px;
			margin-top: 80px;
	}

}

/* Effet au survol */


/* Responsive : sur smartphone, empiler les blocs */
@media (max-width: 1024px) {
  .offers {
    display: flex;
	flex-direction: column;
    text-align: center;
	width: 100%;
  }
  .offer:nth-child(1), .offer:nth-child(2), .offer:nth-child(3) {
	position: relative;
	width: 100%!important;
	height: auto;
	max-width: 100%!important;
	margin-bottom: 30px;
	height: auto;
	display: block;
	left: 0!important;
	top: 0!important;
  }

	.offer .offer-title-container {
	position: relative;
	left: inherit;
	top: inherit;
	margin-bottom: 15px;
	margin-top: 10px;
}

 #dynamic-user {
 		right: 20px;
 }
 .offer {
 		max-height: inherit!important;
	}
	#screen-offers {
		padding: 30px;
	}
	#screen-offers header {
		padding-left: 0;
	}
	#screen-offers header {
		padding: 0;
		margin-top: 0;
		margin-bottom: 50px;
	}

		.offer:nth-child(3) {
		left: calc(50%);
	}
}



/* Lightbox */
/* Lightbox */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}

#lightbox-content {
  position: relative;
  background: #fff;
  color: #000;
  padding: 20px;
  max-width: 1600px;
  width: 90%;
  text-align: center;
  border-radius: 20px;
}

/* Close button styled with background image */
#close-lightbox {
  position: absolute;
  top: 15px;
  right: 20px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  background-image: url("../images/close.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}


#offer-image {
  width: 43.6%;
  margin: 0.5%;
  margin-bottom: 20px;
}
#store-3d {
  width: 48%;
  margin: 0.5%;
  margin-bottom: 20px;
}
#offer-image, #store-plan, #store-3d  {
	border-radius: 10px;
}
#qr-or-link {
  margin-top: 1rem;
  font-size: 1.2rem;
}
#qr-or-link img {
	width: 200px;
}

/* Responsive */
@media (max-width: 768px) {
  #touch-message { font-size:18px; width: 80%;  min-width: inherit;
  }
  #dynamic-user { font-size: 16px; }
  #offer-image, #store-plan { max-width: 100%; margin: 0; margin-bottom: 20px;
  }
    .main-title {
		font-size: 24px;
		max-width: 400px;
	
	}	
	#lightbox-content {
  position: relative;
  background: #fff;
  color: #000;
  padding: 2rem;
  max-width: 800px;
  width: 96%!important;
  text-align: center;
  border-radius: 20px;
  max-height: 98vh;       /* Maximum height relative to viewport */
  overflow-y: auto;       /* Enable vertical scrolling if needed */
}

/* WebKit browsers */
#lightbox-content::-webkit-scrollbar {
  width: 8px;
}

#lightbox-content::-webkit-scrollbar-track {
  background: transparent; /* Hide the track */
}

#lightbox-content::-webkit-scrollbar-thumb {
  background-color: #CD0E18;   /* Make the thumb red */
  border-radius: 4px;
}


/* Firefox */
#lightbox-content {
  scrollbar-width: thin;
  scrollbar-color: red transparent;
  padding: 15px;
  max-width: 100%!important;
  width: 100%;
}
#offer-title {
	font-size: 22px;
	line-height: 1em;
	padding-top: 10px;
}
#offer-container #offer-title {
	padding: 0px!important;
}

#offer-image, #store-plan, #store-3d  {
  width: 100%;
  margin: 0;
  margin-bottom: 12px;
}



#offer-image {
	margin: 0;
} 
#qr-or-link {
 			display: none;
 			}
#dynamic-logo {
 			max-height: 50px;
}
@media (max-width: 480px) {
  #touch-message {
  	font-size: 16px;
  	padding: 20px;
  }
 	#dynamic-logo {
 			max-width: 45%;
 		}
 	#lottie-container {
  width: 140%;
  height: 140%;
}	
#lottie-offers {
  position: fixed;
  top: -170px;
  right: -130px;
  width: 400px;       /* Adjust size as needed */
  height: 400px;      /* Adjust size as needed */
}
#close-lightbox {
  position: absolute;
  top: 15px;
  right: 15px;
}
#offer-title {
	padding: 0 20px;
	font-size: 20px;
}
#screen-offers {
		padding: 20px;
	}
	 .main-title {
		font-size: 20px;
		margin-bottom: 30px;
	}	
	.offer-title {
  font-size: 1.2rem;
}
.offer-subtitle {
	font-size: 0.8rem;
	margin: 0;
	}
.offer .offer-title-container {
	margin-bottom: 5px;
	margin-top: 0px;
}
 #dynamic-user {
 		right: 0px;
 		font-size: 16px;
 		max-width: 50%;
 }
	#offer-container #offer-image, #offer-container #store-plan, #offer-container #store-3d  {
  margin-bottom: 0px;
}
}


