:root {
    --dark-brown: #4B2E2B;
    --green: #2F5D50;
    --beige: #EFE6D8;
    --gold: #D4AF37;
    --white: #ffffff;
    --bg-dark: #1a1110;
    --text-light: #f3f3f3;
}

/* ===================== Global ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--beige) 0%, var(--gold) 100%);
    color: var(--dark-brown);
    transition: 0.3s;
}

/* ===================== Navbar ===================== */
.navbar {
    background: var(--beige);
    transition: 0.3s;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--dark-brown);
    padding: 0;
    transition: transform 0.3s ease;
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -ms-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.logo {
    height: 60px;
    width: auto;
    transition: 0.3s;
}

.logo:hover {
    transform: scale(1.2) rotate(5deg);
}

.nav-link {
    color: var(--dark-brown);
    margin-left: 20px;
    position: relative;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--gold);
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--gold);
    font-weight: 500;
}

/* ===================== Home ===================== */
.home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.home h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
    -webkit-animation: fadeInUp 0.8s ease;
}

.home h1 span {
    color: var(--green);
    display: block;
}

.home p {
    max-width: 480px;
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s backwards;
}

/* ===================== Buttons ===================== */
.btn-main {
    background: var(--dark-brown);
    color: var(--white);
    border-radius: 50px;
    padding: 14px 36px;
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(75, 46, 43, 0.2);
}

.btn-main:hover {
    background: var(--green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(75, 46, 43, 0.3);
}

.btn-outline {
    border: 2px solid var(--dark-brown);
    color: var(--dark-brown);
    border-radius: 50px;
    padding: 14px 36px;
    background: transparent;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--dark-brown);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(75, 46, 43, 0.3);
}

/* ===================== Sections ===================== */
.Choose {
    background: url("img/home/cover.jpg");
    color: var(--text-light);
}

.fs-1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.Choose:hover .fs-1 {
    transform: scale(1.2) rotate(5deg);
}

.imagea {
    max-width: 75%;
    animation: float 4s ease-in-out infinite;
    transition: 0.3s;
}

/* ===================== Dark Mode ===================== */
body.dark {
    color: var(--text-light);
    background: var(--bg-dark);
}

body.dark .navbar {
    background: rgba(26, 17, 16, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

body.dark .navbar-brand {
    color: var(--text-light);
}

body.dark .logo {
    background: var(--text-light);
    border-radius: 50px;
}

body.dark .nav-link {
    color: var(--text-light);
}

body.dark .nav-link.active {
    color: var(--gold);
}

body.dark .home h1 span {
    color: var(--gold);
}

body.dark .btn-outline {
    border-color: var(--text-light);
    color: var(--text-light);
}

body.dark .btn-outline:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark-brown);
}

/* ===================== Animations ===================== */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}









/* ========================Mohy============================ */
/* ================== Buttons ================== */

.btn-cart {
    background-color: var(--gold);
    color: var(--dark-brown);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
}

.btn-cart:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    color: var(--dark-brown);
}

.badge {
    min-width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ================== Section Title ================== */

.section-title {
    color: var(--green);
    border-bottom: 2px solid var(--green);
    padding-bottom: 0.5rem;
    margin: 2rem 0 1.5rem 0;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

/* ================== Menu Cards ================== */

.menu-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--beige) 100%);
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.menu-card img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    border-radius: 12px 12px 0 0;
    background-color: #f8f8f8;
    padding: 0;
}

/* ================== Menu Content ================== */

