﻿body {
	background-color: #ffffff;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	z-index: 0;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

a {
	text-decoration: none;
	display: inline-block;
}

h1, h2, h3 {
	font-family: Playfair Display, serif;
}

p {
	font-family: Lato, sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
}

img {
	width: 100%;
	object-fit: contain;
}

.hamburger {
	display: none;
}

.navbar {
	display: flex;
	height: 150px;
	justify-content: space-between;
	align-items: flex-end;
	background: rgba(200, 184, 219, 0.7);
	z-index: 4;
	width: 100%;
	position: absolute;
}

.navbar img {
	height:150px;
	width: 150px;
	object-fit: contain;
}

.navlinks {
	display: flex;
	margin-right: 2%;
}

.links {
	display: flex;
	font-size: 26px;
	gap: 60px;
	list-style: none;
	white-space: nowrap;
	font-weight: 600;
}

.links a {
	color: #5b436c;
	transition: all 0.3s ease-in;
	text-shadow: 0px 3px 10px rgba(74, 55, 88, 0.8);
}

.links a:hover {
	color: #4A3758;
	transform: scale(1.05);
}

.scrollinghero {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 950px;
}

.hero {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero.active {
  opacity: 1;
  z-index: 2;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(70%);
}

.hovertext {
  position: absolute;
  bottom: 15%;
  left: 10%;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  padding: 30px;
  border-radius: 8px;
  max-width: 550px;
  backdrop-filter: blur(3px);
  transition: transform 0.3s ease;
}

.hovertext h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin: 0;
  color: #c8b8db;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  letter-spacing: 1.7px;
}

.hovertext p {
  font-size: 22px;
  color: #d4c0f0;
  margin: 10px 0 20px;
}

.hovertext a {
  font-family: 'Nunito', sans-serif;
  padding: 10px 20px;
  background-color: #bba6dd;
  color: #2e2e2e;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-top: 15px;
}

.hovertext a:hover {
  background-color: #dacaf7;
}

.fadeup {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.fadeup.is-visible {
  opacity: 1;
  transform: none;
}

.fadein {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

.fadein.is-visible {
  opacity: 1;
}

.featuredsection,
.intentionsection {
	display: flex;
	flex-direction: column;
	background-color: #d4c0f0;
	width: 100%;
}

.featuredsection h1,
.intentionsection h1 {
	font-size: 36px;
	color: #5b436c;
	margin-left: 15px;
}

.featuredcarousel,
.intentioncarousel {
	display: flex;
	height: 600px;
	width: 100%;
	overflow-x: scroll;
	overflow-y: hidden;
	gap: 30px;
	padding: 15px;
	scroll-snap-type: x mandatory;
}

.featuredproduct,
.intention {
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 2;
	min-width: 500px;
	height: 550px;
	scroll-snap-align: start;

}

.featuredproduct img,
.intention img {
	height: 550px;
	object-position: center;
	background-color: #5b436c;
}

.featuredproduct:hover,
.intention:hover {
	transform: translateY(-8px);
}

.featuredoverlay,
.intentionoverlay {
	display: flex;
	flex-direction: column;
	position: absolute;
	z-index: 3;
	bottom: 0;
	padding: 20px;
	background: rgba(200, 184, 219, 0.8);
	width: 100%;
	transition: transform 0.3s ease-in;
}


.featuredoverlay h1,
.intentionoverlay h1 {
	font-size: 30px;
	color: #5b436c;
}

.featuredoverlay a,
.intentionoverlay a,
.add-to-cart {
  font-family: 'Nunito', sans-serif;
  padding: 10px 20px;
  background-color: #c8b8db;
  color: #5b436c;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  text-align: center;
  font-size: 18px;
  border: none;
  cursor: pointer;
}

.featuredoverlay a:hover,
.intentionoverlay a:hover,
.add-to-cart:hover {
  background-color: #dacaf7;
}

/* Webkit browsers (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #5b436c; /* pale lavender */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #5b436c; /* soft purple */
  border-radius: 10px;
  border: 2px solid #f3eefb; /* inner padding effect */
}

::-webkit-scrollbar-thumb:hover {
  background: #a287c2; /* slightly darker on hover */
}

/* Firefox support */
html {
  scrollbar-color: #bba6dd #f3eefb;
  scrollbar-width: thin;
}

.eventsection {
	background-color: #5B436C;
	padding: 30px;
}

.eventsection h1 {
	font-size: 36px;
	color: #D5C9E4;
	margin-left: 30px;
}

.calendar-container {
  display: flex;
  gap: 80px;
  padding: 15px 20px;
  background-color: #5B436C;
  color: #5b436c;
  font-family: 'Lato', sans-serif;
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  width: 800px;
  gap: 10px;
  background-color: #EAE4F1;
  padding: 30px;
  border-radius: 8px;
}

.calendar div {
  border: 1px solid #d4c0f0;
  padding: 20px;
  text-align: center;
  background-color: #fff;
  border-radius: 8px;
  cursor: pointer;
}

.calendar .header {
  font-weight: bold;
  background-color: #D4C0F0;
}

.calendar .holiday {
  background-color: #f3e5ff;
  font-weight: bold;
}

.calendar .moon {
  background-color: #dad0eb;
  font-style: italic;
}

.event-card {
  flex: 1;
  background-color: #EAE4F1;
  border: 2px solid #c8b8db;
  border-radius: 8px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: #5b436c;
}

.event-card p {
  margin-top: 20px;
  font-size: 24px;
  color: #5b436c;
}

.event-card button {
  margin-top: 20px;
  background-color: #c8b8db;
  color: #5b436c;
  border: 1px solid #5b436c;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  font-size: 18px;
  margin-right: 10px;
}

.event-card a {
  font-family: 'Nunito', sans-serif;
  padding: 15px 20px;
  background-color: #c8b8db;
  color: #5b436c;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  text-align: center;
  font-size: 22px;
  margin-top: 30px;
}

.event-card a:hover {
  background-color: #dacaf7;
}

.newsletter {
	display: flex;
	flex-direction: column;
	padding: 40px;
	background-color: #D4C0F0;
	border-top: 3px solid #5B436C;
	border-bottom: 3px solid #5B436C;
}

.newsletter h1 {
	font-size: 36px;
	color: #5B436C;
	text-align: center;
	margin-bottom: 50px;
}

.newsletter form {
	margin-top: 20px;
	width: 70%;
	margin: auto;
	background-color: #EAE4F1;
	padding: 20px;
	text-align: center;
}

.newsletter form label {
	font-size: 25px;
	font-weight: bold;
	color: #5b436c;
}

.newsletter form input {
	padding: 10px 30px;
	width: 70%;
	margin-left: 15px;
	font-size: 25px;
	transition: transform 0.3s ease-in;
}

.newsletter form input:hover {
	transform: scale(1.02);
}

.footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 200px;
	background: rgba(200, 184, 219, 0.8);
}

.sociallinks {
	display: flex;
	gap: 30px;
	justify-content: center;
}

.fab {
	display: inline-block;
	font-size: 28px;
	color: #5b436c;
	transition: transform 0.3s ease;
}

.fab:hover {
	font-size: 30px;
}

.footer h2 {
	font-size: 28px;
	color: #5b436c;
}

.footer img {
	width: 100px;
	height: 100px;
	object-position: center;
}

.footertext {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.footertext h2 {
	text-align: center;
}


.aboutsection {
	display: flex;
	height: 925px;
	padding-top: 150px;
	position: relative;
}

.aboutsection::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('Images/aboutbackground.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.4; /* lower this for more transparency */
  z-index: -1;
}

.abouttext {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 30px;
}

.abouttext h1 {
	font-size: 32px;
	color: #5b436c;
}

.abouttext p {
	font-size: 22px;
	line-height: 2;
}

.aboutimage {
	display: flex;
	flex: 1;
	position: relative;
}

.aboutimage img {
	object-fit: cover !important;
    box-shadow: 0 0 20px rgba(145, 80, 163, 0.4);
    border-radius: 12px;
}

.blogsection {
	display: flex;
	flex-direction: column;
	background-color: #d5c9e4;
	padding-top: 170px;
	gap: 30px;
}

.blog {
	display: flex;
	width: 90%;
	margin: 0 auto;
	border: 1px solid #5B436C;
	transition: scale 0,3s ease-in;
	cursor: pointer;
}

.blog:hover {
	transform: scale(1.03);
}

.blogimage {
	display: flex;
	flex: 2;
}

.blogimage img {
	height: 100%;
}

.blogtext {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 20px;
	background-color: #d4c0f0;
}

.blogtext h1 {
	color: #5B436C;
	font-size: 32px;
}

.blogtext h2 {
	font-size: 24px;
	color: #5B436C;
	text-decoration: underline;
}

.blogtext p {
	color: #5B436C;
	font-size: 20px;
	line-height: 1.8;
}

.shopnavbar {
	display: flex;
	height: 150px;
	justify-content: space-between;
	align-items: flex-end;
	background: #D4C0F0;
	z-index: 4;
	width: 100%;
}

.shops {
	display: flex;
	margin-right: 5%;
}

.shoplinks {
	display: flex;
	font-size: 26px;
	gap: 40px;
	list-style: none;
	white-space: nowrap;
	font-weight: 600;
}

.shoplinks a {
	color: #5b436c;
	transition: all 0.3s ease-in;
	text-shadow: 0px 3px 10px rgba(74, 55, 88, 0.8);
}

.shoplinks a:hover {
	color: #4A3758;
	transform: scale(1.05);
}

.sitewidesale {
	display: flex;
	height: 800px;
	background-color: #5D4888;
}

.sitewidesale img {
	aspect-ratio: 16:9;
	height: 800px;
	object-position: center;
}

.shophovertext {
  position: absolute;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  padding: 30px;
  border-radius: 8px;
  max-width: 550px;
  backdrop-filter: blur(3px);
  transition: transform 0.3s ease;
  bottom: 10px;
  left: 50%;
}

.shophovertext h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin: 0;
  color: #c8b8db;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  letter-spacing: 1.7px;
}

.shophovertext p {
  font-size: 22px;
  color: #d4c0f0;
  margin: 10px 0 20px;
}

.shophovertext a {
  font-family: 'Nunito', sans-serif;
  padding: 10px 20px;
  background-color: #bba6dd;
  color: #2e2e2e;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-top: 15px;
}

.shophovertext a:hover {
  background-color: #dacaf7;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 30px;
    margin: 0 auto;             
    position: relative;
    width: 100%;
}

.product-grid::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('Images/aboutbackground.png');
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.6; /* lower this for more transparency */
  z-index: -1;
}


