:root {
	
	/* Colours to change */
	
	--color-primary: #EDE1D8;
	--color-secondary: #789994;
	--color-accent: #AA1945;
	--color-white: #FFFFFF;
	--color-black: #000000;
	
	/* Fonts to change */
	
	--font-serif: 'Abril Fatface', serif;
	--font-sans: 'Poppins', sans-serif;
	--font-freehand: 'Freehand', sans;
	
	/* Elements to change */
	
	/* Navbar */
	--navbar-background: var(--white);
	--navbar-text: var(--black);
	--navbar-text-mobile: var(--black);
	--navbar-text-hover: var(--primary);
	--navbar-icon: var(--black);
	--navbar-burger: var(--black);
	--navbar-arrows: var(--black);
	
	
	/* Searchbar */
	--search-background: var(--beige);
	--search-button-background: var(--secondary);
	--search-button-color: var(--white);
	--search-button-hover: var(--primary);
	--search-text: var(--secondary);
	
	/* Breadcrumbs */
	--breadcrumb-text: var(--black);
	--breadcrumb-text-hover: var(--primary);
	
	/* Banner Text */
	--banner-begin-text: var(--black);
	
	/* Featured Categories */
	--featcat-background: var(--beige);
	--featcat-text-color: var(--black);
	
	/* Categories */
	--cat-item-background: var(--beige);
	--cat-title-background: var(--white);
	--cat-title-text: var(--black);
	
	/* Sub-Categories */
	--subcat-item-background: var(--primary);
	--subcat-title-background: var(--white);
	--subcat-title-text: var(--secondary);
	
	/* Footer */
	--footer-background: var(--black);
	--footer-text: var(--white);
	--footer-text-hover: var(--primary);
	--footer-copyright-background: var(--secondary);
	--footer-copyright-text: var(--white);
	
	/* Buttons */
	--buttons-color: var(--white);
	--buttons-hover-color: var(--white);
	--buttons-hover-background: var(--primary);
	
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  color: var(--color-black);
}

.opacity-90 {
	opacity: 90%;
}

.section-header {
	letter-spacing: 1.5px;
	margin-bottom: 3rem !important;
}

h2, h3, h4, h5, h6 {
	letter-spacing: 1px;
}

/* --------------------------------------------------------------------------------------------------------------------------------------------- Custom Colors */

/* Color Accent */
.has-text-custom-1 {
	color: var(--color-accent) !important;
}

/* Color Black */
.has-text-custom-2 {
	color: var(--color-black) !important;
}

.has-background-custom-1 {
	background-color: rgba(170, 25, 69, 0.24) !important;
}

/* --------------------------------------------------------------------------------------------------------------------------------------------- Custom Fonts */

/* Font Poppins */
.has-style-custom-1 {
	font-family: var(--font-sans) !important;
}

/* Font Abril Fatface */
.has-style-custom-2 {
	font-family: var(--font-serif) !important;
}

/* Font Freehand */
.has-style-custom-3 {
	font-family: var(--font-freehand) !important;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

/* --------------------------------------------------------------------------------------------------------------------------------------------- Custom Sizes */

.text-90 {
	font-size: 90% !important;
}

.text-100 {
	font-size: 100% !important;
}

.text-115 {
	font-size: 115% !important;
}

.text-125 {
	font-size: 125% !important;
}

.width-80 {
	width: 80%;
}

/* --------------------------------------------------------------------------------------------------------------------------------------------- Buttons */

.catfish-button, .button {
	border-radius: 30px;
	/* background-color: var(--color-accent) !important; */
	/* color: var(--color-white) !important; */
}

.catfish-button:hover, .catfish-button.is-hovered, .button:hover, .button.is-hovered {
    border-color: transparent;
    color: var(--color-white) !important;
    background-color: #881437 !important;
}

/* .catfish-button:active, .catfish-button.is-active, .button:active, .button.is-active, */
/* .catfish-button:hover, .catfish-button.is-hovered, .button:hover, .button.is-hovered { */
    /* border: 0px; */
    /* color: var(--buttons-hover-color); */
    /* background: var(--buttons-hover-background); */
/* } */

/* --------------------------------------------------------------------------------------------------------------------------------------------- Login Page */

/* Amend login background by moving the background image */


/* Amend login details section to centre */


/* Remove logo from login page above the welcome text */


/* --------------------------------------------------------------------------------------------------------------------------------------------- Offer / Promotion Banner */

.offer-promotion {
    background: #E6BAC7;
    padding: 0.55rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}

.offer-promotion .offer-text {
    color: var(--color-black);
    text-align: center;
}

/* --------------------------------------------------------------------------------------------------------------------------------------------- Header */

#main-nav {
	background-color: var(--color-primary);
	box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
	border-bottom: 4px solid var(--color-secondary);
}

