* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Root Variables */
:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #ff5600;
    --accent-hover: #e64d00;
    --navbar-bg: #100f0f;
    --body-font: "Poppins", sans-serif;
}

/* Top Bar */
.topbar p {
    font-size: 18px;
}

/* Logo */
.logo {
    width: 110px;
}

/* Navbar */
/* Navbar Background Image */
/* .navbar {
    background-image: url("images/hero-img.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
} */

/* Dark overlay */
.navbar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    /* Darkness intensity */
    z-index: 1;
}

/* Ensure navbar content stays above overlay */
.navbar .container {
    position: relative;
    z-index: 2;
}
/* Navbar Links */
.navbar-nav .nav-link {
    color: var(--secondary-color) !important;
    font-size: 18px;
    font-weight: 600;
    margin: 5px 10px;
    border-radius: 5px;
    /* transition: 0.3s ease-in-out; */
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary-color) !important;
    /* padding: 8px 15px; */
    /* background-color: var(--navbar-bg) !important; */
    border-radius: 5px;
}

/* Custom Button */
.btn-custom-button {
    background-color: var(--accent-color) !important;
    color: var(--secondary-color) !important;
    border-radius: 10px 10px 10px 10px;
    transition: 0.3s ease-in-out;
    border: none;
    padding: 8px 15px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}

.btn-custom-button:hover {
    background-color: var(--accent-hover) !important;
}

/* Hero Section */
.hero-section {

    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65),
     rgba(0, 0, 0, 0.3)), url("images/hero-img.jpg");    /* अपनी image यहां डालें */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 90vh;
    position: relative;
    color: var(--secondary-color);
}   

/* Overlay */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

/* Text On Top */
.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Center Logo Style */
.hero-logo {
    width: 180px;
    /* Size change according to your design */
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.6));
}
/* Title & Subtitle */
.hero-title {
    font-size: 65px;
    font-weight: 800;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 22px;
    max-width: 650px;
    margin: auto;
    font-weight: 500;
    opacity: 0.9;
}


/* about section start */
.about-section {
    background-color: #f8f8f8;
}

.about-title {
    font-size: 38px;
    font-weight: 800;
}

.about-subtitle {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-color);
}

.about-text {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

.about-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-points li {
    font-size: 18px;
    margin: 6px 0;
    color: #333;
    font-weight: 500;
}

.about-points li::before {
    content: "• ";
    color: var(--accent-color);
    font-size: 24px;
}

/* about section end     */

/* Features section start */
/* Features Section */
/* .features-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.70), rgba(0, 0, 0, 0.70)),
        url("images/bg4.jpg");
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: #fff;
} */

.features-section {
background-image: linear-gradient(rgba(0, 0, 0, 0.70), rgba(0, 0, 0, 0.70)),
        url("images/bg4.jpg");
    /* your background */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* THIS MAKES BACKGROUND FIXED (PARALLAX EFFECT) */
    background-attachment: fixed;

    padding: 80px 0;
    color: #fff;
}

.feature-box {
    padding: 20px;
}

.feature-icon {
    width: 85px;
    height: 85px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-top: 15px;
}

.feature-text {
    font-size: 16px;
    opacity: 0.85;
    margin-top: 10px;
    line-height: 1.6;
}

.underline {
    width: 40px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 15px auto 0 auto;
    border-radius: 5px;
}

/* Orange Circle Around Icon */
.icon-circle {
    width: 120px;
    height: 120px;
    border: 3px solid var(--accent-color);
    /* Orange Border */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px auto;
    transition: 0.4s ease-in-out;
}

/* Icon Image */
.feature-icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: 0.4s ease-in-out;
}

/* Hover Effect */
.icon-circle:hover {
    transform: scale(1.12);
    background-color: #e64d00;
    /* border-color: #ff7a1a; */
    /* brighter orange */
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.5);
}

.icon-circle:hover .feature-icon {
    transform: scale(1.2);
}
/* Smaller Icon Inside */
.feature-icon {
    width: 95px;
    /* icon smaller */
    height: 65px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* white icon effect */
}
/* Features section end */


/* Menu Badge */
.menu-badge {
    background: #ff5600;
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-weight: 600;
}

/* Title */
.menu-title {
    font-size: 36px;
    font-weight: 700;
}

.menu-title .highlight {
    color: var(--accent-color);
}

/* Filter List */
.menu-filter ul {
    padding: 0;
    list-style: none;
}