.product {
	width: 440px;
	height: 500px;
	display: flex;
	flex-direction: column;
	position: relative;
	box-shadow: 0px 0px 15px rgba(91, 67, 108, 0.8);
	transition: all 0.3s ease;
}

.product:hover {
    transform: scale(1.02);
    box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.3);
}


.product img {
	height: 500px;
	object-fit: cover !important;
}

.producttext {
	display: flex;
	flex-direction: column;
	position: absolute;
	bottom: 0;
	padding: 10px;
	background: rgba(200, 184, 219, 0.8);
	backdrop-filter: blur(3px); 
	width: 100%;
}

.producttext a {
  font-family: 'Nunito', sans-serif;
  padding: 10px 20px;
  background-color: #bba6dd;
  color: #5b436c;
  font-weight: bold;
  font-size: 16px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  text-align: center;
}

.producttext a:hover {
  background-color: #dacaf7;
}


.producttext h2 {
	font-size: 20px;
	color: #5B436C;
}

.pricereduction {
	display: flex;
	gap: 30px;
}

.pricereduction p {
	font-size: 18px;
	font-weight: 600;
	color: #5B436C;
}

.strikethrough {
	text-decoration: line-through;
	font-size: 18px;
	color: #5B436C;
}

.description {
	color: #5b436c;
	font-size: 16px;
}