.header-spacer.two-tier-spacer {
    height: 7.2rem;
}

.navbar.is-fixed-top {
    top: 2.6rem;
}

#header-top-menu {
	background-color: var(--color-primary);
	padding-top: 2rem;
	padding-bottom: 2rem;
}

#header-bottom-menu {
	background-color: var(--color-secondary);
	border-top: 0;
}

.navbar {
    background-color: var(--color-secondary);
}

.navbar-link:hover {
	color: var(--color-primary);
}

.navbar-item {
	color: var(--color-black);
}

.navbar-text {
	font-size: 1rem;
}

.navbar-burger span {
	background-color: var(--color-black);
}

.badge {
    background: var(--color-accent);
}

.btm-menu-navbar {
	background-color: var(--color-secondary);
}

.content-field-navbar .top-menu-split {
	font-size: 1rem;
}

.content-field-navbar .navbar-link:not(.is-arrowless)::after {
    content: none;
}

.nav-vert-border {
    border-right: 1.5px solid var(--color-accent);
}

/* --------------------------------------------------------------------------------------------------------------------------------------------- Searchbar */



/* --------------------------------------------------------------------------------------------------------------------------------------------- Search Page */



/* --------------------------------------------------------------------------------------------------------------------------------------------- Breadcrumb */



/* --------------------------------------------------------------------------------------------------------------------------------------------- Home */

.slide-box {
	box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 9px 9px 6px;
}

.slide-image {
	width: 30%;
}

.flexslider.infigo-slider .slides>li>.container, .flexslider.infigo-slider .slides>li>.container>.columns {
    height: auto;
}

.section.is-large.has-background-default.has-background-center.has-background-original.has-background-no-repeat.flex-active-slide {
	padding-top: 3rem;
	min-height: 500px;
}

/* --------------------------------------------------------------------------------------------------------------------------------------------- Real Moments */

.moments-text {
	font-size: 1.2em;
}

.moments-block {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 9px 9px 6px;
}

.moments-section {
    padding-bottom: 0 !important;
}

.moments-img-txt {
	font-size: 1.5rem;
}

.columns.is-variable.is-8 {
    margin-left: calc(-1 * 1rem);
    margin-right: calc(-1 * 1rem);
    margin-top: calc(-1 * 2rem);
}

/* --------------------------------------------------------------------------------------------------------------------------------------------- Categories */

.category-title {
    border-bottom: 1px solid var(--color-black);
    padding-bottom: 1rem;
}

.category-image {
	height: 350px;
}

.homeFeaturedCategoriesBackground {
	min-height: 200px;
}

.homeFeaturedCategoriesWrapper {
	padding-top: 3rem;
	padding-bottom: 3rem;
	background: linear-gradient(to bottom, var(--color-secondary) 200px, white 0%);
}

#homeFeaturedCategoriesTitleRow h3 {
	margin-bottom: 3rem !important;
	color: var(--color-white);
}

.homeFeaturedCategoriesWrapper .listWrapper .listItem .small-product-item {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-top: none;
    border-radius: 20px;
    aspect-ratio: 1 / 1;
    height: 100%;
}

.homeFeaturedCategoriesWrapper .listWrapper .listItem .small-product-item .category-item .product-title {
    background: rgba(237, 225, 216, 0.92);
}

.homeFeaturedCategoriesWrapper .listWrapper .listItem .small-product-item .category-item:hover .product-title {
    background: rgba(237, 225, 216, 0.92);
}

.homeFeaturedCategoriesWrapper .listWrapper .listItem .small-product-item .category-item .product-title a {
    color: var(--color-black);
}

/* --------------------------------------------------------------------------------------------------------------------------------------------- How it Works */

.hiw-par {
	min-height: 60px;
}

/* --------------------------------------------------------------------------------------------------------------------------------------------- Products */

