/*============================================================
 Template Name: Anglo Egyptian Foods
 Template URI: https://awemedia.co
 Description: Template for Anglo Egyptian Foods
 Author: AWE MEDIA
 Author URI: https://awemedia.co
 Version: 1.0
 ============================================================
 */
:root {
    --aef-blue: #121761; /* Deep blue */
    --aef-orange: #FFA300; /* Bright orange */
    --aef-dark: #000000;
    --aef-gray: #dedede;
    --aef-dark2: #444444;
}
.color-aef-blue {
    color: var(--aef-blue);
}

.bg-aef-blue {
    background-color: var(--aef-blue);
}

.color-aef-orange {
    color: var(--aef-orange);
}

.bg-aef-orange {
    background-color: var(--aef-orange);
}
.border-aef-orange {
    border: 1px solid var(--aef-orange);
}
.border-aef-dark {
    border: 1px solid var(--aef-orange);
}
.border-top-aef-orange {
    border-top: 1px solid var(--aef-orange);
}
.border-bottom-aef-orange {
    border-bottom: 1px solid var(--aef-orange);
}
.bg-aef-dark {
    background-color: var(--aef-dark);
}
.text-primary {color: #078586!important;}
.text-bold {font-weight: bold!important;}

body {
    font-family: 'Cabin', sans-serif;
    background-image: url('/wp-content/themes/anglo_egyptian_foods/images/vector_pattern.png');
    background-repeat: repeat;
    background-size: 300px 300px; /* Adjust width and height as needed */
    background-position: top left;
}
h1, h2, h3,h4,h5 {
    font-family: 'Cinzel', serif;
}
h5 {
    font-size: 1.6em;
    font-weight: bold;
}
.aef-border-top {
    background-image: url('/wp-content/themes/anglo_egyptian_foods/images/aef_pattern.png');
    background-repeat: repeat-x;
    background-size: contain;
    background-position: top;
    height: 100px; /* Adjust height to match the pattern */
}

.aef-border-bottom {
    background-image: url('/wp-content/themes/anglo_egyptian_foods/images/aef_pattern.png');
    background-repeat: repeat-x;
    background-size: contain;
    background-position: bottom;
    height: 100px; /* Adjust height to match the pattern */
}
a {
    color: var(--aef-orange)!important;
    text-decoration: none!important;
}
.btn-primary {
    color: var(--aef-orange);
    border: 1px solid var(--aef-orange);
    background-color: transparent;
    font-size: 1.25em;
    transition: all 0.3s ease-in-out;
    font-weight: 400!important;
    border-radius: 0;
}

.btn-primary:focus, .btn-primary:hover {
    color: black!important;
    border: 1px solid var(--aef-orange)!important;
    background-color: var(--aef-orange)!important;
    outline: none!important;
}
h1 {
    font-size: 1.8em;
    text-transform: uppercase;
}
h2 {
    font-size: 1.5em;
    text-transform: uppercase;
}
.main2 {
    max-width:1800px;
}
.bta_red {
    color: #002D62!important;
}
.bta_border_red {
    border: 1px solid var(--aef-orange)!important;
}
.aef_box {
    background-color: #FFF !important;
    color: #000 !important;
    border: 1px solid var(--aef-dark2) !important;
}
.navbar-light {
    background-color: #000000 !important;
}
.navbar-brand, .nav-link {
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    font-size: 1.1rem;
    font-weight: bold;
    color: #FFFFFF !important;
    padding: 10px 15px;
    transition: background-color 0.3s ease;
}
.nav-link:hover {
    color: #000000 !important;
    background-color: var(--aef-orange);
    border-radius: 5px;
}
.navactive {
    color: #000000 !important;
    background-color: var(--aef-orange);
    border-radius: 5px;
}
.nav-link .socm:hover {
    color: #FFF !important;
    background-color: #000 !important;
}
header.bg-primary {
    background-color: #333333 !important;
}
footer.bg-light {
    background-color: #111111 !important;
    color: #ffffff;
}
footer a {
    color: #d1a054;
}
footer a:hover {
    color: #ffffff;
}
.offcanvas {
    background-color: #111111 !important;
    color: #ffffff;
}
.offcanvas a {
    /*color: #ffffff !important;*/
}
.offcanvas a:hover {
    /* color: #ffffff !important;*/
 }

 /* Styling the scroll to top button */
#scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #444;
    border: none;
    border-radius: 50%;
    border-color: white!important;
    color: white;
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    z-index: 1000;
    transition: background 0.3s ease;
}
#scrollToTopBtn:hover {
    background-color: #333;
}
.custom-container {
    max-width: 1800px; /* or any width you prefer */
    margin: 0 auto; /* center align */
    padding: 0 15px; /* standard padding */
}
/* Adjust padding for smaller devices */
@media (max-width: 576px) { /* Targeting mobile screens */
    .custom-container {
        padding: 0; /* Reduce padding on mobile */
    }
}
.custom-select {
    background-color:var(--aef-orange); /* Red background */
    color: white; /* White text */
    font-family: 'Cabin', sans-serif; /* Use Cabin font */
    font-size: 1.4em;
    border: none; /* Remove default border */
    padding: 8px 12px; /* Adjust padding as needed */
    border-radius: 5px; /* Add a slight border radius for better appearance */
    appearance: none; /* Hide default arrow */
    -webkit-appearance: none; /* For Safari */
    -moz-appearance: none; /* For Firefox */
    text-align: center;
}

/* Add a custom arrow icon */
.custom-select::after {
    content: '▼'; /* Custom dropdown arrow */
    position: absolute;
    right: 15px;
    pointer-events: none; /* Allow clicks through to the select */
    color: white;
}