 /* Custom styles for the beauty theme */
body {
	font-family: 'Lato', sans-serif;
	background-color: #FBF6F5; /* Soft, warm off-white */
	color: #5C4B4B; /* Muted, warm brown */
	position: relative;
	overflow: hidden;
}

/* Background Image */
.background-image {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background-image: url('https://images.unsplash.com/photo-1596462502278-27bfdc403348?q=80&w=1780&auto=format&fit=crop');
	background-size: cover;
	background-position: center;
	opacity: 0.15;
	animation: slowPan 40s ease-in-out infinite alternate;
}

@keyframes slowPan {
	from { background-position: 40% center; }
	to { background-position: 60% center; }
}

/* Main content container */
.main-content {
	animation: fadeIn 2s ease-out;
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

/* Custom font for titles */
.title-font {
	font-family: 'Cormorant Garamond', serif;
	font-weight: 600;
}

.brand-logo {
	font-family: 'Cormorant Garamond', serif;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #B88A8A; /* Rose gold / dusty pink */
}

/* Countdown timer styling */
.countdown-box {
	border-top: 1px solid rgba(184, 138, 138, 0.2);
	padding-top: 0.75rem;
}
.countdown-number {
	font-family: 'Cormorant Garamond', serif;
	color: #3D3232;
	line-height: 1;
	font-weight: 700;
}
.countdown-label {
	color: #968484;
	font-size: 0.7rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

/* Subscription form styling */
.subscribe-input {
	background: transparent;
	border: 1px solid #DCD0D0;
	color: #5C4B4B;
	transition: all 0.3s ease;
	font-family: 'Lato', sans-serif;
}
.subscribe-input::placeholder {
	color: #B0A0A0;
}
.subscribe-input:focus {
	outline: none;
	border-color: #B88A8A;
	background: rgba(251, 246, 245, 0.5);
}
.subscribe-btn {
	background-color: #B88A8A;
	color: #fff;
	border: 1px solid #B88A8A;
	transition: all 0.3s ease;
	font-weight: 400;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.subscribe-btn:hover {
	background-color: #A17676;
	border-color: #A17676;
}

/* Social media icons styling */
.social-icon {
	color: #C4B6B6;
	transition: color 0.3s ease;
}
.social-icon:hover {
	color: #B88A8A;
}

/* ------------------------------------------------------------------- 
 * ## home social - (_site-layout.scss) 
 * ------------------------------------------------------------------- */
.home-social {
  list-style: none;
  font-family: var(--thm-font);
}

.home-social a {
  color: #C4B6B6;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.home-social li {
  position: relative;
  display: inline-block;
}

.home-social li a {
  display: block;
  width: 36px;
  height: 36px;
}

.home-social i,
.home-social span {
  position: absolute;
  top: 0;
  line-height: 36px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.home-social i {
  right: 0;
  text-align: center;
  display: inline-block;
  width: 36px;
  height: 36px;
}

.home-social a:hover  {
  color: #B88A8A;
	transition: color 0.3s ease;
}