.section.is-paddingless.has-vertical-padding.has-background-default.has-text-default.customise-banner > div.container {
	padding-left: 0;
	padding-right: 0;
	margin-left: 0;
	margin-right: 0;
	max-width: 100%;
}

/* --------------------------------------------------------------------------------------------------------------------------------------------- Megaedit */

h3.ng-binding.ng-scope.title.meuiTitle.main-title.has-text-primary.is-3 {
	color: var(--color-accent) !important;
}

/* --------------------------------------------------------------------------------------------------------------------------------------------- Blog */

.featuredBlog__wrapper {
  float: inherit;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

#AfterMainContainer > div > div.featuredBlog__wrapper > div > div > div.list.columns {
	flex-wrap: wrap;
}

/* --------------------------------------------------------------------------------------------------------------------------------------------- Footer */

.arone-footer {
    padding-top: 3rem;
    padding-bottom: 3rem;
	border-top: 3px solid var(--color-secondary);
}

.catfish-footer {
	background-color: var(--color-white);
    padding-top: 3rem;
    padding-bottom: 0;
}

.image.dedicated-footer-logo img {
    height: 7.5rem;
    width: auto;
}

span.icon {
	justify-content: left;
}

div.column.is-3-desktop.is-6-tablet.is-12-mobile.ict-dedicated-footer-column-1 {
	margin-bottom: 2rem;
}

div.column.is-3-desktop.is-6-tablet.is-12-mobile.ict-dedicated-footer-column-2 {
	margin-bottom: 2rem;
}

.catfish-footer ul a {
    color: var(--color-black);
}

.footerinner.clearfix.columns.is-multiline div.grid_3.column.is-12-mobile.is-6-tablet.is-3-widescreen:nth-of-type(1) {
	display: none;
}

.footercopyrightrow {
	background-color: var(--color-secondary);
	margin-top: 3rem;
}

.footercopyrightinner.clearfix.columns > .grid_4 {
	display: none;
}

.catfish-footer ul a:hover {
    color: var(--color-accent);
}

/* --------------------------------------------------------------------------------------------------------------------------------------------- Misc */

/* Change the font size on the title of the text My Account in the My Account block  */
.block-account-navigation .title {
    font-size: 1em;
}

.topic-banner-block {
    min-height: 150px;
    display: flex;
	justify-content: center;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 9px 9px 6px;
}

.topic-banner-title {
	align-content: center;
}

.content-page-image {
	min-height: 375px;
}

/* --------------------------------------------------------------------------------------------------------------------------------------------- Holding Page */

.font-semibold {
  font-weight: 600;
}

.page-container {
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
}

.section-wrapper {
  max-width: 1820px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .section-wrapper {
    padding: 0 20px;
  }
}

#section-hero {
  background-color: var(--color-primary);
}

.hero-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative; /* Needed for absolute positioning of the logo */
  gap: 20px; /* Space between two images */
  flex-wrap: wrap; /* Allows responsiveness on smaller screens */
  padding: 20px;
}

.story-container {
  padding-top: 0;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

.story-container h2 {
  font-size: 4em;
  font-weight: 400;
  letter-spacing: 3px;
}

.story-container h3 {
  font-size: 2em;
  letter-spacing: 2px;
}

.story-left-col p {
  font-size: 1.5rem;
}

.story-wrapper {
  padding: 20px;
  background-color: var(--color-secondary);
  border-radius: 0.8rem;
  filter: drop-shadow(10px 10px 5px rgba(0, 0, 0, 0.3));
}

.hero-images {
  display: flex;
  justify-content: center;
  gap: 220px;
}

.hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 0.8rem;
}

.logo-overlay-wrapper {
  position: absolute; /* Overlay on top of images */
  z-index: 10; /* Ensure the logo is on top */
  top: 50%; /* Vertically centered */
  left: 50%; /* Horizontally centered */
  transform: translate(-50%, -50%); /* Center precisely */
  max-width: 20%; /* Scales logo on different screens */
  height: auto;
  pointer-events: none; /* Avoid blocking interactions with images */
}

.logo-card {
  display: inline-block; /* Ensures the box wraps tightly around the logo */
  padding: 25px; /* Space between the logo and the box border */
  background-color: var(--color-primary); /* Optional: Light gray background */
  filter: drop-shadow(10px 10px 5px rgba(0, 0, 0, 0.5));
}

.logo-image {
  width: 100%;
  height: auto;
}

