/*
Theme Name: Lebanese
Theme URI: #
Author: Justin
Author URI: #
Description: Fresh lebanese.
Requires at least: 6.7
Tested up to: 6.9
Requires PHP: 7.2
Version: 1.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lebanese
Tags: #
*/

@import url('assets/css/font.css');

:root {
	--primary-color: #000000;
	--secondary-color: #ffffff;
	--saffron-color: #DFA21D;
	--mustard-deep-color: #BC850F;
	--gray-color: #F4F4F4;
}

html {
	scroll-behavior: smooth;
}
  
body {
	background: var(--secondary-color);
	font-family: 'Raleway', sans-serif;
}

.font-JonathanSignature {
	font-family: 'JonathanSignature', sans-serif;
}

.font-Poppins {
	font-family: 'Poppins', sans-serif;
}

.container {
	max-width: 1280px;
	padding: 0px 15px;
	margin: auto;
}

ul li{
	list-style-type: none;
}

.list-style-custom {
  list-style-image: url('../lebanese/assets/images/icons/list-style-mark.svg');
  list-style-position: inside;
}

.fixed-header {
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
	animation: sticky 0.4s ease-out forwards;
	-webkit-animation: sticky 0.6s ease-out forwards;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

@keyframes sticky {
	0% {
		top: -200px;
	}
	100% {
		top: 0;
	}
}

.menu-line,
.menu-line::before,
.menu-line::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 3px;
	background: #000;
	transition: all 0.3s ease;
}

.menu-line {
	top: 50%;
	transform: translateY(-50%);
}

.menu-line::before {
  	top: -8px;
}

.menu-line::after {
  	top: 8px;
}

.menu-open .menu-line {
  	background: transparent;
}

.menu-open .menu-line::before {
	transform: rotate(45deg);
	top: 0;
}

.menu-open .menu-line::after {
	transform: rotate(-45deg);
	top: 0;
}

.daily-table-section,
.follow-us-section,
.eat-house-list-section,
.weekend-section {
	background-size: 100%; 
}

@media (max-width: 1850px) {
    .daily-table-section,
	.follow-us-section,
	.eat-house-list-section,
	.weekend-section {
		background-size: cover; 
	}
}

.swiper-pagination-bullet{
	width: 13px !important;
	height: 13px !important;
}

.swiper-pagination-bullet-active{
	background-color: #000 !important;
}

.heading-before::before {
	content: "";
	position: absolute;
	left: 0;
	top: 100%;
	transform: translateY(-50%);
	width: 100%;
	height: 40px;
	background: url('../lebanese/assets/images/icons/contact-line.svg') no-repeat center;
	background-size: contain;
}

.float-img {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
.input-field {
    border: 1px solid #000;
    border-radius: 14px;
    padding: 14px 18px;
    font-size: 1.125rem;
    margin-top: 0.5rem;
    width: 100%;
}
 
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;          
    padding: 14px 18px;  
    border-radius: 56px;  
    font-size: 1rem;      
    font-weight: 600;      
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    color: var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s ease;
	max-width: fit-content;
}
 
@media (min-width: 640px) {
    .btn-primary {
        font-size: 1.125rem;
    }
}
 
.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}