.menu-item-name {
    color: var(--dark-brown);
    font-weight: bold;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.menu-item-description {
    color: var(--dark-brown);
    opacity: 0.7;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.menu-item-price {
    color: var(--gold);
    font-weight: bold;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* ================== Add To Cart Button ================== */

.btn-add-cart {
    background: linear-gradient(90deg, var(--green) 0%, var(--dark-brown) 100%);
    color: var(--beige);
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 12px;
    font-weight: bold;
    width: 100%;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.btn-add-cart::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-add-cart:active::before {
    width: 300px;
    height: 300px;
}

.btn-add-cart:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: var(--beige);
}

.btn-add-cart:active {
    transform: scale(0.97);
}

/* ================== SLIDER STYLES ================== */

.menu-section {
    margin-bottom: 3rem;
}

.slider-wrapper {
    position: relative;
    margin: 2rem 0;
    padding: 0 3.5rem;
}

.slider-container {
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-item {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 280px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gold);
    color: var(--dark-brown);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    font-size: 1rem;
}

.slider-btn:hover:not(:disabled) {
    background: var(--dark-brown);
    color: var(--gold);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.slider-btn.left {
    left: 0;
}

.slider-btn.right {
    right: 0;
}

/* ================== NOTIFICATION TOAST ================== */

.notification {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: bottom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    white-space: nowrap;
    font-size: 0.95rem;
}

.notification.show {
    bottom: 30px;
}

/* ================== DARK MODE FOR NEW ELEMENTS ================== */

body.dark .menu-card {
    background: linear-gradient(135deg, rgba(26, 17, 16, 0.8) 0%, rgba(75, 46, 43, 0.6) 100%);
}

body.dark .menu-item-name {
    color: var(--text-light);
}

body.dark .menu-item-description {
    color: var(--text-light);
    opacity: 0.8;
}

body.dark .slider-btn {
    background: var(--beige);
    color: var(--dark-brown);
}

body.dark .slider-btn:hover:not(:disabled) {
    background: var(--gold);
    color: var(--dark-brown);
}

body.dark .notification {
    background: var(--gold);
    color: var(--dark-brown);
}

body.dark .section-title {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

/* ================== RESPONSIVE DESIGN ================== */

@media (max-width: 992px) {
    .slider-item {
        flex: 0 0 calc(50% - 10px);
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .menu-card:hover {
        transform: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .slider-wrapper {
        padding: 0 2.5rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .slider-item {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .slider-wrapper {
        padding: 0 2rem;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .notification {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
}






/* ================== Menna ================== */
/* ================== GALLERY STYLES ================== */

.gallery {
    background: transparent;
}

.gallery h1 {
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 2rem;
}

.gallery h2 {
    font-size: 1.8rem;
    color: var(--green);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gallery h2 i {
    color: var(--gold);
}

.place {
    padding: 0 1rem;
}

.imgss {
    width: 100%;
    max-width: 350px;
    height: 280px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.imgss:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.imgss.zoomed {
    transform: scale(1.5);
    z-index: 10;
}

@keyframes zoomIn {
    from {
        transform: translate(-50%, -50%) scale(1);
    }

    to {
        transform: translate(-50%, -50%) scale(1.5);
    }
}

.imgss.zoomed::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: -1;
}

.carousel {
    max-width: 800px;
    margin: 0 auto;
}

.car_img {
    max-width: 600px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: var(--dark-brown);
}

.carousel-control-prev {
    left: -60px;
}

.carousel-control-next {
    right: -60px;
}

body.dark .gallery h1,
body.dark .gallery h2 {
    color: var(--text-light);
}

body.dark .gallery h2 {
    color: var(--gold);
}

body.dark .imgss {
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

body.dark .imgss:hover {
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .gallery h1 {
        font-size: 2rem;
    }

    .gallery h2 {
        font-size: 1.5rem;
        padding: 2rem 1rem !important;
    }

    .imgss {
        max-width: 300px;
        height: 240px;
    }

    .car_img {
        max-width: 100%;
        height: 300px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    .carousel-control-prev {
        left: -20px;
    }

    .carousel-control-next {
        right: -20px;
    }
}

@media (max-width: 576px) {
    .imgss {
        max-width: 100%;
        height: 220px;
    }

    .car_img {
        height: 250px;
    }

    .imgss.zoomed {
        transform: translate(-50%, -50%) scale(1.2);
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}




/* _______________________________________________________ */
/* ================== FOOTER ================== */

.footer {
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--green) 100%);
    color: var(--white);
    padding: 4rem 0 1rem;
    margin-top: 5rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    background: var(--white);
    border-radius: 50%;
    padding: 5px;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-subtitle::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--gold);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--dark-brown);
    transform: translateY(-5px);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 25px;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

/* Opening Hours */
.footer-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-hours li {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-hours li:last-child {
    border-bottom: none;
}

.footer-hours li span:first-child {
    color: var(--gold);
    font-weight: 600;
}

.footer-hours li span:last-child {
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Info */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact li i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.footer-contact li span {
    line-height: 1.6;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Dark Mode for Footer */
body.dark .footer {
    background: linear-gradient(135deg, rgba(26, 17, 16, 0.95) 0%, rgba(47, 93, 80, 0.95) 100%);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1rem;
        margin-top: 3rem;
    }

    .footer-title {
        font-size: 1.5rem;
    }

    .footer-subtitle {
        font-size: 1.1rem;
    }

    .footer-section {
        margin-bottom: 2.5rem;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom .col-md-6 {
        margin-bottom: 1rem;
    }
}