.menu-filter ul li {
    display: inline-block;
    margin: 0 15px;
    font-size: 19px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.menu-filter ul li:hover,
.menu-filter ul li.active {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Menu Items start */
.menu-card {
    padding-bottom: 10px;
    border-bottom: 1px dashed #ccc;
}

.menu-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #eee;
}

.menu-header {
    display: flex;
    justify-content: space-between;
}

.menu-name {
    font-size: 20px;
    font-weight: 700;
}

.menu-price {
    font-size: 18px;
    color: var(--accent-color);
    font-weight: 700;
}

.menu-desc {
    font-size: 16px;
    opacity: 0.7;
padding-top: 0;
}

.menu-item {
    transition: 0.3s ease;
}

.menu-item.hide {
    opacity: 0;
    transform: translateY(15px);
    pointer-events: none;
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* Menu Items end */

/* special section start  */
 .specials-section {
     background: #fff;
 }

 .specials-list {
     list-style: none;
     padding: 0;
     text-align: left;
 }

 .specials-list li {
     padding: 12px 0;
     font-size: 18px;
     font-weight: 600;
     cursor: pointer;
     transition: 0.3s ease;
     color: #222;
 }

 .specials-list li:hover,
 .specials-list li.active {
     color: var(--accent-color);
 }

 .special-content h3 {
     font-size: 26px;
     font-weight: 700;
     margin-bottom: 15px;
 }

 .special-content h6 {
     font-size: 16px;
     opacity: 0.7;
 }

 .special-content p {
     font-size: 15px;
     color: #444;
     margin-top: 10px;
 }

 .special-img {
     width: 260px;
     height: 260px;
     object-fit: cover;
     border: 10px solid #fff;
     box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
     transition: 0.4s ease-in-out;
 }
/* special section end  */


/* Events section start */
.events-section {
    /* background: #000; */
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95),
                rgba(0, 0, 0, 0.60)), url("images/events-bg.jpg");
        /* अपनी image यहां डालें */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        /* height: 90vh;
        position: relative; */
    padding: 60px 0;
    color: #fff;
}

.event-slide {
    min-height: 450px;
}

.event-img {
    width: 120%;
    height: 450px;
    object-fit: cover;
    padding: 60px;
}

.event-content {
    padding: 40px;
}

.event-title {
    font-size: 32px;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 10px;
}

.event-price {
    color: var(--accent-color);
    font-size: 28px;
    font-weight: 700;
}

.event-desc {
    margin: 15px 0;
    font-size: 16px;
    opacity: 0.9;
}

.event-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.event-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 16px;
}

.event-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.event-footer {
    margin-top: 15px;
    font-size: 15px;
    opacity: 0.8;
}

/* Slider indicators */
.custom-indicators button {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    border: none;
    margin: 0 5px;
    transition: 0.3s ease;
}

.custom-indicators button.active {
    background-color: var(--accent-color);
    width: 14px;
    height: 14px;
}

/* Events section end */

/* Book section start */
.book-table-section {
    background: #fff;
}

.book-table-img {
    border-radius: 10px;
    width: 100%;
    object-fit: cover;
}

.book-form .form-control {
    border-radius: 5px;
    padding: 12px;
    font-size: 15px;
    border: 1px solid #ddd;
}

.book-form .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 5px rgba(255, 150, 50, 0.4);
}

.btn-custom-button {
    background-color: var(--accent-color) !important;
    color: #fff !important;
    font-size: 18px;
    border-radius: 6px;
    font-weight: 600;
}

.btn-custom-button:hover {
    background-color: #e68a00 !important;
}

/* Book section end */


/* Food Gallery section start */
.food-gallery-section {
    background: #fff;
}

.food-subtitle {
    font-size: 20px;
    color: #f39c12;
    font-weight: 600;
}

.food-title {
    font-size: 38px;
    font-weight: 800;
    color: #1b1b1b;
}

.gallery-img {
    width: 92%;
    height: 350px;
    object-fit: cover;
    cursor: pointer;
    transition: 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
}

/* Lightbox Popup */
.lightbox {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.90);
    text-align: center;
    padding-top: 70px;
}

.lightbox img {
    max-width: 80%;
    max-height: 80vh;
    border-radius: 10px;
    animation: fadeIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    font-size: 45px;
    color: #fff;
    cursor: pointer;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* Food Gallery section end */

/* contact section start */
.contact-section-full {
    background: #fff;
    padding-bottom: 0;
}

.contact-text {
    font-size: 17px;
    color: #555;
}

/* REAL FULL WIDTH MAP */
.map-fullwidth iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}
/* contact section end */

/* Footer section start */
.footer-section {
    background: #101010;
    color: #fff;
}

.footer-box p {
    margin: 0;
    margin-top: 10px;
    font-size: 15px;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-icon {
    color: #ff5600;
    font-size: 22px;
}

.footer-line {
    border-color: rgba(255, 255, 255, 0.2);
    margin-top: 30px;
    margin-bottom: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 16px;
}
.footer-link {
    color: #ff5600;
    text-decoration: none;
}
.footer-link:hover {
    color: #ff9900;
}

/* Social Icons */
.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    margin: 0 8px;
    font-size: 20px;
    color: #fff;
    transition: 0.3s ease;
}

.social-icons a:hover {
    background: #ffb347;
    color: #20160E;
    border-color: #ffb347;
}


/* Footer section end */



