:root {
    --african-turquoise: #000000;
    --royal-white: #fdfdfd;
    --red-pink: #FF4F7B;
    --sea-blue: #006994;
}

body {
    font-family: 'Open Sans', sans-serif;
}

h1,
h2,
h3,
.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Navbar */
.navbar {
    background-color: rgba(0, 0, 0, 0.41) !important;
    padding: 1.3rem 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    z-index: 9999999999;
}

.navbar-brand {
    position: absolute;
    background-color: rgb(0 0 0) !important;
    /* background-color: var(--red-pink) !important; */
    border-radius: 0 0 60px 60px;
    margin-top: 59px;
    padding: 12px !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.navbar-brand img {
    height: 120px;
}

.frosted-glass {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(64, 47, 39, 0.7);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.frosted-glass .navbar-nav .nav-link {
    color: white;
}

.frosted-glass .navbar-brand img {
    filter: brightness(1.2);
}

.navbar.scrolled {
    padding: 1rem 0;
    background-color: var(--royal-white) !important;
}

.nav-link {
    color: #fff !important;
    font-weight: 600;
    margin: 0 1.2rem;
    transition: color 0.3s;
    font-size: 18px;
}

.nav-link:hover {
    color: var(--red-pink) !important;
}

.navbar-toggler {
    margin-right: 13px;
    background-color: var(--royal-white)
}

/* Hero */
.hero {
    background: linear-gradient(rgba(143, 144, 145, 0), rgba(72, 73, 74, 0.13)), url('../../assets/images/hero/1.png') center/cover no-repeat fixed;
    min-height: 85vh;
    display: flex;
    align-items: flex-end;
    text-align: center;
    justify-content: center;
    color: white;
    position: relative;
    z-index: 999;
}

.hero-content {
    max-width: 900px;
    padding: 2.5rem;
}

.hero h1 {
    font-size: 5.2rem;
    margin-bottom: 1.4rem;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.7rem;
    margin-bottom: 2.8rem;
    opacity: 0.95;
    font-weight: 300;
}

/* Hero section */
.hero .btn-custom {
    background-color: var(--red-pink);
    color: var(--royal-white);
    padding: 15px 40px;
    font-size: 1.2rem;
    border: 2px solid var(--red-pink);
    border-radius: 50px;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}

.hero .btn-custom:hover {
    background-color: transparent;
    color: var(--royal-white);
    transform: translateY(-3px);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 10px 20px;
}

/* --- */
.btn-custom {
    background-color: var(--red-pink);
    color: var(--royal-white);
    padding: 15px 40px;
    font-size: 1.2rem;
    border: medium;
    border-radius: 50px;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-custom:hover {
    background-color: var(--sea-blue);
    color: var(--royal-white);
    transform: translateY(-3px);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 10px 20px;
}

/* Sections */
.section-padding {
    padding: 110px 0 0px 0;
}

.section-title {
    text-align: center;
    color: var(--red-pink);
    position: relative;

    /*  */

    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 5px;
    background: var(--red-pink);
    border-radius: 3px;
}

/* Special cards with banner images */
.special-card {
    background: white;
    border: 2px solid var(--red-pink);
    border-radius: 20px;
    padding: 0;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
}

.special-card-banner {
    width: 100%;
    height: 240px;
    background-size: cover;
    /* background-position: center; */
    position: relative;
    overflow: hidden;
}

.special-card-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(77, 188, 189, 0.04), rgba(64, 47, 39, 0.09)); */
    z-index: 1;
}

.special-card-banner .day {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--royal-white);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.64);
    margin: 0;
}

.special-card-content {
    padding: 2.5rem;
}

.special-card:hover {
    transform: translateY(-14px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.special-card .price {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--african-turquoise);
    margin: 0.8rem 0;
}

.special-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--sea-blue);
    margin-bottom: 1rem;
}

.special-card p {
    color: var(--african-turquoise);
    margin-bottom: 0;
}

.special-card .all-day {
    color: var(--african-turquoise);
}

/* Full Menu Section */

#menu {
    background: linear-gradient(to bottom, #fdfdfd, rgba(var(--red-pink), 0.5));
}


.food-item-price-badge {
    color: var(--royal-white) !important;
    background-color: var(--red-pink) !important;
}

/* .list-group-item {
    color: var(--sea-blue) !important;
} */

/* Gallery */

#gallery {
    background: linear-gradient(to bottom, var(--royal-white), #FF4F7B5E);
}

.gallery-img {
    border-radius: 18px;
    object-fit: cover;
    height: 320px;
    width: 100%;
    padding: 6px;
    background: var(--red-pink);
    transition: transform 0.5s ease;
}

.col-md-4>a {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 18px;
}

/* Eye icon with circle background */
.col-md-4>a::before {
    content: '\f00e';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 1.5rem;
    color: white;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.4s ease;
    opacity: 0;
}

.col-md-4>a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 18px;
    z-index: 9;
}

.col-md-4>a:hover::before {
    transform: translate(-50%, -50%) scale(1) rotate(360deg);
    opacity: 1;
}

.col-md-4>a:hover::after {
    opacity: 1;
}

.col-md-4>a:hover .gallery-img {
    transform: scale(1.1);
}

/* Clean & Professional Contact Section */

#contact {
    background: #ffffff;
    position: relative;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 3.5rem;
    font-weight: 400;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e5e5e5;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--red-pink);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Icon Styling */
.contact-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: var(--sea-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: var(--red-pink);
    transform: scale(1.05);
}

.contact-card i {
    font-size: 1.75rem;
    color: var(--royal-white);
    transition: color 0.3s ease;
}

.contact-card:hover i {
    color: #ffffff;
}

/* Text Styling */
.contact-card h4 {
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--sea-blue);
    margin-bottom: 0.75rem;
    letter-spacing: 0.3px;
}

