html {
	box-sizing: border-box;
}

* {
	box-sizing: inherit;
}

body,
html {
	height: 100%;
}

body {
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('../images/bg.jpg');
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	font-family: 'Open Sans', sans-serif;
	margin: 0;
	position: relative;
	color: white;
}

.highlight {
	color: #ff303c;
}

/* Content */
.content-wrap {
	margin: 20px auto 40px auto;
	max-width: 700px;
	padding: 0 15px;
	text-align: center;
}

/* Logo Animation */
.logo-container img {
	max-width: 250px;
	animation: logo-zoom 2s ease-out;
}

@keyframes logo-zoom {
	0% {
		transform: scale(0.8);
		opacity: 0;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

/* Title Animation */
.animate-title {
	font-size: 58px;
	font-weight: 800;
	text-shadow: 0 5px 10px rgba(0, 0, 0, 0.7);
	animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
		transform: translateY(-50px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.cta-box p {
	color: #fff;
	font-size: 20px;
	margin-top: 20px;
}

/* Social Icons */
.social-icons {
	margin-top: 20px;
	display: flex;
	justify-content: center;
	gap: 20px;
}

.social-icons a img {
	width: 35px; /* Réduit à 70% */
	height: 35px; /* Réduit à 70% */
	border-radius: 50%;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icons a img:hover {
	transform: scale(1.2);
	box-shadow: 0 0 15px rgba(255, 48, 60, 0.5);
}

/* Contact Details */
.contact-details {
	margin-top: 20px;
	color: #fff;
	font-size: 18px;
	animation: slideIn 2s ease-out;
}

@keyframes slideIn {
	0% {
		transform: translateX(-100%);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

.contact-details p {
	margin: 10px 0;
}

.contact-details a {
	color: #ff303c;
	text-decoration: none;
	font-weight: bold;
}

.contact-details a:hover {
	text-decoration: underline;
}

/* Countdown */
.countdown {
	color: #fff;
	margin-top: 40px;
}

.timer-cta {
	font-size: 18px;
}

.countdown ul {
	margin-top: 20px;
	padding-left: 0;
}

.countdown ul li {
	background: rgba(230, 230, 230, 0.12);
	border-radius: 100%;
	display: inline-block;
	height: 100px;
	list-style: none;
	position: relative;
	text-align: center;
	margin-right: 15px;
	width: 100px;
	animation: bounceIn 1s ease-out;
}

@keyframes bounceIn {
	0% {
		transform: scale(0);
		opacity: 0;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

.time-box {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.time {
	font-size: 32px;
	font-weight: 800;
}

.time-txt {
	display: block;
	font-size: 12px;
}

/* Responsive Design */
@media screen and (max-width: 767px) {
	.content-wrap {
		width: 100%;
	}

	.cta-box h1 {
		font-size: 32px;
	}

	.cta-box p {
		font-size: 17px;
	}

	.time {
		font-size: 22px;
	}

	.countdown ul li {
		height: 75px;
		width: 75px;
	}

	.social-icons a img {
		width: 30px; /* Réduit davantage pour les écrans petits */
		height: 30px;
	}
}
