* {
	margin: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

/*FONTS*/
@import url('https://fonts.googleapis.com/css2?family=Corben:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400&display=swap');

/*HERO IMAGE*/
.hero {
	margin: 0 auto;
	position: relative;
}

.hero img {
	height: auto;
	max-width: 100%;
	display: block;
	vertical-align: middle;
}

.hero-content {
	padding: 5vw;
	background: rgb(0, 0, 0);
	background: rgba(0, 0, 0, 0.5);
	position: absolute;
	bottom: 0;
	width: 100%;
	height: auto;
	max-width: 100%;
}

.hero-content h1 {
	margin: 20px 0;
	color: #f4e7d5;
	text-align: center;
	text-shadow: 0 0 6px rgba(255, 255, 240, 0.5);
	font-family: 'Cormorant Garamond', serif;
	font-size: 50px;
	line-height: 1.2;
}

.subtext {
	color: #f6f1e7;
	text-align: center;
	text-shadow: 0 0 6px rgba(255, 180, 120, 0.3);
	font-size: 15px;
	font-family: 'Raleway',sans-serif;
}

.scroll-cue {
	margin-top: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.scroll-btn {
	margin-top: 32px;
	padding: 10px 20px;
	background-color: rgba(255, 223, 200, 0.3);
	color: #f6f1e7;
	border: 1px solid rgba(255, 180, 120, 0.5);
	border-radius: 30px;
	font-size: 15.2px;
	font-family: 'Raleway', sans-serif;
	font-weight: bold;
	cursor: pointer;
	backdrop-filter: blur(4px);
	transition: all 0.5s ease-in;
	text-shadow: 0 0 4px rgba(255, 180, 120, 0.3);
	text-decoration: none;
	box-shadow: 0 0 32px rgba(255, 200, 150, 0.8), 0 0 40px rgba(255, 180, 130, 0.5);
}

.scroll-btn:hover {
	background-color: rgba(255, 180, 120, 0.4);
	border-color: rgba(255, 255, 255, 0.8);
	transform: translateY(2px);
	box-shadow: 0 0 28px rgba(255, 200, 150, 0.8), 0 0 36px rgba(255, 180, 130, 0.5);
	transition: box-shadow 0.5s ease-in;
}

/*WHY NECTAR LIFE*/
.why-nectar {
	padding: 20px;
	background-color: #fffaf5;
	color: #5c4a3d;
	display: flex;
	flex-wrap: wrap;
	font-size: clamp(1rem, 2vw, 1.2rem);
	font-family: 'Raleway', sans-serif;
	line-height: 1.6;
}

.container {
	display: flex;
	flex-wrap: wrap;
}

.image-side {
	padding: 16px;
	flex: 1;
	min-width: 300px;
}

.image-side img {
	margin: 0 auto;
	display: block;
	height: auto;
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	max-width: 80%;
}

.text-side {
	padding: 16px;
	color: #5a4a42;
	font-family: 'Cormorant Garamond', serif;
	flex: 1;
	min-width: 300px;
}

.text-side h2 {
	margin-bottom: 16px;
	color: #d88c5c;
	text-align: center;
	font-size: 32px;
	font-family: 'Cormorant Garamond', serif;
}

.text-side p {
	font-size: 17.6px;
	line-height: 1.6;
}

.quote {
	margin: 20px;
	padding-left: 20px;
	color: #a86e4a;
	font-style: italic;
	border-left: 3px solid rgba(255, 180, 120, 0.5);
}

.nectar-scroll-btn {
	margin: 24px;
	padding: 11.2px 22.4px;
	background-color: transparent;
	color: #f7c6d0;
	text-align: center;
	text-decoration: none;
	font-family: 'Cormorant Garamond', serif;
	font-size: 19.2px;
	border: 2px solid #f7c6d0;
	border-radius: 30px;
	display: inline-block;
	box-shadow: 0 0 10px rgba(247, 198, 208, 0.4);
	transition: all 0.4s ease-in;
}

.nectar-scroll-btn:hover {
	background-color: #f7c6d0;
	color: white;
	box-shadow: 0 0 15px rgba(247, 198, 208, 0.6);
}

.nectar-picks-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
}

/*FEATURED PRODUCTS*/
.nectar-picks {
	padding: 64px;
	background-color: #fffaf5;
	text-align: center;
}

.nectar-picks h2 {
	margin-bottom: 32px;
	color: #d88c5c;
	font-size: 35.2px;
	font-family: 'Cormorant Garamond', serif;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 32px;
}

.product-card {
	margin: 20px auto;
	padding: 20px;
	background-color: #fff;
	font-family: 'Quicksand', sans-serif;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	display: block;
	width: 90%;
	transition: transform 0.3s ease;
}

.product-card:hover {
	box-shadow: 0 0 16px rgba(212, 160, 23, 1);
	transform: translateY(-4px);
	transition: all 0.3s ease-in;
}

.product-card img {
	margin-bottom: 16px;
	border-radius: 8px;
	width: 100%;
	height: auto;
}

.product-card h3 {
	margin-bottom: 8px;
	/*color: #a86e4a;*/
	color: #d88f5f;
	font-size: 22.4px;
	font-family: 'Cormorant Garamond', serif;
}

.product-card p {
	/*color: #5a4a42;*/
	color: #5c4a3d;
	font-size: 15.2px;
	line-height: 1.5;
}

.nectar-buy-btn {
	margin-top: 16px;
	padding: 9.6px 19.2px;
	background-color: transparent;
	color: #f7c6d0;
	text-decoration: none;
	font-family: 'Cormorant Garamond', serif;
	font-size: 17.6px;
	border: 2px solid #f7c6d0;
	border-radius: 30px;
	display: inline-block;
	box-shadow: 0 0 10px rgba(247, 198, 208, 0.4);
	transition: all 0.4s ease-in;
}

.nectar-buy-btn:hover {
	background-color: #f7c6d0;
	color: white;
	box-shadow: 0 0 15px rgba(247, 198, 208, 0.6);
}

/*REVIEW SECTION*/
.testimonial-highlight {
	padding: 40px 20px;
	background: linear-gradient(135deg, #fff8e1, #ffe082); /* Soft ivory to honey gradient */
	text-align: center;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(255, 195, 11, 0.2);
}

.testimonial-highlight h2 {
	margin-bottom: 32px;
	color: #a66a00; /* Warm honey-brown */
	font-family: 'Cormorant Garamond', serif;
	font-size: 40px;
}

.testimonial-highlight blockquote {
	margin: 0 auto;
	padding: 20px;
	color: #5c4b1b;
	text-align: justify;
	font-family: 'Playfair Display', serif;
	font-size: 24px;
	line-height: 1.6;
	border-radius: 12px;
	border-left: 6px solid #f4caa1;
	max-width: 800px;
	position: relative;
}

.testimonial-highlight span {
	margin-top: 16px;
	color: #8d6e63;
	font-style: italic;
	font-size: 13.6px;
	display: block;
}

/*FOOTER*/
.nectar-footer {
	padding: 40px 20px;
	background-color: #fffaf3;
	/*background: linear-gradient(135deg, #fff8e1, #ffe082);  Soft ivory to honey */
	color: #5c4b1b;
	font-family: 'Cormorant Garamond', serif;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 64px;
}

.footer-column {
	margin: 16px;
	flex: 1;
	min-width: 250px;
}

.footer-column h3 {
	margin-bottom: 16px;
	color: #a66a00;
	font-size: 24px;
	font-family: 'Cormorant Garamond', serif;
}

.quote-column p {
	margin: 0 auto;
	padding: 20px;
	font-style: italic;
	font-size: 19.2px;
	max-width: 700px;
}

.contact-column input,
.contact-column textarea {
	margin-bottom: 8px;
	padding: 8px;
	border: 1px solid #d4a017;
	border-radius: 6px;
	width: 100%;
}

.contact-column button {
	padding: 9.6px 19.2px;
	background-color: #ffc30b;
	color: #fff;
	font-weight: bold;
	border: none;
	border-radius: 6px;
	transition: background-color 0.3s ease;
	cursor: pointer;
}

.contact-column button:hover {
	background-color: #d4a017;
}

.social-links {
	padding: 40px 0;
	list-style: none;
}

.social-links li {
	margin-bottom: 8px;
}

.social-links a {
	color: #8d6e63;
	text-decoration: none;
	font-weight: bold;
}

.social-links a:hover {
	color: #a66a00;
}

.social-links i {
	margin-right: 8px;
	color: #a66a00;
}

.footer-bottom {
	margin: 0 auto;
	padding: 16px;
	background-color: #fff3d0;
	color: #f05850;
	/*color: #8d6e63;*/
	text-align: center;
	font-size: 14.4px;
	border-top: 1px solid #ffd54f;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: 960px;
}

.about-me {
	margin-top: 8px;
	color: #f05850;
	/*color: #a66a00;*/
	font-size: 14.4px;  
}

.scroll-top {
	padding: 9.6px 16px;
	background-color: #ffc30b;
	color: #fff;
	font-weight: bold;
	border: none;
	border-radius: 50px;
	box-shadow: 0 0 10px rgba(255, 195, 11, 0.6);
	transition: background-color 0.3s ease;
	position: fixed;
	bottom: 20px;
	right: 20px;
	cursor: pointer;
}

.scroll-top:hover {
	background-color: #d4a017;
	animation: sparkle 1.2s infinite;
}

@keyframes sparkle {
	0% {
		box-shadow: 0 0 16px rgba(255, 215, 0, 1);
	}       /* Bright gold */
	25% {
		box-shadow: 0 0 20px rgba(255, 20, 147, 1);
	}      /* Neon pink */
	50% {
		box-shadow: 0 0 20px rgba(138, 43, 226, 1);
	}      /* Electric purple */
	75% {
		box-shadow: 0 0 20px rgba(0, 255, 255, 1);
	}       /* Aqua blue */
	100% {
		box-shadow: 0 0 16px rgba(255, 215, 0, 1);
	}
}

/*RESPONSIVENESS*/
@media (max-width: 768px) {
	.hero-content h1 {
		font-size: 28.8px;
		line-height: 1.3;
	}
	.subtext {
		font-size: 13.6px;
	}
	.scroll-btn {
		padding: 8px 16px;
		font-size: 13.6px;
	}
	.why-nectar {
		padding: 20px;
	}
}

@media (min-width: 768px) {
	.why-nectar {
		padding: 40px;
		font-size: 16.7px;
	}
	.why-nectar h2 {
		font-size: 35.2px;
	}
	.quote {
		font-size: 17.6px;
	}
}

@media (min-width: 768px) {
	.product-card {
		padding: 30px;
		width: 70%;
	}
	.product-card h3 {
		font-size: 25.6px;
	}
	.product-card p {
		font-size: 1rem;
	}
}

@media (min-width: 768px) {
	.testimonial-highlight {
		padding: 60px 80px;
	}
	.testimonial-highlight h2 {
		font-size: 2.5rem;
	}
	.testimonial-highlight blockquote {
		padding: 30px;
		font-size: 1.1rem;
	}
}

@media (min-width: 768px) {
	.nectar-footer {
		padding: 60px 80px;
	}
	.nectar-footer h3 {
		font-size: 2rem;
	}
}

@media (max-width: 480px) {
	.scroll-cue {
		margin-top: 20px;
	}
}