@charset "utf-8";
body {
	background: linear-gradient(180deg, #1e0f06 0%, #6f4a2d 70%, #8b5d3e 100%);
	color: #f0e4d0;
	font-family: 'Open Sans', sans-serif;
}
a {
	color: rgb(218, 186, 103);
}
.navbar-brand {
	max-width: 300px;
	margin-bottom: -20px;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	font-family: 'Bodoni Moda', serif;
}
#sun {
	width: 50px !important;
	animation: rotateSun 10s linear infinite;
	margin-top: 10px;
}

@keyframes rotateSun {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.question-step {
    opacity: 0;
    transition: opacity 0.4s ease-out;
    display: none;
		min-height: 436px;
}

.question-step.active {
    opacity: 1;
    display: block;
}
.progress {
	background-color: #120802;
	height: 25px;
	border-radius: 20px;
}
.progress-bar {
    font-size: 1rem;
    transition: background 0.5s ease-in-out, width 0.4s ease-in-out;
}
.final-step {
    animation: pulseEffect 1.5s infinite alternate ease-in-out;
    box-shadow: 0 0 15px rgba(42, 122, 51, 0.7);
}
.shake-text {
    animation: shakeText 0.8s infinite ease-in-out;
}

@keyframes pulseEffect {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}
@keyframes shakeText {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    50% { transform: translateX(2px); }
    75% { transform: translateX(-2px); }
}
.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    top: -10px;
    opacity: 0.7;
    animation: fall linear forwards;
}

@keyframes fall {
    to { transform: translateY(100vh) rotate(360deg); opacity: 0; }
}
.card {
	background: rgb(18, 8, 2);
	padding: 50px;
	border-radius: 60px 20px 50px 40px / 40px 30px 60px 50px;
	border: 1px solid rgba(255, 241, 218, 0.06);
	box-shadow: 0 0 40px rgba(203, 172, 113, 0.05);
	backdrop-filter: blur(8px);
	transition: all 0.3s ease;
	color: #f5f1e6;
}
.card::after {
	content: "";
	position: absolute;
	top: -5px;
	left: 50%;
	width: 100px;
	height: 60px;
	background: url("../img/deco2.webp") center/cover no-repeat;
	opacity: 0.85;
	background-size: 100%;
	margin-left: -50px;
}
.card.review-card {
	padding: 30px;
}
.card.review-card::after {
	display:none;
}
.deco {
	width: 150px !important;
}
.deco2 {
	width: 65px !important;
}
#fixed-background::before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: url('../img/bg.webp') no-repeat center top;
	background-size: cover;
	z-index: -1;
	opacity: .05;
}
@keyframes pulseRotate {
  0% {
    transform: scale(1) rotate(0deg);
    box-shadow: 0 0 5px rgba(215, 159, 118, 0.4);
  }
  50% {
    transform: scale(1.05) rotate(3deg);
    box-shadow: 0 0 15px rgba(215, 159, 118, 0.6);
  }
  100% {
    transform: scale(1) rotate(0deg);
    box-shadow: 0 0 5px rgba(215, 159, 118, 0.4);
  }
}
.circle-icon {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 10px;
	position: relative;
	background: radial-gradient(circle at center, #ffebaf 0%, #6b4f33 100%);
	animation: pulseRotate 6s infinite ease-in-out;
	box-shadow: 0 0 25px rgba(190, 164, 94, 0.25);
	transition: all 0.3s ease;
	border: 2px solid #29170a;
}
.circle-icon i {
	font-size: 2rem;
	color: #120802;
	z-index: 2;
	position: relative;
}
.circle-icon:hover {
  transform: translateY(-3px) !important;
  background: radial-gradient(circle at center, #f0e4d0 0%, #6b4f33 100%);
  box-shadow: 0 0 35px rgba(190, 164, 94, 0.4);
}

.text-primary {
	color: #ffdaaf !important;
}
.text-success {
	color: #2a7839 !important;
}
.text-danger {
	color: #f84264 !important;
}
.text-warning {
	color: rgb(191, 167, 96) !important;
}
.text-dark {
	color: rgb(18, 8, 2) !important;
}
.porteur {
	width: 550px !important;
	margin: 0 auto;
	display: block;
}
.btn-primary {
	background: linear-gradient(120deg, #eddba5 0%, #816646 100%) !important;
	color: #120802 !important;
	border: none !important;
	border-radius: 30px !important;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0.5px;
	padding: 12px 24px;
	position: relative;
	overflow: hidden;
	transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease-in-out;
	box-shadow: 0 0 18px rgba(190, 164, 94, 0.15);
}
.btn-primary:hover {
  transform: translateY(-3px) !important;
  background: radial-gradient(circle at center, #f0e4d0 0%, #6b4f33 100%);
  box-shadow: 0 0 35px rgba(190, 164, 94, 0.4);
}
@keyframes hourglassFlipContinuous {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); } 
  51% { transform: rotate(180deg); } 
  100% { transform: rotate(360deg); }
}

.hourglass-animated {
  display: inline-block;
  animation: hourglassFlipContinuous 3s infinite ease-in-out;
}
.line {
	position: absolute;
	top: 40px;
	left: 0;
	width: 100%;
	height: 2px;
	background: repeating-linear-gradient( to right, #a79a7f, #c6b591 10px, transparent 10px, transparent 20px );
}
.losange-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  color: #120802;
  font-size: 24px;
  font-weight: bold;
  transform: rotate(45deg);
  position: relative;
  background: radial-gradient(circle at center, #f9e8b0 0%, #6b4f33 100%);
  border: 2px solid #29170a;
  box-shadow: 0 0 18px rgba(190, 164, 94, 0.15);
  transition: all 0.3s ease;
}

.losange-icon span {
  transform: rotate(-45deg);
  display: block;
  position: relative;
  z-index: 2;
}
@keyframes hourglassFlipContinuous {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); }
  51% { transform: rotate(180deg); }
  100% { transform: rotate(360deg); }
}

.hourglass-animated {
  display: inline-block;
  animation: hourglassFlipContinuous 3s infinite ease-in-out;
}
.accordion-item {
	background-color: rgb(18, 8, 2);
	padding: 10px;
	border-radius: 40px 80px 40px 80px / 50px 100px 50px 100px !important;
	border: 0;
}
.accordion-item .accordion-button {
	background: transparent;
	color: #fff;
	font-family: 'Open Sans', sans-serif;
	min-height:71px;
}
.accordion-button::after {
  filter: invert(1);
}
.accordion-button:not(.collapsed) {
	box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 #4c3529;
}

footer, footer a {
	color: #fff;opacity:.75;
}
.gift {
	max-width: 400px;
}
.popover {
  z-index: 1050 !important;
  max-width: 250px;
}
.popover-arrow {
  display: block !important;
}
.popover-header {
	color: #000;
}
.form-check-input:checked {
	background-color: #187f52;
	border-color: #187f52;
}

@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 856px;
  }
}
@media (max-width: 991px) {
.navbar-brand {
	max-width: 200px;
}
.lead {
	font-size: 1.15rem;
	line-height: 1.2;
}
.h1, h1 {
	font-size: calc(1.375rem + 2vw);
	line-height: 1.1;
}
.card {
	padding: 30px;
}
.card::after {
	top: -20px;
	width: 15px;
	margin-left: -7.5px;
}
.line {
	display: none;
}
.question-step {
	min-height: 423px;
}
.form-select-lg {
	padding-right: 0;
	padding-left: .5rem;
	background-position: right .25rem center !important;
}
.navbar {
	margin-top: -10px !important;
}
#sun {
	width: 40px !important;
}
}