.category-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.8);
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 6px;
  font-weight: bold;
  color: #5e3a77;
}

input {
	width: 30%;
	font-size: 22px;
	background-color: #d4c0f0;
	border: none;
}






@media (max-width: 768px) {
	

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: border-box;
}

.hamburger {
    display: block;
    align-self: flex-end;
    margin-right: 50px;
    z-index: 1001;
    font-size: 28px;
    cursor: pointer;
}
  
.navlinks {
    display: none;
    position: absolute;
    top: 150px;
    right: 0;
    width: 100%;
    background-color: #fceeef;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1000;
    height: auto;
}

.navlinks.open {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
}

.links {
    flex-direction: column;
    gap: 20px;
    padding: 0;
}

.links li a {
    font-size: 20px;
}

.shops {
    display: none;
    position: absolute;
    top: 150px;
    right: 0;
    width: 100%;
    background-color: #fceeef;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1000;
    height: auto;
}

.shops.open {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
}

.shoplinks {
    flex-direction: column;
    gap: 20px;
    padding: 0;
}

.shoplinks li a {
    font-size: 20px;
}

.hovertext {
  position: absolute;
  bottom: 15%;
  color: #fff;
  margin-left: 0%;
  margin-right: 5%;
  background: rgba(0, 0, 0, 0.4);
  padding: 30px;
  border-radius: 8px;
  max-width: 550px;
  backdrop-filter: blur(3px);
  transition: transform 0.3s ease;
}