/* .topicpage { */
	/* background-color: var(--color-primary); */
	/* padding-top: 0; */
	/* padding-bottom: 0; */
/* } */

#phTopic .catfish-container {
	background-color: var(--color-primary);
}

@media (max-width: 767px) {
  .logo-overlay-wrapper {
	max-width: 40%;
  }
  .story-container h3 {
    margin-top: 1.5rem;
  }
}

#section-story {
  padding-top: 0;
  padding-bottom: 0;
  background-color: var(--color-primary);
}

.story-card-container {
  background-color: var(--color-secondary);
  border-radius: 10px;
  box-shadow: 10px 10px 25px 6px rgba(0, 0, 0, 0.25);
  padding: 40px 68px;
  display: flex;
  gap: 68px;
  align-items: flex-start;
}

.story-column {
  color: var(--color-primary);
}

.story-column-left {
  flex-basis: 705px;
  flex-shrink: 1;
  text-align: center;
}

.story-column-right {
  flex-basis: 880px;
  flex-shrink: 1;
}

.story-title-large {
  font-family: var(--font-serif);
  font-size: 72px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.35;
}

.story-divider-horizontal {
  border: none;
  border-top: 1px solid var(--color-white);
  margin: 42px 0;
}

.story-subtitle {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.5;
}

.story-columns {
  padding-top: 20px;
  padding-bottom: 20px;
}

.columns.is-variable.is-4 > .story-left-col {
  padding-right: 20px;
}

.columns.is-variable.is-4 > .story-right-col {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 20px;
}

.vertical-line {
  border-left: 1px solid var(--color-white);
}

.blogpost__featureimage {
  display: none;
}

/* .featuredBlog__wrapper { */
  /* padding-top: 0; */
  /* padding-bottom: 0; */
  /* top: -240px; */
/* } */

.featuredBlog__wrapper .title.is-spaced {
  font-size: 2.5em;
  margin-bottom: 3rem;
}

.featuredBlog__wrapper .post .post-content {
  background: none;
}

.featuredBlog__wrapper .post .post-content .post-info {
  display: inline-block;
  width: 100%;
  padding-left: 0;
  margin-top: 2rem;
  border-top: 1px solid var(--color-accent);
}

.featuredBlog__wrapper .post .post-content img {
  border-radius: 0.8rem;
}

.blog-img {
	border-radius: 0.8rem;
}

.story-title-medium {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.35;
  margin-bottom: 22px;
}

.story-body {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.story-body strong {
  font-weight: 600;
}

@media (max-width: 1400px) {
  .story-card-container {
    flex-direction: column;
    align-items: center;
    padding: 40px;
    gap: 40px;
  }
  .story-divider-vertical {
    display: none;
  }
  .story-column-left, .story-column-right {
    flex-basis: auto;
    width: 100%;
    max-width: 880px;
  }
  .story-column-left {
    text-align: center;
  }
  .story-column-right {
    text-align: left;
  }
}

@media (max-width: 767px) {
  .story-title-large {
    font-size: 48px;
  }
  .story-subtitle {
    font-size: 20px;
  }
  .story-title-medium {
    font-size: 36px;
  }
  .story-body {
    font-size: 16px;
  }
  .vertical-line {
	border-left: 0;
	border-top: 1px solid var(--color-white);
	margin: 42px 0;
  }
}

.blog-content-wrapper {
  text-align: center;
}

.blog-section-title {
  font-family: var(--font-serif);
  font-size: 72px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--color-black);
}

.blog-grid {
  margin-top: 143px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.blog-post {
  text-align: left;
}

.blog-post-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.blog-post-divider {
  border: none;
  border-top: 2px solid var(--color-accent);
  margin: 33px 0;
}

.blog-post-title {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-black);
}

.blog-post-title .ellipsis {
  font-size: 36px;
  line-height: 0;
}

.content h3:not(:first-child) {
    margin-top: 0;
}

@media (max-width: 1200px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  #section-blog {
    padding: 60px 0;
  }
  .blog-section-title {
    font-size: 48px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    margin-top: 60px;
    gap: 60px;
  }
  .blog-post-title {
    font-size: 20px;
  }
}

#section-footer {
  background-color: var(--color-primary);
  padding-bottom: 2rem;
  padding-top: 2rem;
}

.footer-divider-container {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1673px;
  margin: 0 auto;
  padding: 0;
}

