
/* Custom styles for the restaurant theme */
body {
	font-family: 'Montserrat', sans-serif;
	background-color: #1a1a1a;
	position: relative;
	overflow-x: hidden;
}

/* Full-screen background image with a slow zoom (Ken Burns) effect */
.background-image {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -2;
	background-image: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?q=80&w=2070&auto=format&fit=crop');
	background-size: cover;
	background-position: center center;
	animation: kenburns 30s ease-out infinite;
}

@keyframes kenburns {
	0% { transform: scale(1); }
	50% { transform: scale(1.1); }
	100% { transform: scale(1); }
}

/* Dark overlay for better text readability */
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.65);
	z-index: -1;
}

/* Main content fade-in animation */
.main-content {
	animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

/* Custom font for the main title */
.title-font {
	font-family: 'Playfair Display', serif;
	color: #D4A762; /* A warm gold color */
}

/* Countdown timer styling */
.countdown-box {
	background: rgba(26, 26, 26, 0.5);
	border: 1px solid rgba(212, 167, 98, 0.2);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.countdown-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 0 15px rgba(212, 167, 98, 0.3);
}
.countdown-number {
	font-family: 'Playfair Display', serif;
	color: #F3EFE0;
}

/* Subscription form styling */
.subscribe-input {
	background: rgba(26, 26, 26, 0.7);
	border: 1px solid rgba(212, 167, 98, 0.4);
	color: #e0e0e0;
	transition: all 0.3s ease;
}
.subscribe-input::placeholder {
	color: #888;
}
.subscribe-input:focus {
	outline: none;
	border-color: #D4A762;
	box-shadow: 0 0 10px rgba(212, 167, 98, 0.5);
}
.subscribe-btn {
	background-color: #D4A762;
	color: #1a1a1a;
	border: none;
	transition: all 0.3s ease;
}
.subscribe-btn:hover {
	background-color: #F3EFE0;
	color: #1a1a1a;
	transform: scale(1.05);
}

/* ------------------------------------------------------------------- 
 * ## 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: #fff;
	transition: color 0.2s ease;
}