/* Updated Global Styles */
:root {
    --black: hsl(0, 0%, 0%);
    --white: #ffffff;
    --gray-1: #f8f8f8;
    --gray-2: #e0e0e0;
    --gray-3: #888888;
    --accent-gold: #c5a47e;
    --primary-black: #1a1a1a;
    --pure-white: #ffffff;
    --text-gray: #4a4a4a;
    --light-bg: #f9f9f9;

}
/* Owner Image Styling */
.owner-image {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.owner-photo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ff9966;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.owner-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .about-container h2 {
        font-size: 2rem;
    }

    .about-content p {
        font-size: 1rem;
        padding: 20px;
    }
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background-color: #D44638; /* Gmail Red */
    color: white !important;
    border-radius: 30px;
    margin-top: 1.5rem;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease;
    max-width: 100%; /* Ensure it stays within the parent container */
    overflow-wrap: break-word; /* Break long email addresses */
    white-space: normal; /* Allow text to wrap inside */
}

.email-link:hover {
    transform: scale(1.05);
}

/* Mobile view adjustments */
@media (max-width: 768px) {
    .email-link {
        font-size: 12px; /* Smaller font size on mobile */
        padding: 10px 20px; /* Adjust padding for smaller screens */
    }
}




.menu-warning {
    max-width: 600px;
    margin: 20px auto;
    background-color: #fff8f0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #ffe4cc;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.warning-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ffd8b3;
    color: #c05621;
    font-size: 1.2em;
}

.warning-header strong {
    margin-left: 8px;
}

.warning-content ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
    color: #4a4a4a;
    line-height: 1.6;
}

.warning-content li {
    padding: 8px 0;
    display: flex;
    align-items: baseline;
}

.warning-content li:before {
    content: "•";
    color: #ffa726;
    margin-right: 10px;
}

.whatsapp-link {
    color: #25D366;
    text-decoration: none;
    font-weight: 500;
}

.instagram-link {
    color: #E1306C;
    text-decoration: none;
    font-weight: 500;
}

.whatsapp-link:hover, .instagram-link:hover {
    text-decoration: underline;
}

.warning-content strong {
    color: #c53030;
}

/* Responsive Design */
@media (max-width: 480px) {
    .menu-warning {
        margin: 15px;
        padding: 15px;
    }
    
    .warning-header {
        font-size: 1.1em;
    }
}
/* About Section - Modern Professional Design */
#about {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0b0b0b 0%, #1a1a1a 100%);
    font-family: 'Poppins', sans-serif;
    color: #eaeaea;
    line-height: 1.8;
    display: none;
    position: relative;
}

#about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(197,164,126,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(197,164,126,0.1)"/></svg>');
    pointer-events: none;
}

#about.active {
    display: block;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.about-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.about-hero h2 {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 3.2rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    position: relative;
}

.about-hero h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    margin: 20px auto 0;
    border-radius: 2px;
}

.about-subtitle {
    font-size: 1.3rem;
    color: #b8b8b8;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 1px;
}

.story-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 5rem;
}

.image-frame {
    position: relative;
    display: inline-block;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, var(--accent-gold), #ff9966);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
}

.owner-photo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    z-index: 1;
}

.owner-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-gold), #b8956d);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.story-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.story-paragraph {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 164, 126, 0.2);
    transition: all 0.3s ease;
}

.story-paragraph:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
    border-color: rgba(197, 164, 126, 0.4);
}

.paragraph-number {
    font-family: 'Cinzel Decorative', serif;
    font-size: 2rem;
    color: var(--accent-gold);
    font-weight: bold;
    min-width: 40px;
    opacity: 0.8;
}

.story-paragraph p {
    font-size: 1.1rem;
    color: #e8e8e8;
    line-height: 1.7;
    margin: 0;
    letter-spacing: 0.3px;
}

.story-paragraph.final {
    border: 2px solid var(--accent-gold);
    background: rgba(197, 164, 126, 0.1);
}

.values-section {
    text-align: center;
}