.footer-line {
  flex-grow: 1;
  border: none;
  border-top: 1px solid var(--color-accent);
}

.footer-heart {
  width: 49px;
  height: 41px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------------------------------------------------------------------------- Animation */

/* .animate { */
	/* opacity: 0; */
/* } */

/* .in-view { */
    /* transform: translateY(300px); */
    /* animation: in-view 3s ease forwards; */
	/* transition: opacity 0.5s ease, transform 0.5s ease; */
    /* -webkit-transform: translateY(300px); */
    /* -moz-transform: translateY(300px); */
    /* -ms-transform: translateY(300px); */
    /* -o-transform: translateY(300px); */
    /* -webkit-animation: in-view 3s ease forwards; */
	/* -webkit-transition: opacity 0.5s ease, transform 0.5s ease; */
	/* -moz-transition: opacity 0.5s ease, transform 0.5s ease; */
	/* -ms-transition: opacity 0.5s ease, transform 0.5s ease; */
	/* -o-transition: opacity 0.5s ease, transform 0.5s ease; */
/* } */

/* @-webkit-keyframes in-view { */
    /* to { */
        /* -webkit-transform: translateY(0); */
        /* transform: translateY(0); */
        /* opacity: 1; */
    /* } */
/* } */

/* @keyframes in-view { */
    /* to { */
        /* -webkit-transform: translateY(0); */
        /* transform: translateY(0); */
        /* opacity: 1; */
    /* } */
/* } */

/* --------------------------------------------------------------------------------------------------------------------------------------------- Media Queries */

/* Tablets */
@media screen and (min-width: 768px) {
	.column.is-6-mobile {
		width: 50%;
	}
	
	.header-spacer.two-tier-spacer {
		height: 8.3rem;
	}
	
	.moments-block-1 {
		rotate: 10deg
	}

	.moments-block-2 {
		rotate: -5deg
	}

	.moments-block-3 {
		rotate: -10deg
	}

	.moments-block-4 {
		rotate: 5deg;
	}
	
	div.column.is-3-desktop.is-6-tablet.is-12-mobile.ict-dedicated-footer-column-3 {
		width: 100%;
	}
	
	.footer-column-3-text {
		font-size: 1.15rem;
	}
	
	.topic-banner-block {
		justify-content: left;
	}
	
}

/* Small Desktops and Laptops */
@media screen and (min-width: 1088px) {
	.column.is-6-mobile {
		width: 33.3%;
	}
	
	.header-spacer.two-tier-spacer {
		height: 14.5rem;
	}
	
	.is-header-logo {
		height: 4.5rem;
	}
	
	.search-box .searchbox {
		border-bottom-left-radius: 30px;
		border-top-left-radius: 30px;
	}
	
	#main-nav {
		border-bottom: none;
	}
	
	.moments-text {
		font-size: 1.5em;
	}
	
	.moments-section {
		padding-bottom: 3rem !important;
	}
	
	div.column.is-3-desktop.is-6-tablet.is-12-mobile.ict-dedicated-footer-column-1 {
		margin-bottom: 0;
	}

	div.column.is-3-desktop.is-6-tablet.is-12-mobile.ict-dedicated-footer-column-2 {
		margin-bottom: 0;
	}
	
	div.column.is-3-desktop.is-6-tablet.is-12-mobile.ict-dedicated-footer-column-3 {
		width: 50%;
	}
	
	.footer-column-3-text {
		font-size: 1.35rem;
	}
	
	/* Animation */
	.animate {
		opacity: 0;
		-webkit-transform: translateY(6.25rem);
		transform: translateY(6.25rem);
		-webkit-transition: opacity .5s ease, -webkit-transform .5s ease;
		transition: opacity .5s ease, -webkit-transform .5s ease;
		transition: opacity .5s ease, transform .5s ease;
		transition: opacity .5s ease, transform .5s ease, -webkit-transform .5s ease;
	}
	
	.in-view {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
	
	
}

/* Large Desktops */
@media screen and (min-width: 1280px) {
	.column.is-6-mobile {
		width: 25%;
	}
	
	.footerinner.clearfix.columns.is-multiline div.grid_3.column.is-12-mobile.is-6-tablet.is-3-widescreen:nth-of-type(1) {
		display: block;
	}
	
	.slide-box {
		width: 80%;
	}
	
}