* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Arial', sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #f8f9fa;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header */
header {
	background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
	color: white;
	padding: 1rem 0;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.8rem;
	font-weight: bold;
}

.contact-info {
	text-align: right;
	font-size: 0.9rem;
}

/* Navigation */
nav {
	background: #fff;
	padding: 1rem 0;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 2rem;
	justify-content: center;
}

.nav-links a {
	color: #333;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.nav-links a:hover {
	color: #2a5298;
}

/* Breadcrumb */
.breadcrumb {
	background: #e9ecef;
	padding: 1rem 0;
	font-size: 0.9rem;
}

.breadcrumb a {
	color: #2a5298;
	text-decoration: none;
}

/* Main Content */
.main-content {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 2rem;
	padding: 2rem 0;
}

.content-left {
	background: white;
	padding: 2rem;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.content-right {
	background: white;
	padding: 2rem;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	height: fit-content;
}

.page-title {
	color: #2a5298;
	font-size: 2.2rem;
	margin-bottom: 1.5rem;
	border-bottom: 3px solid #2a5298;
	padding-bottom: 0.5rem;
}

.cruise-image {
	width: 100%;
	height: 300px;
	background: linear-gradient(45deg, #1e3c72, #2a5298);
	border-radius: 8px;
	margin-bottom: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.2rem;
}

.description {
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 2rem;
}

.highlights {
	background: #f8f9fa;
	padding: 1.5rem;
	border-radius: 8px;
	margin-bottom: 2rem;
}

.highlights h3 {
	color: #2a5298;
	margin-bottom: 1rem;
}

.highlights ul {
	list-style: none;
	padding-left: 0;
}

.highlights li {
	padding: 0.5rem 0;
	position: relative;
	padding-left: 1.5rem;
}

.highlights li:before {
	content: '⚓';
	position: absolute;
	left: 0;
	color: #2a5298;
}

/* Booking Section */
.booking-section {
	background: linear-gradient(135deg, #2a5298, #1e3c72);
	color: white;
	padding: 2rem;
	border-radius: 8px;
	text-align: center;
}

.price {
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 1rem;
}

.price-details {
	font-size: 0.9rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}

.booking-form {
	margin-bottom: 2rem;
}

.form-group {
	margin-bottom: 1rem;
	text-align: left;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: bold;
}

.form-group input,
.form-group select {
	width: 100%;
	padding: 0.8rem;
	border: none;
	border-radius: 5px;
	font-size: 1rem;
}

.btn-primary {
	background: #ff6b6b;
	color: white;
	padding: 1rem 2rem;
	border: none;
	border-radius: 25px;
	font-size: 1.1rem;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
}

.btn-primary:hover {
	background: #ff5252;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

/* Info Cards */
.info-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
	margin: 2rem 0;
}

.info-card {
	background: white;
	padding: 1.5rem;
	border-radius: 8px;
	text-align: center;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	border-top: 4px solid #2a5298;
}

.info-card-icon {
	font-size: 2rem;
	margin-bottom: 1rem;
	color: #2a5298;
}

.info-card h4 {
	color: #2a5298;
	margin-bottom: 0.5rem;
}

/* Contact Info */
.contact-details {
	background: #f8f9fa;
	padding: 1.5rem;
	border-radius: 8px;
	margin-top: 2rem;
}

.contact-details h4 {
	color: #2a5298;
	margin-bottom: 1rem;
}

.contact-item {
	display: flex;
	align-items: center;
	margin-bottom: 0.8rem;
}

.contact-item i {
	margin-right: 0.5rem;
	color: #2a5298;
	width: 20px;
}

/* Footer */
footer {
	background: #1e3c72;
	color: white;
	padding: 3rem 0 1rem;
	margin-top: 3rem;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-section h4 {
	margin-bottom: 1rem;
	color: #fff;
}

.footer-section a {
	color: #ccc;
	text-decoration: none;
	display: block;
	margin-bottom: 0.5rem;
}

.footer-section a:hover {
	color: white;
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid #2a5298;
	color: #ccc;
}

.itinerary-section {
	margin: 2rem 0;
}

.itinerary-section h3 {
	color: #2a5298;
	font-size: 1.5rem;
	margin-bottom: 1rem;
	border-bottom: 2px solid #2a5298;
	padding-bottom: 0.5rem;
}

.itinerary-map {
	text-align: center;
	margin: 1.5rem 0;
}

.map-image {
	width: 100%;
	max-width: 800px;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	border: 2px solid #e9ecef;
}

.trip-info {
	background: linear-gradient(135deg, #f8f9fa, #e9ecef);
	padding: 1.5rem;
	border-radius: 8px;
	margin: 1.5rem 0;
	border-left: 4px solid #2a5298;
	text-align: center;
}

.trip-info p {
	margin: 0;
	font-size: 1.1rem;
	color: #2a5298;
}

.wildlife-section {
	background: #f8f9fa;
	padding: 2rem;
	border-radius: 8px;
	margin: 2rem 0;
	border: 1px solid #e9ecef;
}

.wildlife-section h3 {
	color: #2a5298;
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	border-bottom: 2px solid #2a5298;
	padding-bottom: 0.5rem;
}

.wildlife-category {
	margin-bottom: 2rem;
}

.wildlife-category h4 {
	color: #1e3c72;
	font-size: 1.2rem;
	margin-bottom: 1rem;
	padding: 0.5rem;
	background: linear-gradient(135deg, #e3f2fd, #bbdefb);
	border-radius: 5px;
	border-left: 4px solid #2a5298;
}

.fish-observation h4 {
	color: #1e3c72;
	font-size: 1.2rem;
	margin-bottom: 1rem;
	padding: 0.5rem;
	background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
	border-radius: 5px;
	border-left: 4px solid #4caf50;
}

.wildlife-list {
	list-style: none;
	padding-left: 0;
}

.wildlife-list li {
	padding: 0.5rem 0;
	padding-left: 1.5rem;
	position: relative;
	line-height: 1.6;
}

.wildlife-list li:before {
	content: '🔹';
	position: absolute;
	left: 0;
	color: #2a5298;
}

.wildlife-list strong {
	color: #1e3c72;
}

/* Remplacez le CSS de .cruise-image par celui-ci */
.cruise-carousel {
	width: 100%;
	margin-bottom: 2rem;
}

.carousel-container {
	position: relative;
	width: 100%;
	height: 300px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-slide {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
	opacity: 1;
}

.carousel-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.slide-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
	color: white;
	padding: 2rem 1rem 1rem;
	font-size: 1.1rem;
	font-weight: bold;
	text-align: center;
}

.carousel-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: background 0.3s ease;
}

.dot.active,
.dot:hover {
	background: white;
}

.carousel-prev,
.carousel-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.5);
	color: white;
	border: none;
	padding: 1rem;
	font-size: 1.2rem;
	cursor: pointer;
	border-radius: 0 5px 5px 0;
	transition: background 0.3s ease;
}

.carousel-prev {
	left: 0;
	border-radius: 0 5px 5px 0;
}

.carousel-next {
	right: 0;
	border-radius: 5px 0 0 5px;
}

.carousel-prev:hover,
.carousel-next:hover {
	background: rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
	.wildlife-section {
		padding: 1.5rem;
	}

	.wildlife-category h4 {
		font-size: 1.1rem;
	}
}

/* Responsive */
@media (max-width: 768px) {
	.header-content {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}

	.nav-links {
		flex-direction: column;
		gap: 1rem;
	}

	.main-content {
		grid-template-columns: 1fr;
	}

	.page-title {
		font-size: 1.8rem;
	}

	.info-cards {
		grid-template-columns: 1fr;
	}

	.map-image {
		max-width: 100%;
	}

	.carousel-container {
		height: 250px;
	}

	.slide-caption {
		font-size: 1rem;
		padding: 1.5rem 0.5rem 0.5rem;
	}

	.carousel-prev,
	.carousel-next {
		padding: 0.8rem;
		font-size: 1rem;
	}
}