.featuredsection,
.intentionsection {
	display: flex;
	flex-direction: column;
	background-color: #d4c0f0;
	width: 100%;
}

.featuredsection h1,
.intentionsection h1 {
	font-size: 25px;
	color: #5b436c;
	margin-left: 5px;
}

.featuredcarousel,
.intentioncarousel {
	display: flex;
	flex-direction: column;
	height: auto;
	width: 100%;
	overflow-x: hidden;
	overflow-y: hidden;
	gap: 30px;
	padding: 15px;
	scroll-snap-type: x mandatory;
}

.featuredproduct,
.intention {
	display: flex;
	flex-direction: column;
	position: relative;
	width: 100vw;         /* Full screen width */
	max-width: 100vw;
	height: auto;
	margin: 0 auto;
}

.featuredproduct img,
.intention img {
	width: 100vw;         /* Full screen width */
	height: auto;         /* Scale naturally */
	object-fit: cover;
	object-position: center;
	display: block;
}

.featuredoverlay,
.intentionoverlay {
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: absolute;
	z-index: 3;
	bottom: 0;
	padding: 5px;
	background: rgba(200, 184, 219, 0.8);
	width: 100%;
	transition: transform 0.3s ease-in;
}


.featuredoverlay h1,
.intentionoverlay h1 {
	font-size: 20px;
	color: #5b436c;
}

.featuredoverlay a,
.intentionoverlay a {
  font-family: 'Nunito', sans-serif;
  padding: 10px 10px;
  background-color: #c8b8db;
  color: #5b436c;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-size: 16px;
  width: fit-content;
  display: inline-block;
}

.eventsection {
	display: flex;
	flex-direction: column;
	background-color: #5B436C;
	padding: 10px;
}

.eventsection h1 {
	font-size: 28px;
	color: #D5C9E4;
	margin-left: 20px;
}