.contact-card p,
.contact-card a {
    color: var(--sea-blue);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

.contact-card a {
    text-decoration: none;
    font-weight: 500;
}

/* .contact-card:hover p,
.contact-card:hover a {
    color: #1a1a1a;
} */

/* Divider */
.contact-divider {
    width: 60px;
    height: 3px;
    background: #D4AF37;
    margin: 0 auto 3rem;
    border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .contact-grid {
        gap: 1.5rem;
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }
}

@media (min-width: 769px) and (max-width: 991px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .navbar-collapse {
        margin-left: 160px;
        /* Space for logo */
    }
}

@media (max-width: 991.98px) {

    /* Adjust navbar padding */
    .navbar {
        padding: 0.8rem 0;
    }

    /* Logo adjustments for mobile */
    .navbar-brand {
        position: relative;
        left: 2px;
        top: -2px;
        border-radius: 60px 60px 60px 60px;
        margin-top: 0px;
        margin-left: 15px;
        padding: 17px !important;
        border: 1px solid white;
    }

    .navbar-brand img {
        height: 80px;
    }

    /* Center the mobile language selector */
    .mobile-lang-container {
        position: absolute;
        right: 70px;
        top: 50%;
        transform: translateY(-50%);
    }

    .mobile-lang-container .lang-select {
        width: 100px;
        font-size: 14px;
        padding: 4px 10px;
    }

    /* Collapse menu adjustments */
    .navbar-collapse {
        margin-top: 20px;
        padding: 20px 0;
        border-radius: 10px;
    }

    /* Mobile nav items */
    .navbar-nav {
        padding: 0 20px;
    }

    .nav-link {
        margin: 0.5rem 0;
        padding: 0.5rem 1rem !important;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* .nav-link:last-child {
        border-bottom: none;
    } */

    /* Hamburger menu positioning */
    .navbar-toggler {
        position: relative;
        right: 15px;
        top: 50%;
    }
}

/* Extra small devices */
@media (max-width: 575.98px) {
    .navbar-brand img {
        height: 42px;
    }

    .mobile-lang-container .lang-select {
        width: 90px;
        font-size: 13px;
    }

    .nav-link {
        font-size: 16px;
    }
}

/* Very small devices */
@media (max-width: 374px) {
    .navbar-brand {
        left: 0px;
    }

    .lang-select-div {
        position: relative !important;
        left: 14% !important;
        transform: translateX(-50%);
    }

    .navbar-brand img {
        height: 52px;
    }

    .navbar-brand {
        padding: 7px !important;
    }

    .mobile-lang-container {
        right: 60px;
    }

    .mobile-lang-container .lang-select {
        width: 80px;
        font-size: 12px;
        padding: 3px 8px;
    }

    .navbar-toggler {
        right: 10px;
    }
}

/* Footer */
footer {
    background: var(--african-turquoise);
    color: #d0d0d0;
    padding: 4rem 0 2rem;
    text-align: center;
}

footer a {
    color: var(--dark-stone);
    text-decoration: none;
    font-weight: 500;
}

footer a:hover {
    color: white;
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 4rem;
    }

    .section-padding {
        padding: 80px 0;
    }

}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 3rem;
    }

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

.lang-select {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 20px;
    padding: 6px 14px;
    font-weight: 600;
    width: 115px;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.lang-select option {
    color: #000;
}


.navbar-toggler:focus {
    box-shadow: none;
}

.lang-select-div {
    position: relative;
    left: 10%;
    transform: translateX(-50%);
}

/* Delivery Modal */

.contactless-ordering-modal .modal-header {
    background-color: var(--red-pink);
    color: white;
    border: none;
}

.contactless-ordering-modal .modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.contactless-ordering-modal .qr-container {
    background-color: white;
    /* padding: 2rem; */
    /* border-radius: 10px; */
    margin: 1rem 0;
}

.contactless-ordering-modal .qr-code {
    width: 250px;
    height: 250px;
    margin: 0 auto;
    display: block;
    /* border: 2px solid var(--red-pink);
    padding: 8px;
    border-radius: 10px; */
}

.contactless-ordering-modal .scan-instruction {
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: #333;
}

.contactless-ordering-modal .url-text {
    font-size: 0.95rem;
    color: #666;
    margin-top: 1rem;
}

.contactless-ordering-modal .location-info {
    margin-top: 1.5rem;
    color: #333;
}

.contactless-ordering-modal .restaurant-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contactless-ordering-modal .address {
    font-size: 0.9rem;
    color: #666;
}

.contactless-ordering-modal .ubereats-logo {
    margin-top: 2rem;
    font-size: 1.2rem;
    color: var(--sea-blue);
    font-weight: 500;
}

.contactless-ordering-modal .ubereats-logo span {
    color: #333;
}

.contactless-ordering-modal .modal-content {
    border: none;
    border-radius: 15px;
}

.accordion-header {
    margin-bottom: 0;
    border: 1px solid var(--red-pink);
}

.accordion-button {
    color: var(--sea-blue);
    background-color: var(--royal-white);
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}


.accordion-button:not(.collapsed) {
    color: var(--sea-blue);
    background-color: var(--royal-white);
    /* box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color) */
}


.accordion-button:focus {
    box-shadow: none;
    border: none;
}


.nav-btn {
    background-color: transparent;
    color: var(--royal-white);
    font-size: 0.9rem;
    border: 1px solid var(--red-pink);
    border-radius: 10px;
    transition: 0.3s;
    text-decoration: none;
    /* padding: 10px; */
}


.nav-btn:hover {
    background-color: var(--red-pink);
    color: var(--royal-white) !important;
}

.nav-btn .nav-link:hover {
    color: var(--royal-white) !important;
}