.values-section h3 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 164, 126, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(197, 164, 126, 0.1), transparent);
    transition: left 0.6s ease;
}

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(197, 164, 126, 0.2);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.value-card h4 {
    font-size: 1.4rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    font-size: 1rem;
    color: #c8c8c8;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-hero h2 {
        font-size: 2.2rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .story-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .owner-photo {
        width: 250px;
        height: 250px;
    }
    
    .story-paragraph {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .paragraph-number {
        font-size: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-container h2 {
        font-size: 2rem;
    }

    .about-content p {
        font-size: 1rem;
        padding: 20px;
    }
}

.menu-warning {
    background-color: #fff8e1;
    border-left: 6px solid #ff9800;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', sans-serif;
  }
  
  .warning-header {
    font-size: 1.25rem;
    font-weight: bold;
    color: #d84315;
    margin-bottom: 10px;
  }
  
  .warning-content ul {
    list-style-type: disc;
    padding-left: 20px;
    color: #4e342e;
  }
  
  .warning-content li {
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .whatsapp-link {
    color: #25D366;
    font-weight: bold;
    text-decoration: none;
  }
  
  .instagram-link {
    color: #E1306C;
    font-weight: bold;
    text-decoration: none;
  }
  
  .whatsapp-link:hover,
  .instagram-link:hover {
    text-decoration: underline;
  }
  
.menu-warning {
  background-color: #fff8e1;
  border-left: 6px solid #ff9800;
  padding: 20px;
  margin: 20px 0;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', sans-serif;
}

.warning-header {
  font-size: 1.25rem;
  font-weight: bold;
  color: #d84315;
  margin-bottom: 10px;
}

.warning-content p {
  margin: 10px 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #4e342e;
}

.whatsapp-link {
  color: #25D366;
  font-weight: bold;
  text-decoration: none;
}

.instagram-link {
  color: #E1306C;
  font-weight: bold;
  text-decoration: none;
}

.whatsapp-link:hover,
.instagram-link:hover {
  text-decoration: underline;
}


.menu-warning {
    background-color: transparent; /* Removing the background box */
    color: white; /* White text for contrast against the dark background */
    font-size: 1.1rem; /* Adjust the font size for better readability */
    line-height: 1.8; /* Increase line height for clarity */
    margin-top: 20px;
    padding: 10px 0;
    font-weight: normal;
}

.menu-warning strong {
    font-size: 1.3rem; /* Larger font size for the "Only for Pre-Orders" section */
    color: #e63946; /* Bright red color to emphasize important info */
}

.menu-warning ul {
    list-style-type: none;
    padding-left: 0;
    margin-top: 15px;
}

.menu-warning li {
    margin-bottom: 10px; /* Smaller margin for a compact, neat look */
}

.menu-warning li a {
    color: #ffdd57; /* Light yellow for clickable links */
    text-decoration: none;
    font-weight: bold;
}

.menu-warning li a:hover {
    color: #f1c40f; /* Slightly darker yellow for hover effect */
    text-decoration: underline;
}

/* Additional styling for responsiveness */
@media (max-width: 768px) {
    .menu-warning {
        font-size: 1rem;
        padding: 10px;
    }
}

.menu-warning {
    background-color: #1e1e1e; /* Dark gray, not pitch black for comfort */
    border-left: 4px solid #ff914d;
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 10px;
    font-size: 1rem;
    color: #f0f0f0;
    line-height: 1.7;
    font-family: 'Segoe UI', sans-serif;
    box-shadow: 0 4px 10px rgba(255, 145, 77, 0.1);
}
.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background-color: #25D366;
    color: white !important;
    border-radius: 30px;
    margin-top: 1.5rem;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.whatsapp-link:hover {
    transform: scale(1.05);
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background-color: #4CAF50; /* Or your brand color */
    color: white !important;
    border-radius: 30px;
    margin-top: 1.5rem;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease;
}
.email-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background-color: #D44638; /* Gmail Red */
    color: white !important;
    border-radius: 30px;
    margin-top: 1.5rem;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.email-link:hover {
    transform: scale(1.05);
}


.phone-link:hover {
    transform: scale(1.05);
}


.contact-link {
    color: #007bff;
    text-decoration: none;
    display: inline-block;
    margin-top: 8px;
    font-weight: 500;
}

.contact-link:hover {
    color: #0056b3;
    text-decoration: underline;
}


.menu-warning strong {
    color: #ffb380;
}

.menu-warning ul {
    padding-left: 1.2rem;
    margin: 0.75rem 0 0 0;
}

.menu-warning li {
    margin-bottom: 0.75rem;
    list-style-type: disc;
}



.menu-pointers {
    background-color: #fff8f0;
    border-left: 5px solid #ff914d;
    padding: 1rem 1.5rem;
    margin-top: 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    font-family: 'Segoe UI', sans-serif;
    white-space: pre-line; /* to maintain line breaks if needed */
}

.menu-pointers strong {
    color: #c0392b;
}

.menu-item-content p {
    font-family: 'Arial', sans-serif; /* Clean and modern font */
    font-size: 1.1rem; /* Slightly larger font size for better readability */
    color: #333; /* Darker shade of gray for better contrast */
    line-height: 1.8; /* More spacing between lines for readability */
    margin-top: 1rem; /* Adds space between the category and description */
    font-style: italic; /* Adds a soft emphasis, common for food descriptions */
    letter-spacing: 0.5px; /* Adds a slight space between letters for a clean look */
    font-weight: 400; /* Slightly increased weight for better visibility */
}

.menu-item-content p {
    color: #666; /* softer gray for easy reading */
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 0.8rem;
    font-family: 'Poppins', 'Arial', sans-serif;
    text-align: left;
    padding: 0 1rem;
    max-height: 4.5rem; /* Prevents too long descriptions from affecting layout */
    overflow: hidden;
    text-overflow: ellipsis;
    transition: max-height 0.3s ease, color 0.3s ease;
}

/* Hover/expand description (optional effect) */
.menu-item:hover .menu-item-content p {
    max-height: none;
    color: #4a4a4a; /* Darker gray when expanded */
}
.menu-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 3rem 0;
    background: #1a1a1a; /* dark background for contrast */
    padding: 1.5rem 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.menu-filters .filter-btn {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid var(--accent-gold);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.menu-filters .filter-btn:hover,
.menu-filters .filter-btn.active {
    background-color: var(--accent-gold);
    color: #1a1a1a;
    border-color: var(--accent-gold);
}

/* Updated Header Styles */
header {
    background: var(--pure-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: url('back.jpg') no-repeat center center;}
.menu-warning {
    font-family: 'Poppins', 'Inter', 'Roboto', sans-serif;
    text-align: center;
    padding: 1.5rem 2rem;
    margin: 3rem auto 0;
    background: #fffaf0; /* soft warm background (like light gold parchment) */
    border-left: 5px solid var(--accent-gold); /* elegant gold accent bar */
    max-width: 800px;
    font-weight: 500;
    font-size: 1.05rem;
    border-radius: 10px;
    color: #4a4a4a;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease;
}

.menu-warning:hover {
    background-color: #fff5e1; /* subtle hover glow */
}
.menu-item-price {
    color: #b3874a; /* darker rich gold tone */
    font-weight: 600;
    font-size: 1.1rem;
    background-color: #fff5e1;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.menu-item-price:hover {
    transform: scale(1.05);
}

.menu-item-price:hover {
    transform: scale(1.05);
}
nav ul li a {
    color: var(--primary-black);
    font-weight: 600;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    background-color: #6BA539; /* Matching logo green */
}
/* Navigation Links Styling */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links li a {
    color: #7A3B1F; /* Dark gray/black for visibility on white */
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    text-transform: uppercase;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

/* Active Link or Hover Effect */
.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: width 0.3s ease-in-out;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--accent-gold);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}


.hamburger .line {
    background-color: var(--primary-black);
}

/* Main Content Adjustments */
main {
    background-color: black;
}

/* Menu Section Styling */
#menu {
    background: url('texture-bg.png') repeat; /* Add subtle food texture */
    padding: 4rem 5%;
}
#menu h2 {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 2.5rem;
    font-family: 'Cinzel Decorative', serif;
    letter-spacing: 1px;
}


.menu-items {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.menu-item {
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
}

/* .menu-item-category {
    background: #6BA539;
    color: white;
    font-weight: 500;
} */

/* Food Category Colors */
.menu-item-category.p{
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    text-transform: capitalize;
    background: #888; /* fallback */
    box-shadow: 0 2px 6px rgba(221, 214, 214, 0.15);
    font-family: 'Poppins', sans-serif;
}

/* Category Color Overrides Inspired by Food Chains */
[data-category="starters"] .menu-item-category {
    background-color: #FF7043; /* Vibrant Orange */
}

[data-category="main-courses"] .menu-item-category,
[data-category="mains"] .menu-item-category {
    background-color: #66BB6A; /* Fresh Green */
}

[data-category="desserts"] .menu-item-category {
    background-color: #BA68C8; /* Sweet Purple */
}

[data-category="drinks"] .menu-item-category {
    background-color: #29B6F6; /* Refreshing Blue */
}

[data-category="main-courses"] .menu-item-category {
    background: #D32F2F; /* Inspired by McDonald's Red or Nando's Bold Red */
    color: white;
}

[data-category="starters"] .menu-item-category {
    background: #FF9800; /* Inspired by KFC’s warm, inviting orange tones */
    color: white;
}

[data-category="mains"] .menu-item-category {
    background: #388E3C; /* Inspired by Subway’s fresh green for hearty dishes */
    color: white;
}

[data-category="desserts"] .menu-item-category {
    background: #8E44AD; /* Inspired by Dunkin/Baskin Robbins fun purples/pinks */
    color: white;
}

[data-category="drinks"] .menu-item-category {
    background: #03A9F4; /* Inspired by Pepsi blue or cool drink branding */
    color: white;
}

/* Footer Styling */
footer {
    background: #2c2c2c;
    color: white;
    padding: 3rem 5%;
    margin-top: 4rem;
}

.footer-logo {
    font-family: 'Cinzel Decorative', serif;
    color: #6BA539;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.footer-links a {
    color: white;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #6BA539;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .nav-links {
        background: var(--pure-white);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    nav ul li a {
        color: var(--primary-black);
    }

    .menu-items {
        padding: 1rem;
    }
}

/* Add Food-themed Details */
.feature-card {
    border: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden;
}

.feature-card:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(107,164,57,0.1) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
}

.hero h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.menu-filters {
    margin: 2rem 0;
}

.filter-btn {
    background: #f0f0f0;
    color: #555;
    border: none;
}

.filter-btn.active {
    background: #6BA539;
    color: white;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {
    background-color: var(  --primary-black);
    color: var(--black);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Enhanced Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background:  #ffffff;
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
    height: 89px;
    overflow: hidden;
    gap: 10px;
}

.logo-image {
    height: 100%;
    transform: scale(1.3);
    transform-origin: left center;
    flex-shrink: 0;
    filter: grayscale(20%) contrast(100%);
}

.logo-text {
    display: flex;
    flex-direction: column;
    padding-left: 15px;
    border-left: 2px solid var(--accent-gold);
    line-height: 1.3;
}

.logo-text .pothbar-line {
    font-family: 'Satisfy', cursive;
    color: #6BA539;
    font-size: 20px;
}

.logo-text .kitchen-line {
    font-family: 'Cinzel Decorative', serif;
    color: #7A3B1F;
    font-size: 20px;
    font-weight: bold;
    margin-top: 2px;
}

/* Enhanced Navigation */
nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2.5rem;
}

nav ul li a {
    color: var(--white);
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger .line {
    width: 25px;
    height: 2px;
    background-color: var(--white);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Main Content */
main {
    margin-top: 100px;
    min-height: calc(100vh - 160px);
}

.page {
    display: none;
    padding: 3rem 5%;
}

.page.active {
    display: block;
}

/* Enhanced Home Page */
.hero {
    text-align: center;
    padding: 8rem 2rem 6rem;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('back.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    margin-bottom: 3rem;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(197, 164, 126, 0.1) 0%, transparent 50%, rgba(197, 164, 126, 0.1) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-gold), #b8956d);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(197, 164, 126, 0.3);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    font-family: 'Cinzel Decorative', serif;
}

.hero h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #e8e8e8;
    font-weight: 300;
    font-style: italic;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #d0d0d0;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background-color: var(--accent-gold);
    color: var(--primary-black);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 164, 126, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-gold);
    font-family: 'Cinzel Decorative', serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #c8c8c8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Brand Story Section */
.brand-story {
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    padding: 4rem 2rem;
    margin: 3rem 0;
    border-radius: 12px;
    text-align: center;
}

.brand-story-content {
    max-width: 700px;
    margin: 0 auto;
}

.brand-story h2 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 2.5rem;
    color: var(--primary-black);
    margin-bottom: 1.5rem;
}

.brand-story p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.learn-more-btn {
    display: inline-block;
    background: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background: var(--accent-gold);
    color: white;
    transform: translateY(-2px);
}

/* Enhanced Features */
.features {
    padding: 4rem 0;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-header h2 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 2.5rem;
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.features-header p {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    padding: 3rem 2rem;
    background: var(--pure-white);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
    position: relative;
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-gold);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-gold), #b8956d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-highlight {
    background: linear-gradient(135deg, var(--accent-gold), #b8956d);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

/* Mobile Responsive for Home */
@media (max-width: 768px) {
    .hero {
        padding: 6rem 1rem 4rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h3 {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .brand-story {
        padding: 3rem 1rem;
    }
    
    .brand-story h2 {
        font-size: 2rem;
    }
    
    .features-header h2 {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
}

/* Enhanced Menu Page */
.menu-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 3rem 0;
}

.filter-btn {
    background: transparent;
    color: var(--primary-black);
    border: 2px solid var(--gray-2);
    padding: 0.75rem 2rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-black);
}
/* --- Menu Section Styling --- */
#menu {
    padding: 4rem 5%;
    background-color: var(--primary-black);
    color: var(--text-light);
    text-align: center;
}

#menu h2 {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 2.5rem;
    font-family: 'Cinzel Decorative', serif;
    letter-spacing: 1px;
}
/* 
Filter Buttons
.menu-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
} */

.filter-btn {
    padding: 0.75rem 2rem;
    border: 2px solid var(--gray-3);
    border-radius: 30px;
    background: transparent;
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-black);
}

/* Menu Items Grid */
.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

/* Loading Spinner */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--gray-3);
    border-top: 4px solid var(--accent-gold);
    border-radius: 50%;
    margin: 3rem auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}