.calendar-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 10px;
  background-color: #5B436C;
  color: #5b436c;
  font-family: 'Lato', sans-serif;
  overflow-x: scroll;
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  width: 200%;
  gap: 10px;
  background-color: #EAE4F1;
  padding: 10px;
  border-radius: 8px;
}

.calendar div {
	display: flex;
	flex-direction: column;
  border: 1px solid #d4c0f0;
  padding: 20px;
  text-align: center;
  background-color: #fff;
  border-radius: 8px;
  cursor: pointer;
}

.calendar .header {
  font-weight: bold;
  background-color: #D4C0F0;
}

.calendar .holiday {
  background-color: #f3e5ff;
  font-weight: bold;
}

.calendar .moon {
  background-color: #dad0eb;
  font-style: italic;
}

.event-card {
  background-color: #EAE4F1;
  border: 2px solid #c8b8db;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #5b436c;
}

.event-card p {
  margin-top: 10px;
  font-size: 18px;
  color: #5b436c;
}

.event-card button {
  margin-top: 10px;
  background-color: #c8b8db;
  color: #5b436c;
  border: 1px solid #5b436c;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  font-size: 18px;
  margin-right: 10px;
}

.event-card a {
  font-family: 'Nunito', sans-serif;
  padding: 15px 20px;
  background-color: #c8b8db;
  color: #5b436c;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  text-align: center;
  font-size: 22px;
  margin-top: 30px;
}

.event-card a:hover {
  background-color: #dacaf7;
}

.newsletter form {
	margin-top: 20px;
	width: 95%;
	margin: auto;
	background-color: #EAE4F1;
	padding: 20px;
	text-align: center;
}

.newsletter form label {
	font-size: 25px;
	font-weight: bold;
	color: #5b436c;
}

.newsletter form input {
	padding: 10px 30px;
	width: 95%;
	margin-left: 15px;
	font-size: 25px;
	transition: transform 0.3s ease-in;
}

.newsletter form input:hover {
	transform: scale(1.02);
}

.footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 250px;
	background: rgba(200, 184, 219, 0.8);
}

.footer h2 {
	font-size: 20px;
}

.aboutsection {
	display: flex;
	flex-direction: column;
	height: auto;
	padding-top: 150px;
}

.sitewidesale {
	display: flex;
	flex-direction: column;
	height: auto;
	padding-bottom: 275px;
	background-color: #5D4888;
}

.sitewidesale img {
	aspect-ratio: 16:9;
	height: auto;
	object-position: center;
}

.shophovertext {
  display: flex;
  flex-direction: column;
  color: #fff;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  padding: 30px;
  border-radius: 8px;
  backdrop-filter: blur(3px);
  transition: transform 0.3s ease;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    padding: 10px;
    margin: 0 auto;             
    position: relative;
    width: 100%;
}

.product {
	width: 100%;
	height: 500px;
	display: flex;
	flex-direction: column;
	position: relative;
	box-shadow: 0px 0px 15px rgba(91, 67, 108, 0.8);
	transition: all 0.3s ease;
}

.product:hover {
    transform: scale(1.02);
    box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.3);
}


.product img {
	height: 500px;
	object-fit: cover !important;
}

.producttext {
	display: flex;
	flex-direction: column;
	position: absolute;
	bottom: 0;
	padding: 10px;
	background: rgba(200, 184, 219, 0.8);
	backdrop-filter: blur(3px); 
	width: 100%;
}

.producttext a {
  font-family: 'Nunito', sans-serif;
  padding: 10px 20px;
  background-color: #bba6dd;
  color: #5b436c;
  font-weight: bold;
  font-size: 16px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  text-align: center;
}


.producttext h2 {
	font-size: 20px;
	color: #5B436C;
}

.pricereduction p {
	font-size: 18px;
	font-weight: 600;
	color: #5B436C;
}

input {
	width: 30%;
	font-size: 18px;
	background-color: #d4c0f0;
	border: none;
}









}