/* style.css */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Georgia', serif;
	color: #333;
	background: #f8f5f2;
	overflow-x: hidden;
}

/* Navigation */
.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 50px;
	background: #f8f5f2;
	position: relative;
	z-index: 100;
}

.nav-left {
	display: flex;
	align-items: center;
	gap: 15px;
}

.logo {
	width: 30px;
	height: 30px;
}

.nav-left span {
	font-size: 12px;
	color: #666;
}

.nav-right {
	display: flex;
	gap: 30px;
}

.nav-right a {
	text-decoration: none;
	color: #333;
	font-size: 14px;
	transition: color 0.3s;
}

.nav-right a:hover {
	color: #c9a961;
}

/* Hero Section */
.hero {
	position: relative;
	text-align: center;
	padding: 100px 50px;
	min-height: 600px;
}

.floating-elements {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
}

.float {
	position: absolute;
	width: 40px;
	animation: floating 3s ease-in-out infinite;
}

.float-1 {
	top: 10%;
	left: 15%;
	animation-delay: 0s;
}

.float-2 {
	top: 30%;
	right: 20%;
	animation-delay: 1s;
}

.float-3 {
	bottom: 20%;
	left: 10%;
	animation-delay: 2s;
}

@keyframes floating {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-20px); }
}

.hero-images {
	position: relative;
	margin-bottom: 50px;
}

.hero-img {
	position: absolute;
	animation: fadeInUp 1s ease-out;
}

.img-1 {
	width: 150px;
	top: -50px;
	left: 10%;
}

.img-2 {
	width: 200px;
	top: -30px;
	left: 40%;
}

.img-3 {
	width: 180px;
	top: 20px;
	right: 15%;
}

.img-4 {
	width: 140px;
	top: 80px;
	right: 5%;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero h1 {
	font-size: 72px;
	color: #c9a961;
	font-weight: 300;
	letter-spacing: 2px;
	margin-bottom: 10px;
}

.hero .subtitle {
	font-size: 16px;
	color: #666;
}

/* Suggestions Section */
.suggestions {
	display: flex;
	align-items: center;
	padding: 80px 100px;
	gap: 100px;
}

.suggestions-left h2 {
	font-size: 48px;
	color: #c9a961;
	font-weight: 300;
	line-height: 1.2;
	margin-bottom: 20px;
	position: relative;
}

.suggestions-left h2::after {
	content: '';
	display: block;
	width: 80px;
	height: 2px;
	background: #c9a961;
	margin-top: 10px;
}

.suggestions-left p {
	font-size: 14px;
	line-height: 1.6;
	color: #666;
}

.suggestions-right img {
	width: 400px;
	border-radius: 10px;
}

/* Products Section */
.products {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 50px;
	padding: 80px 100px;
	flex-wrap: wrap;
}

.product-card {
	background: #f0ede8;
	padding: 50px 30px;
	text-align: center;
	width: 280px;
	position: relative;
}

.product-card img {
	width: 150px;
	margin-bottom: 30px;
}

.btn-product {
	background: #c9a961;
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 3px;
	color: white;
	font-size: 20px;
	cursor: pointer;
	margin-bottom: 20px;
	transition: transform 0.3s;
}

.btn-product:hover {
	transform: scale(1.1);
}

.product-card h3 {
	font-size: 18px;
	font-weight: 400;
	color: #333;
	line-height: 1.4;
}

.see-more {
	display: inline-block;
	margin-top: 50px;
	text-decoration: none;
	color: #333;
	font-size: 14px;
	border-bottom: 1px solid #333;
	padding-bottom: 2px;
	transition: color 0.3s;
}

.see-more:hover {
	color: #c9a961;
	border-color: #c9a961;
}

/* Story Section */
.story {
	display: flex;
	background: #e8e5e0;
	padding: 80px 100px;
	position: relative;
}

.story-content {
	display: flex;
	align-items: center;
	gap: 50px;
	flex: 1;
}

.portrait {
	width: 300px;
	border-radius: 5px;
}

.story-text h2 {
	font-size: 48px;
	color: white;
	font-weight: 300;
	line-height: 1.2;
	margin-bottom: 20px;
}

.story-text p {
	font-size: 14px;
	color: white;
	line-height: 1.6;
	max-width: 300px;
}

.story-right {
	position: absolute;
	right: 50px;
	top: 50%;
	transform: translateY(-50%);
}

.chocolate-ball {
	width: 150px;
}

.chocolate-bar {
	width: 100px;
	position: absolute;
	bottom: -50px;
	right: -20px;
}

/* Specialty Section */
.specialty {
	background: #c9a961;
	padding: 80px 100px;
}

.specialty h2 {
	font-size: 48px;
	color: white;
	font-weight: 300;
	line-height: 1.2;
	margin-bottom: 30px;
}

.specialty p {
	font-size: 14px;
	color: white;
	line-height: 1.8;
	margin-bottom: 20px;
}

.specialty-description {
	margin-bottom: 30px !important;
}

.video-link {
	display: inline-block;
	color: white;
	text-decoration: none;
	font-size: 14px;
	border-bottom: 1px solid white;
	padding-bottom: 2px;
	transition: opacity 0.3s;
}

.video-link:hover {
	opacity: 0.8;
}

/* Boutiques Section */
.boutiques {
	padding: 80px 100px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.boutiques h2 {
	font-size: 48px;
	color: #c9a961;
	font-weight: 300;
	line-height: 1.2;
	flex: 1;
}

.boutiques-list {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.location {
	display: flex;
	align-items: baseline;
	gap: 15px;
}

.number {
	font-size: 12px;
	color: #999;
}

.city {
	font-size: 18px;
	color: #333;
}

.more-info {
	display: inline-block;
	text-decoration: none;
	color: #333;
	font-size: 14px;
	border-bottom: 1px solid #333;
	padding-bottom: 2px;
	margin-left: auto;
}

/* Footer */
footer {
	background: white;
	padding: 50px 100px;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	gap: 50px;
}

.footer-logo img {
	width: 40px;
	margin-bottom: 10px;
}

.footer-logo p,
.footer-contact p,
.footer-production p,
.footer-legal p {
	font-size: 12px;
	line-height: 1.8;
	color: #666;
}

footer h4 {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 15px;
	color: #333;
}

/* Responsive */
@media (max-width: 1024px) {
	.navbar,
	.suggestions,
	.products,
	.story,
	.specialty,
	.boutiques,
	footer {
		padding-left: 50px;
		padding-right: 50px;
	}
	
	.hero h1 {
		font-size: 56px;
	}
}

@media (max-width: 768px) {
	.nav-right {
		display: none;
	}
	
	.suggestions,
	.story-content {
		flex-direction: column;
	}
	
	.boutiques {
		flex-direction: column;
		gap: 30px;
	}
	
	.footer-content {
		flex-wrap: wrap;
	}
}