/* Menu Warning Text */
.menu-warning {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 2.5rem;
    font-family: 'Cinzel Decorative', serif;
    letter-spacing: 1px;
    background-color: #7A3B1F;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    #menu h2 {
        font-size: 2rem;
    }

    .filter-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.95rem;
    }

    .menu-items {
        grid-template-columns: 1fr;
    }
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}

.menu-item {
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: auto;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), #ff9966, var(--accent-gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-item:hover::before {
    opacity: 1;
}

.menu-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(197, 164, 126, 0.3);
}

.menu-item-image {
    width: 100%;
    height: auto;
    min-height: 200px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    border-radius: 16px 16px 0 0;
    position: relative;
}

.menu-item-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(197, 164, 126, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-item:hover .menu-item-image::after {
    opacity: 1;
}

.menu-item-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 16px 16px 0 0;
    max-width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.05);
}

.no-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 200px;
    background-color: #f0f0f0;
    color: #888;
    font-size: 1rem;
    border-radius: 8px 8px 0 0;
}

.menu-item:hover .menu-item-image {
    transform: scale(1.02);
}

.menu-item-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-item-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.menu-item-title h3 {
    margin: 0;
    font-size: 1.4rem;
    color: #2c3e50;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    transition: color 0.3s ease;
    flex: 1;
    padding-right: 1rem;
}

