*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
header{
    width: 100%;
    height: 90px;
    background: #000;
    box-shadow: 0 4px 12px  rgba(0, 0, 0, 0.8);
}

nav {
    max-width: 1200px;
    height: 60px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-left img {
    width: 22px;
    height: 22px;
}
.nav-left span {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}
.nav-right a {
    color: #fff;
    text-decoration: none;
    margin-left: 25px;
    font-size: 14px;
}
.nav-right a:hover {
    color: orange;
}

/* ================= FILTER BAR ================= */
.filter-bar{
    display: flex;
    justify-content: center;
    margin: 25px 0;
}

.filter-bar button{
    margin: 0 6px;
    padding: 8px 16px;
    border: none;
    background: #eee;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
}

.filter-bar button.active,
.filter-bar button:hover{
    background: orange;
    color: #fff;
}

/* ================= MENU CARDS ================= */

.menu-card{
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    background: #fff;
}

.menu-card img{
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.menu-card h3{
    margin: 10px 0 5px;
    font-size: 16px;
}

.menu-card p{
    font-size: 13px;
    color: #555;
    padding: 0 10px;
}

.menu-card span{
    display: block;
    font-weight: bold;
    margin: 8px 0;
}

.menu-card button{
    margin-bottom: 12px;
    padding: 6px 14px;
    border: none;
    background: orange;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
}

.menu-card button:hover{
    background: #e69500;
}

.footer {
    background-color: #111;
    color: #fff;
    padding: 30px 20px;
    margin-top: 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-box {
    width: 220px;
    margin-bottom: 20px;
}

.footer-box h3 {
    margin-bottom: 10px;
    color: #ff9800;
}

.footer-box a {
    color: #fff;
    text-decoration: none;
}

.footer-box a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 10px;
    font-size: 14px;
}


.main-footer {
    background: #f5f5f5;
    padding: 40px;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.footer-grid h4 {
    margin-bottom: 10px;
    font-weight: bold;
}

.footer-grid p {
    margin: 5px 0;
    cursor: pointer;
}

.payments img {
    height: 30px;
    margin-right: 8px;
}

.social span {
    display: block;
    margin-bottom: 6px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #ccc;
    padding-top: 15px;
    margin-top: 30px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

body {
    font-size: 16px;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.2rem; }
p  { font-size: 1rem; }

.menu-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
    gap: 12px;
    padding: 12px;

    @media (max-width: 480px) {
    .menu-card h3 {
        font-size: 14px;
    }
    .menu-card p {
        font-size: 11px;
    }
    .menu-card img {
        height: 120px; /* Shorter image for smaller cards */
    }
}
}

* {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

/* Sidebar hidden by default */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px; /* Hidden state */
    width: 350px;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 15px rgba(0,0,0,0.3);
    transition: 0.4s all ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

/* Jab 'active' class add hogi tab dikhega */
.cart-sidebar.active {
    right: 0;
}

.cart-header {
    background: #000;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-cart {
    font-size: 30px;
    cursor: pointer;
}

#cart-items-container {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.remove-btn {
    background: #ff4d4d;
    color: white;
    border: none;
    padding: 2px 8px;
    cursor: pointer;
    border-radius: 4px;
}

.cart-footer {
    padding: 20px;
    background: #f9f9f9;
}

.total-section {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 15px;
}

.checkout-btn {
    width: 100%;
    padding: 12px;
    background: orange;
    border: none;
    color: white;
    font-weight: bold;
    cursor: pointer;
}
/* Sidebar default state */
.cart-sidebar {
    position: fixed;
    right: -400px; /* Screen ke bahar */
    top: 0;
    width: 350px;
    height: 100%;
    background: white;
    transition: 0.4s ease;
    z-index: 9999;
    box-shadow: -5px 0 15px rgba(0,0,0,0.3);
}

/* Jab click karein toh ye class JS se add hogi */
.cart-sidebar.active {
    right: 0; 
}
.about-modern {
    background-color: #000000; /* Dark Maroon background as per image */
    color: #fff;
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.about-text {
    flex: 2;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-text p {
    margin-bottom: 20px;
}

.about-icons {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.icon-circle {
    background-color: #ffffff; 
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Responsive adjustment for mobile */

.main-footer {
    background-color: #FFB6C1; /* Dark Grey background */
    color: black;
    text-align: center;
    padding: 50px 20px;
}

.main-footer h2, .main-footer h3 {
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    flex-direction: column; /* Vertical list jaisa image mein hai */
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: #ffb6c1; /* Pinkish color for links as per your image */
    text-decoration: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links a:hover {
    color: black;
    text-decoration: underline;
}
.icon-circle {
    background-color: #ffffff; 
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Ye line picture ko circle ke bahar nahi jane degi */
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1); /* Halka glow */
    border: 2px solid #ff0000; /* Red border for PB Club theme */
}

.icon-circle img {
    width: 70%; /* Image ka size circle ke andar */
    height: auto;
    object-fit: contain;
}
.logo-box img {
    width: 70px;
    height: 70px;
}
.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: #ff9800;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
}
.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #ffd700;
    letter-spacing: 3px;
    text-shadow: 1px 1px 4px black;
}
body{
    background-color: #fdf6ee;
}
.menu-section{
    background: #fdf6ee;   /* soft cream background */
    padding: 50px 60px;
}

.menu-header{
    text-align: center;
    margin-bottom: 35px;
}

.menu-logo{
    width: 140px;
    margin-bottom: 12px;
}

/* Name design */
.menu-title{
    font-size: 38px;
    font-weight: bold;
    letter-spacing: 2px;
    font-family: 'Georgia', serif;
}

/* Culinary */
.culinary{
    color: #c75b12;   /* warm orange */
}

/* Corner */
.corner{
    color: #4a2c14;   /* dark brown */
}

.logo-circle {
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-circle img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}
header {
    background: black;
    padding: 20px 40px;
}
.top-header {
    background: linear-gradient(90deg, #fde2e4, #1a1a1a);
    padding: 18px 50px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* BRAND AREA */
.brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

.logo-circle {
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, #fff, #f1f1f1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-circle img {
    width: 65px;
    height: 65px;
    object-fit: contain;
}

.brand-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #000000;
    margin: 0;
    letter-spacing: 1px;
}

.brand-text h1 span {
    color: #e74c3c;
}

.brand-text p {
    color: #000000;
    margin-top: 6px;
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* NAV LINKS */
.nav-links a {
    color: #ffffff;
    margin-left: 22px;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #f4b41a;
}
/* ================= RESPONSIVE DESIGN ================= */

/* TABLET VIEW (Screens smaller than 992px) */
@media (max-width: 992px) {
    .nav-bar {
        padding: 10px 20px;
    }
    
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns instead of 5 */
        gap: 20px;
    }
}

@media (max-width: 768px) {
    /* Stack Logo and Text */
   .top-header {
        background: linear-gradient(90deg, #fde2e4, #1a1a1a);
        align-items: flex-start;
       gap: 15px;
    }
    
    .brand {
        flex-direction: row; 
        align-items: center;
        gap: 10px;
    }

    .logo-circle {
         width: 38px;
        height: 38px;
    }

   .brand-text h1 {
        font-size: 14px; /* Smaller title for mobile */
        color: #000000;
       font-family: 'Georgia', serif;
    }
    .brand-text p {
    display: none;
    }

   .nav-bar {
        flex-direction: column;
       margin-top: 10px;
   }

   .nav-links {
        display: flex;
        flex-direction: row;
        gap: 8px;
        margin-top: 0;
    }
     .nav-links a {
        color: #000000;
        font-size: 10px; /* Bohot chota size taaki fit ho sake */
        margin-left: 0;
        font-weight: bold;
        text-transform: uppercase;
         gap: 5px;
    }


     .nav-left img {
        width: 15px;
        height: 15px;
    }
}
@media (max-width: 600px) {
    .filter-bar {
        display: flex;
        justify-content: flex-start;
        overflow-x: auto;
        white-space: nowrap;
        padding: 15px 10px;
        gap: 10px;
        scrollbar-width: none; /* Hide scrollbar Firefox */
    }

    .filter-bar::-webkit-scrollbar {
        display: none; /* Hide scrollbar Chrome/Safari */
    }

    .filter-bar button {
        flex: 0 0 auto;
        padding: 8px 15px;
        font-size: 12px;
        border-radius: 20px; /* Capsule shape like the image */
    }
}

@media (max-width: 600px) {
    .menu-container {
        grid-template-columns: repeat(2, 1fr); /* 1 column ki jagah 2 column layout */
        gap: 12px;
        padding: 12px;
    }
    
    .menu-card img {
        height: 120px;
    }
    
    .menu-card h3 {
        font-size: 13px;
        margin: 8px 4px;
    }
    .menu-card span {
        font-size: 14px;
        margin: 5px 0;
    }
}
@media (max-width: 600px) {
    .main-footer {
        padding: 30px 15px;
        text-align: center;
    }

    .footer-content, .footer-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .about-icons {
        grid-template-columns: repeat(2, 1fr); /* Icons ko 2x2 grid mein rakhein */
        justify-items: center;
    }

    .icon-circle {
        width: 70px;
        height: 70px;
    }

    /* Contact information scaling */
    .footer-box, .social-links {
        width: 100%;
        text-align: center;
    }
}










