/* Custom styles for the fashion theme */
body {
	font-family: 'Montserrat', sans-serif;
	background-color: #fdfdfd;
	color: #333;
}

.split-layout {
	display: grid;
	grid-template-columns: 1fr;
	min-height: 100vh;
}

@media (min-width: 768px) {
	.split-layout {
		grid-template-columns: 50% 50%;
	}
}

/* Left side with the background image */
.image-side {
	background-image: url('https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?q=80&w=1920&auto=format&fit=crop');
	background-size: cover;
	background-position: center 30%;
	min-height: 40vh;
	animation: fadeInImage 2s ease-out;
}

@keyframes fadeInImage {
	from { opacity: 0; }
	to { opacity: 1; }
}

/* Right side with the content */
.content-side {
	padding: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	animation: fadeInContent 1.5s 0.5s ease-out forwards;
	opacity: 0;
}

@keyframes fadeInContent {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

/* Custom font for titles */
.title-font {
	font-family: 'Playfair Display', serif;
	font-weight: 400;
}

.brand-logo {
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	letter-spacing: 0.5em;
	text-transform: uppercase;
}

/* Countdown timer styling */
.countdown-number {
	font-family: 'Playfair Display', serif;
	color: #111;
	line-height: 1;
}
.countdown-label {
	color: #888;
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

/* Subscription form styling */
.subscribe-input {
	background: transparent;
	border: none;
	border-bottom: 1px solid #ccc;
	color: #333;
	transition: all 0.3s ease;
	text-align: center;
	border-radius: 0;
}
.subscribe-input::placeholder {
	color: #aaa;
}
.subscribe-input:focus {
	outline: none;
	border-bottom-color: #333;
}
.subscribe-btn {
	background-color: #333;
	color: #fff;
	border: 1px solid #333;
	transition: all 0.3s ease;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.subscribe-btn:hover {
	background-color: #fff;
	color: #333;
}


/* ------------------------------------------------------------------- 
 * ## home social - (_site-layout.scss) 
 * ------------------------------------------------------------------- */
.home-social {
  list-style: none;
  font-family: var(--thm-font);
}

.home-social a {
  color: #999999;
  -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: #000;
	transition: color 0.2s ease;
}