.menu-item:hover .menu-item-title h3 {
    color: #c5a47e;
}

.menu-item-category {
    background: linear-gradient(135deg, #c5a47e, #b8956d);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(197, 164, 126, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.menu-item:hover .menu-item-category {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(197, 164, 126, 0.4);
}

.menu-item-description {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.3px;
    margin-top: 0.5rem;
}

.menu-warning {
    font-family: 'Poppins', 'Inter', 'Roboto', sans-serif;
    text-align: center;
    padding: 2rem;
    margin: 4rem auto;
    background: #f7f4f4; /* soft yellow-tinted bg */
    border-left: 5px solid var(--accent-gold); /* keep the golden Zomato-ish left bar */
    max-width: 800px;
    font-weight: 500;
    font-size: 1.1rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(133, 129, 129, 0.08); /* soft card shadow */
    color: #333;
}
/* --- Contact Section Styling --- */
#contact {
    background-color: var(--primary-black);
    padding: 4rem 5%;
    color: var(--pure-white);
}

#contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--accent-gold);
    font-family: 'Cinzel Decorative', serif;
    letter-spacing: 1px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.contact-card {
    background: var(--gray-1);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card i {
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-black);
}

.contact-card p {
    font-size: 1rem;
    color: var(--text-gray);
}

