/* style.css */:root { --primary-color: #91288c; --secondary-color: #ec1164; --accent-color: #f3dfac; --text-color: #24282b; --light-bg: #ffffff; --card-bg: #ffffff; --border-color: #e0e0e0; --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.08); --shadow-medium: 0 8px 20px rgba(0, 0, 0, 0.12); --shadow-heavy: 0 2px 10px rgba(0, 0, 0, 0.1); --border-radius: 12px; --transition-speed: 0.3s;}/* Base Reset and Typography */* { margin: 0; padding: 0; box-sizing: border-box;}html { scroll-behavior: smooth;}body { font-family: 'Poppins', sans-serif; background-color: var(--primary-color); color: var(--text-color); line-height: 1.6; font-size: 16px; overflow-x: hidden;}/* Header Section - Fully Responsive */.header { background-color: var(--primary-color); padding: 15px 20px; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; box-shadow: var(--shadow-heavy); flex-wrap: wrap;}.logo-container { display: flex; align-items: center; flex: 1; min-width: 200px;}.logo { height: 50px; width: auto; max-width: 100%;}.restaurant-name { color: var(--accent-color); font-size: clamp(18px, 4vw, 24px); font-weight: 700; margin-left: 15px; word-break: break-word;}.contact-info { color: var(--accent-color); text-align: right; flex: 1; min-width: 200px;}.contact-info p { margin: 3px 0; font-size: clamp(12px, 3vw, 14px); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}.contact-info i { margin-right: 5px;}/* Hero Slider - Fully Responsive */.hero-slider { width: 100%; overflow: hidden; position: relative;}.slide { position: relative; height: clamp(250px, 40vw, 500px); background-size: cover; background-position: center; background-repeat: no-repeat;}.slide-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; color: white; background-color: rgba(145, 40, 140, 0.7); padding: clamp(15px, 3vw, 20px) clamp(20px, 5vw, 40px); border-radius: 10px; width: 90%; max-width: 800px;}.slide-content h2 { font-size: clamp(1.5rem, 5vw, 2.5rem); margin-bottom: 10px; color: var(--accent-color); line-height: 1.3;}.slide-content p { font-size: clamp(0.9rem, 3vw, 1.2rem); max-width: 600px; margin: 0 auto;}/* WhatsApp Button - Fully Responsive */.whatsapp-btn { display: inline-flex; align-items: center; justify-content: center; background-color: #25D366; color: white; padding: clamp(12px, 3vw, 15px) clamp(15px, 4vw, 25px); border-radius: 50px; text-decoration: none; font-weight: 600; font-size: clamp(0.9rem, 3vw, 1.1rem); transition: all var(--transition-speed) ease; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3); margin-top: 15px; width: auto; max-width: 100%; text-align: center;}.whatsapp-btn:hover { background-color: #128C7E; transform: translateY(-3px); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);}.whatsapp-btn i { font-size: clamp(1.2rem, 3vw, 1.5rem); margin-right: 10px; flex-shrink: 0;}/* Main Container */.container { max-width: 1200px; margin: 0 auto; padding: clamp(20px, 5vw, 40px) clamp(15px, 4vw, 20px); width: 100%;}/* Section Titles */.section-title { color: var(--primary-color); background-color: var(--accent-color); padding: clamp(10px, 3vw, 15px) clamp(15px, 4vw, 25px); border-radius: 10px; margin-bottom: 30px; display: inline-block; font-size: clamp(1.3rem, 4vw, 1.8rem); width: auto;}.section-banner { width: 100%; max-height: clamp(150px, 25vw, 250px); object-fit: cover; border-radius: 10px; margin-bottom: 20px; display: block;}/* Category Filter */.category-filter { display: flex; justify-content: center; flex-wrap: wrap; gap: clamp(8px, 2vw, 15px); margin: 30px 0;}.autoheight-img { -o-object-fit: contain; object-fit: contain; width: 100% !important; position: relative !important; height: 100% !important;}.img-container { max-width: 100%; border-radius: 12px; overflow: hidden;}.category-btn { background-color: var(--secondary-color); color: var(--accent-color); border: none; padding: clamp(6px, 2vw, 10px) clamp(12px, 3vw, 20px); border-radius: 25px; cursor: pointer; font-weight: 500; transition: all var(--transition-speed) ease; font-size: clamp(0.8rem, 2.5vw, 1rem); white-space: nowrap;}.category-btn:hover,.category-btn.active { background-color: var(--accent-color); color: var(--primary-color);}/* Menu Grid System - Fully Responsive */.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr)); gap: clamp(15px, 4vw, 25px); margin-bottom: 60px;grid-template-columns: repeat(3, 1fr);}/* Menu Card Design */.menu-card { background-color: var(--card-bg); border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--shadow-light); transition: all var(--transition-speed) ease; border: 1px solid var(--border-color); position: relative; display: flex;}.menu-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-medium);}.card-image { width: 35%; object-fit: contain; display: block; transition: transform var(--transition-speed) ease;}.menu-card:hover .card-image { transform: scale(1.05);}.card-content { padding: clamp(15px, 4vw, 20px); flex-grow: 1; display: flex; flex-direction: column;width: 65%;}.card-title { color: var(--primary-color); font-size: clamp(1.1rem, 3.5vw, 1.3rem); font-weight: 600; margin-bottom: 10px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;}.card-description { color: #666; font-size: clamp(0.8rem, 2.5vw, 0.9rem); line-height: 1.5; margin-bottom: 20px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; flex-grow: 1;}.card-price-container { display: flex; align-items: baseline; margin-top: auto; flex-wrap: wrap;}.price-prefix { color: #666; font-size: clamp(0.75rem, 2.5vw, 0.85rem); margin-right: 5px;}.card-price { color: var(--secondary-color); font-size: clamp(1.2rem, 4vw, 1.5rem); font-weight: 700; line-height: 1;}.card-price-small { color: var(--secondary-color); font-size: clamp(1rem, 3.5vw, 1.2rem); font-weight: 700;}/* Meal Variations */.meal-variations-card { background-color: #f9f9f9; border-radius: 8px; padding: clamp(10px, 3vw, 15px); margin-top: 15px;}.variation-item { display: flex; justify-content: space-between; align-items: center; padding: clamp(5px, 2vw, 8px) 0; border-bottom: 1px dashed #ddd; flex-wrap: wrap;}.variation-item:last-child { border-bottom: none;}.variation-name { font-weight: 500; color: #555; font-size: clamp(0.8rem, 2.5vw, 0.95rem); flex: 1; min-width: 150px;}.variation-price { font-weight: 600; color: var(--secondary-color); font-size: clamp(0.85rem, 3vw, 1rem); white-space: nowrap;}.variation-price-prefix { font-size: clamp(0.7rem, 2.5vw, 0.8rem); color: #666; margin-right: 3px;}/* Floating WhatsApp Button */.floating-whatsapp { position: fixed; bottom: clamp(15px, 5vw, 30px); right: clamp(15px, 5vw, 30px); z-index: 1000;}.floating-whatsapp-btn { display: flex; align-items: center; justify-content: center; width: clamp(50px, 12vw, 60px); height: clamp(50px, 12vw, 60px); background-color: #25D366; border-radius: 50%; color: white; font-size: clamp(1.5rem, 6vw, 2rem); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); transition: all var(--transition-speed) ease; text-decoration: none;}.floating-whatsapp-btn:hover { background-color: #128C7E; transform: scale(1.1);}/* Footer Section */.footer { background-color: var(--primary-color); color: var(--accent-color); padding: clamp(25px, 6vw, 40px) clamp(15px, 4vw, 20px); text-align: center; width: 100%;}.footer-logo { width: auto; height: clamp(60px, 15vw, 100px); margin-bottom: 15px; max-width: 100%;}.social-links { display: flex; justify-content: center; flex-wrap: wrap; margin: 25px 0; gap: 10px;}.social-link { color: var(--accent-color); font-size: clamp(1.2rem, 4vw, 1.5rem); margin: 0 clamp(8px, 3vw, 15px); transition: color var(--transition-speed) ease; display: inline-flex; align-items: center; justify-content: center;}.social-link:hover { color: white; transform: translateY(-2px);}.footer-info { font-size: clamp(0.75rem, 3vw, 0.9rem); margin-top: 25px; opacity: 0.8; line-height: 1.6;}.footer-info p { margin: 8px 0;}/* Utility Classes */.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;}.text-center { text-align: center;}.mt-1 { margin-top: 0.5rem; }.mt-2 { margin-top: 1rem; }.mt-3 { margin-top: 1.5rem; }.mt-4 { margin-top: 2rem; }.mb-1 { margin-bottom: 0.5rem; }.mb-2 { margin-bottom: 1rem; }.mb-3 { margin-bottom: 1.5rem; }.mb-4 { margin-bottom: 2rem; }/* Slick Slider Custom Styles */.slick-dots { bottom: 15px !important;}.slick-dots li button:before { color: var(--accent-color) !important; opacity: 0.5 !important; font-size: 10px !important;}.slick-dots li.slick-active button:before { opacity: 1 !important; color: var(--accent-color) !important;}/* Accessibility Improvements */@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; } html { scroll-behavior: auto; }}/* Focus Styles for Accessibility */:focus { outline: 2px solid var(--secondary-color); outline-offset: 2px;}:focus:not(:focus-visible) { outline: none;}/* Print Styles */@media print { .header, .hero-slider, .floating-whatsapp, .category-filter, .whatsapp-btn { display: none !important; } body { background-color: white !important; color: black !important; } .menu-card { break-inside: avoid; box-shadow: none !important; border: 1px solid #ddd !important; } .container { max-width: 100% !important; padding: 0 !important; }}/* High Contrast Mode Support */@media (prefers-contrast: high) { :root { --primary-color: #000000; --secondary-color: #ff0000; --accent-color: #ffff00; --text-color: #000000; --light-bg: #ffffff; }}/* Dark Mode Support */@media (prefers-color-scheme: dark) { :root { --primary-color: #4a154b; --secondary-color: #ff6b9d; --accent-color: #fffacd; --text-color: #f0f0f0; --light-bg: #2d2d2d; --card-bg: #3a3a3a; --border-color: #555555; } body { background-color: var(--primary-color); } .card-description, .price-prefix { color: #cccccc; } .meal-variations-card { background-color: #444444; }}/* Extreme Mobile Breakpoint */@media (max-width: 320px) { .container { padding: 10px; } .section-title { font-size: 1.1rem; padding: 8px 15px; } .card-content { padding: 12px; } .category-filter { justify-content: flex-start; overflow-x: auto; padding-bottom: 10px; -webkit-overflow-scrolling: touch; } .category-btn { flex-shrink: 0; }}/* Tablet Optimizations */@media (min-width: 769px) and (max-width: 1024px) { .menu-grid { grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); } .card-image { height: 100%; } .header { padding: 20px 30px; }}@media (max-width: 769px) {.menu-grid {grid-template-columns: repeat(1, 1fr);}}/* Large Desktop Optimizations */@media (min-width: 1440px) { .container { max-width: 1400px; } .menu-grid { gap: 30px; } .card-image { height: 100%; padding: 0 5% 0 5%; }}/* Landscape Mode Optimizations */@media (max-height: 600px) and (orientation: landscape) { .slide { height: 250px; } .slide-content { padding: 10px 20px; } .slide-content h2 { font-size: 1.5rem; margin-bottom: 5px; } .slide-content p { font-size: 0.9rem; margin-bottom: 5px; }}/* Touch Device Optimizations */@media (hover: none) and (pointer: coarse) { .menu-card:hover { transform: none; } .whatsapp-btn:hover { transform: none; } .category-btn:hover { background-color: var(--secondary-color); color: var(--accent-color); } .category-btn.active { background-color: var(--accent-color); color: var(--primary-color); } /* Increase touch target sizes */ .category-btn, .whatsapp-btn, .social-link { min-height: 44px; min-width: 44px; } .floating-whatsapp-btn { width: 60px; height: 60px; }}