/* Instagram Button */
.instagram-follow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(45deg, #405DE6, #833AB4, #E1306C);
    color: white !important;
    border-radius: 30px;
    margin-top: 1.5rem;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.instagram-follow:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    #contact h2 {
        font-size: 2rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .instagram-follow {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}


/* Enhanced Contact Page */
.contact-container {
    max-width: 1200px;
    margin: 3rem auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: var(--pure-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-card i {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.instagram-follow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(45deg, #405DE6, #833AB4, #E1306C);
    color: white !important;
    border-radius: 30px;
    margin-top: 1.5rem;
    transition: transform 0.3s ease;
}

.instagram-follow:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: var(--primary-black);
    color: var(--pure-white);
    padding: 4rem 5% 2rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}


/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background:black;
        padding: 2rem;
        text-align: center;
    }

    .nav-links.active {
        display: block;
    }

    nav ul li {
        margin: 1.5rem 0;
    }

    .hamburger {
        display: block;
    }

    .logo-container {
        height: 70px;
    }

    .logo-text .pothbar-line {
        font-size: 1.2rem;
    }

    .logo-text .kitchen-line {
        font-size: 1rem;
    }

    .menu-items {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }

    .menu-item-image {
        height: auto;
        min-height: 180px;
        max-height: none;
        background: #f8f8f8;
    }

    .menu-item-image img {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
        object-position: center;
    }

    .menu-item-content {
        padding: 1rem;
    }

    .menu-item-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .menu-item-title h3 {
        font-size: 1.2rem;
        padding-right: 0;
    }

    .menu-item-category {
        align-self: flex-start;
        padding: 0.3rem 1rem;
        font-size: 0.75rem;
    }

    .menu-item-price {
        align-self: flex-end;
        margin-top: 0.5rem;
    }
}

/* Extra small devices (phones) */
@media (max-width: 480px) {
    .menu-items {
        gap: 1rem;
        padding: 0.5rem;
    }
    
    .menu-item-image {
        min-height: 150px;
        max-height: none;
        height: auto;
        background: #f8f8f8;
    }
    
    .menu-item-image img {
        max-height: none;
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center;
    }
    
    .menu-item-content {
        padding: 0.75rem;
    }
    
    .menu-item-title h3 {
        font-size: 1.1rem;
    }
    
    .menu-item-price {
        font-size: 1rem;
        padding: 0.25rem 0.5rem;
    }
}


