/* Asian Gourmet Food - Combined Stylesheet *//* Generated:2025-12-19 21:10:35 *//* DO NOT EDIT DIRECTLY - Edit files in /style/modules/ then run:php build-css.php *//* ============================================ CSS VARIABLES These map to the exact values used throughout the site. You can gradually update rules to use these variables. ============================================ *//* Adobe Typekit Font - Loaded via header.php for performance */:root{/* Brand Colors - Exact values from existing CSS */ --gold:#BBA18C;--gold-dark:#8B7355;--blue:#77ACD7;--blue-dark:#5a8fb8;/* Melbourne Theme (Dark) */ --bg-body-dark:#000;--bg-card-dark:#18181b;--bg-card-alt-dark:#27272a;--border-dark:#27272a;--border-light-dark:#3f3f46;--text-primary-dark:#fff;--text-secondary-dark:#a1a1aa;--text-muted-dark:#71717a;/* Palm Bay Theme (Light) */ --bg-body-light:#fff;--bg-card-light:#f9fafb;--bg-card-alt-light:#f3f4f6;--border-light:#e5e7eb;--border-lighter:#e5e5e5;--text-primary-light:#18181b;--text-secondary-light:#52525b;--text-muted-light:#6b7280;/* Status Colors */ --success:#22c55e;--success-bg:rgba(34,197,94,0.1);--error:#ef4444;--error-bg:rgba(239,68,68,0.1);/* Shadows */ --shadow-blue:0 4px 15px rgba(119,172,215,0.3);--shadow-blue-hover:0 6px 20px rgba(119,172,215,0.4);/* Layout */ --container-max:1440px;--container-padding:60px;--container-padding-mobile:30px;/* Typography */ --font-sans:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,sans-serif;--font-serif:'Georgia','Times New Roman',serif;}/* ============================================ BASE Base Styles - Reset & Typography Lines 1-24 from original style.css ============================================ *//* Reset & Base Styles */*{margin:0;padding:0;box-sizing:border-box;}body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,sans-serif;background:#000;color:#fff;transition:background-color 0.4s ease,color 0.4s ease;}body.palm-bay-theme{background:#fff;color:#18181b;}/* ============================================ LAYOUT Layout - Top Bar,Header,Mobile Nav,Footer Lines 25-763 from original style.css ============================================ *//* Top Location Bar */.top-bar{background:#000;border-bottom:1px solid #27272a;padding:12px 0;transition:background-color 0.4s ease,border-color 0.4s ease,transform 0.3s ease,opacity 0.3s ease;position:relative;z-index:1003;}body.palm-bay-theme .top-bar{background:#fff;border-bottom:1px solid #e5e5e5;}.top-bar-container{max-width:1440px;margin:0 auto;padding:0 60px;display:flex;justify-content:space-between;align-items:center;}.location-status{display:flex;flex-direction:column;gap:5px;}.location-label{font-size:10px;color:#d4d4d8;font-weight:600;text-transform:uppercase;letter-spacing:0.5px;}body.palm-bay-theme .location-label{color:#52525b;}.location-name{font-size:16px;font-weight:600;color:#fff;}body.palm-bay-theme .location-name{color:#18181b;}.status-container{display:flex;align-items:center;gap:12px;}.status-badge{display:inline-flex;align-items:center;gap:6px;padding:4px 12px;border-radius:12px;font-size:12px;font-weight:600;min-width:180px;justify-content:center;}.status-badge.open{background:rgba(34,197,94,0.1);color:#22c55e;}.status-badge.closed{background:rgba(239,68,68,0.1);color:#ef4444;}.status-dot{width:6px;height:6px;border-radius:50%;animation:pulse 2s ease-in-out infinite;}.status-badge.open .status-dot{background:#22c55e;}.status-badge.closed .status-dot{background:#ef4444;}@keyframes pulse{0%,100%{opacity:1;}50%{opacity:0.5;}}.hours-text{font-size:12px;color:#a1a1aa;}body.palm-bay-theme .hours-text{color:#71717a;}.location-switcher{display:flex;align-items:center;gap:15px;}.switcher-label{font-size:12px;color:#a1a1aa;font-weight:500;}body.palm-bay-theme .switcher-label{color:#6b7280;}.pill-switcher{display:flex;background:#18181b;border-radius:25px;padding:4px;gap:4px;border:1px solid #27272a;}body.palm-bay-theme .pill-switcher{background:#f3f4f6;border-color:#e5e7eb;}.pill-switcher button{padding:6px 16px;border-radius:20px;border:none;background:transparent;color:#a1a1aa;font-size:13px;font-weight:500;cursor:pointer;transition:all 0.3s ease;display:flex;align-items:center;gap:6px;}body.palm-bay-theme .pill-switcher button{color:#6b7280;}.pill-switcher button.active{background:#BBA18C;color:#000;}body.palm-bay-theme .pill-switcher button.active{background:#8B7355;color:#fff;}.pill-switcher button:hover:not(.active){color:#fff;}body.palm-bay-theme .pill-switcher button:hover:not(.active){color:#18181b;}.map-pin{width:14px;height:14px;}/* Main Header */.main-header{background:#000;padding:15px 0;border-bottom:1px solid #27272a;transition:background-color 0.4s ease,border-color 0.4s ease;position:sticky;top:0;z-index:1004;}body.palm-bay-theme .main-header{background:#fff;border-bottom:1px solid #e5e5e5;}/* Sticky header behavior on scroll */body.scrolled .top-bar{transform:translateY(-100%);opacity:0;pointer-events:none;transition:transform 0.3s ease,opacity 0.3s ease;}body.scrolled .main-header{box-shadow:0 2px 10px rgba(0,0,0,0.3);}body.scrolled.palm-bay-theme .main-header{box-shadow:0 2px 10px rgba(0,0,0,0.1);}.header-container{max-width:1440px;margin:0 auto;padding:0 60px;display:flex;align-items:center;justify-content:center;gap:60px;}.nav-left,.nav-right{display:flex;gap:40px;}.nav-left a,.nav-right a{font-family:"lumios-brush",sans-serif;color:#BBA18C;text-decoration:none;font-size:20px;text-transform:uppercase;transition:color 0.3s ease;}body.palm-bay-theme .nav-left a,body.palm-bay-theme .nav-right a{color:#8B7355;}.nav-left a:hover,.nav-right a:hover{color:#77ACD7;}body.palm-bay-theme .nav-left a:hover,body.palm-bay-theme .nav-right a:hover{color:#77ACD7;}.logo-link{display:block;text-decoration:none;}.logo-container{position:relative;height:120px;width:120px;}.logo-container img{position:absolute;top:0;left:0;height:120px;width:120px;object-fit:contain;transition:opacity 0.5s ease;}.logo-container img.melbourne-logo{opacity:1;pointer-events:auto;}.logo-container img.palm-bay-logo{opacity:0;pointer-events:none;}body.palm-bay-theme .logo-container img.melbourne-logo{opacity:0;pointer-events:none;}body.palm-bay-theme .logo-container img.palm-bay-logo{opacity:1;pointer-events:auto;}.order-button{background:linear-gradient(135deg,#77ACD7 0%,#5a8fb8 100%);border:none;color:#fff;padding:12px 30px;border-radius:25px;font-weight:600;font-size:14px;cursor:pointer;transition:all 0.3s ease;text-transform:uppercase;letter-spacing:0.5px;box-shadow:0 4px 15px rgba(119,172,215,0.3);}.order-button:hover{transform:translateY(-2px);box-shadow:0 6px 20px rgba(119,172,215,0.4);}/* Mobile Menu Toggle */.mobile-menu-toggle{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:8px;z-index:1004;position:relative;}.mobile-menu-toggle span{display:block;width:25px;height:3px;background:#BBA18C;border-radius:2px;transition:all 0.3s ease;}.mobile-menu-toggle.active span{background:#BBA18C;}body.palm-bay-theme .mobile-menu-toggle span{background:#8B7355;}body.palm-bay-theme .mobile-menu-toggle.active span{background:#8B7355;}.mobile-menu-toggle.active span:nth-child(1){transform:rotate(45deg) translate(8px,8px);}.mobile-menu-toggle.active span:nth-child(2){opacity:0;}.mobile-menu-toggle.active span:nth-child(3){transform:rotate(-45deg) translate(7px,-7px);}/* Mobile Navigation */.mobile-nav{position:fixed;top:0;left:0;width:100%;height:100vh;background:#000;transform:translateX(-100%);transition:transform 0.3s ease,background-color 0.4s ease;z-index:1005;overflow-y:auto;overflow-x:hidden;}body.palm-bay-theme .mobile-nav{background:#fff;}.mobile-nav.active{transform:translateX(0);}body.mobile-menu-open{overflow:hidden;position:fixed;width:100%;height:100%;}html.mobile-menu-open{overflow:hidden;}/* Mobile Location Header (inside mobile menu - matches mockup) */.mobile-location-header{background:#000;padding:80px 20px 30px;text-align:center;border-bottom:1px solid #27272a;}body.palm-bay-theme .mobile-location-header{background:#fff;border-bottom-color:#e5e7eb;}.mobile-location-label{font-size:11px;color:#71717a;font-weight:600;text-transform:uppercase;letter-spacing:2px;margin-bottom:12px;}body.palm-bay-theme .mobile-location-label{color:#6b7280;}.mobile-location-name{font-size:28px;font-weight:700;color:#fff;margin-bottom:15px;letter-spacing:0.5px;}body.palm-bay-theme .mobile-location-name{color:#18181b;}.mobile-status-badge{display:inline-flex;align-items:center;justify-content:center;gap:8px;background:rgba(34,197,94,0.15);color:#22c55e;padding:12px 0;width:100%;max-width:500px;margin:0 auto 20px;border-radius:12px;font-size:14px;font-weight:600;text-transform:uppercase;letter-spacing:1px;}.mobile-status-badge.closed{background:rgba(239,68,68,0.15);color:#ef4444;}.mobile-status-badge .status-dot{width:8px;height:8px;background:currentColor;border-radius:50%;}.mobile-switcher-label{font-size:12px;color:#a1a1aa;margin-bottom:12px;letter-spacing:0.5px;}body.palm-bay-theme .mobile-switcher-label{color:#52525b;}.mobile-pill-switcher{display:flex;gap:0;background:#27272a;border-radius:25px;padding:4px;max-width:400px;margin:0 auto;}body.palm-bay-theme .mobile-pill-switcher{background:#e5e7eb;}.mobile-pill-switcher button{flex:1;display:flex;align-items:center;justify-content:center;gap:8px;padding:10px 20px;background:transparent;border:none;border-radius:21px;color:#a1a1aa;font-size:14px;font-weight:600;cursor:pointer;transition:all 0.3s ease;}body.palm-bay-theme .mobile-pill-switcher button{color:#52525b;}.mobile-pill-switcher button.active{background:#BBA18C;color:#000;}body.palm-bay-theme .mobile-pill-switcher button.active{background:#8B7355;color:#fff;}.mobile-pill-switcher button .location-icon{font-size:16px;}/* Mobile Nav Container - Menu Links */.mobile-nav-container{display:flex;flex-direction:column;padding:40px 30px 40px;gap:30px;}.mobile-nav a{font-family:"lumios-brush",sans-serif;color:#BBA18C;text-decoration:none;font-size:32px;text-transform:uppercase;transition:color 0.3s ease;}body.palm-bay-theme .mobile-nav a{color:#8B7355;}.mobile-nav a:hover{color:#77ACD7;}.mobile-nav .order-button{width:100%;margin-top:10px;}/* Mobile Menu Close Button */.mobile-menu-close{position:fixed;top:20px;left:20px;width:40px;height:40px;background:transparent;border:none;cursor:pointer;z-index:1007;display:none;flex-direction:column;justify-content:center;align-items:center;gap:0;padding:0;}.mobile-nav.active .mobile-menu-close{display:flex;}.mobile-menu-close span{width:28px;height:3px;background:#BBA18C;display:block;transition:all 0.3s ease;}body.palm-bay-theme .mobile-menu-close span{background:#8B7355;}.mobile-menu-close span:first-child{transform:rotate(45deg) translateY(1.5px);}.mobile-menu-close span:last-child{transform:rotate(-45deg) translateY(-1.5px);}.mobile-menu-close:hover span{background:#77ACD7;}/* Footer */.footer{background:#000;padding:60px 0 30px;border-top:1px solid #27272a;transition:background-color 0.4s ease,border-color 0.4s ease;}body.palm-bay-theme .footer{background:#fff;border-top:1px solid #e5e5e5;}.footer-container{max-width:1440px;margin:0 auto;padding:0 60px;}.footer-content{display:flex;justify-content:space-between;align-items:center;margin-bottom:40px;}.footer-logo{position:relative;height:90px;width:90px;}.footer-logo img{position:absolute;top:0;left:0;height:90px;width:auto;object-fit:contain;transition:opacity 0.5s ease;}.footer-logo img.melbourne-logo{opacity:1;pointer-events:auto;}.footer-logo img.palm-bay-logo{opacity:0;pointer-events:none;}body.palm-bay-theme .footer-logo img.melbourne-logo{opacity:0;pointer-events:none;}body.palm-bay-theme .footer-logo img.palm-bay-logo{opacity:1;pointer-events:auto;}.footer-nav{display:flex;gap:30px;}.footer-nav a{color:#a1a1aa;text-decoration:none;font-size:14px;transition:color 0.3s ease;}body.palm-bay-theme .footer-nav a{color:#6b7280;}.footer-nav a:hover{color:#77ACD7;}body.palm-bay-theme .footer-nav a:hover{color:#77ACD7;}.footer-bottom{display:flex;flex-direction:column;align-items:center;gap:20px;padding-top:40px;border-top:1px solid #27272a;}body.palm-bay-theme .footer-bottom{border-top-color:#e5e5e5;}.social-icons{display:flex;justify-content:center;gap:20px;margin-bottom:20px;}.social-icon{width:40px;height:40px;border-radius:50%;background:#18181b;display:flex;align-items:center;justify-content:center;color:#BBA18C;transition:all 0.3s ease;cursor:pointer;text-decoration:none;}body.palm-bay-theme .social-icon{background:#f3f4f6;color:#8B7355;}.social-icon:hover{background:#77ACD7;color:#fff;transform:translateY(-3px);}.social-icon svg{width:20px;height:20px;}.footer-legal{font-size:12px;color:#a1a1aa;text-align:center;}body.palm-bay-theme .footer-legal{color:#6b7280;}/* ============================================ HOME Homepage - Hero,Dishes,Reviews,About Preview,Contact Preview,Locations Lines 764-1874 from original style.css ============================================ *//* Section Divider */.section-divider{max-width:1200px;margin:0 auto;height:1px;background:linear-gradient(to right,transparent,#27272a,transparent);}body.palm-bay-theme .section-divider{background:linear-gradient(to right,transparent,#e5e5e5,transparent);}/* Hero Section */.hero-section{max-width:1440px;margin:0 auto;padding:80px 60px 100px;display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;overflow:hidden;}.hero-tagline{display:inline-block;padding:8px 20px;background:rgba(187,161,140,0.15);border:1px solid rgba(187,161,140,0.3);border-radius:50px;color:#BBA18C;font-size:14px;font-weight:600;letter-spacing:1px;text-transform:uppercase;margin-bottom:20px;animation:fadeInUp 0.6s ease-out;}body.palm-bay-theme .hero-tagline{background:rgba(139,115,85,0.1);border-color:rgba(139,115,85,0.3);color:#8B7355;}.hero-content h1{font-family:'Georgia','Times New Roman',serif;font-size:64px;font-weight:700;color:#BBA18C;margin-bottom:20px;line-height:1.2;animation:fadeInUp 0.8s ease-out 0.1s backwards;}body.palm-bay-theme .hero-content h1{color:#8B7355;}.hero-content p{font-size:18px;color:#a1a1aa;line-height:1.8;margin-bottom:30px;animation:fadeInUp 0.8s ease-out 0.2s backwards;}body.palm-bay-theme .hero-content p{color:#52525b;}.hero-buttons{display:flex;gap:20px;animation:fadeInUp 0.8s ease-out 0.3s backwards;}.btn-primary{background:linear-gradient(135deg,#77ACD7 0%,#5a8fb8 100%);border:none;color:#fff;padding:16px 40px;border-radius:30px;font-weight:600;font-size:16px;cursor:pointer;transition:all 0.3s ease;text-transform:uppercase;letter-spacing:0.5px;box-shadow:0 4px 15px rgba(119,172,215,0.3);text-decoration:none;display:inline-flex;align-items:center;justify-content:center;min-height:54px;}.btn-primary:hover{transform:translateY(-2px);box-shadow:0 6px 20px rgba(119,172,215,0.4);}.btn-secondary{background:transparent;border:2px solid #BBA18C;color:#BBA18C;padding:14px 38px;border-radius:30px;font-weight:600;font-size:16px;cursor:pointer;transition:all 0.3s ease;text-transform:uppercase;letter-spacing:0.5px;display:inline-flex;align-items:center;justify-content:center;min-height:54px;}body.palm-bay-theme .btn-secondary{border-color:#8B7355;color:#8B7355;}.btn-secondary:hover{background:#BBA18C;color:#000;}body.palm-bay-theme .btn-secondary:hover{background:#8B7355;color:#fff;}/* Hero Floating Images */.hero-image-container{position:relative;height:550px;}.hero-floating-images{position:relative;width:100%;height:100%;}.hero-float-img{position:absolute;border-radius:20px;overflow:visible;opacity:0;will-change:transform;transition:transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94),filter 0.5s ease;}.hero-float-img img{width:100%;height:100%;object-fit:contain;filter:drop-shadow(0 20px 40px rgba(0,0,0,0.3));}.hero-float-img:hover{z-index:10;}.hero-float-img:hover img{filter:drop-shadow(0 25px 50px rgba(187,161,140,0.35));}/* Position each image */.hero-float-img.img-1{width:220px;top:0;left:10%;animation:heroFloat1 0.8s ease-out 0.2s forwards,heroFloatContinue1 8s ease-in-out 1s infinite;}.hero-float-img.img-2{width:180px;top:5%;right:5%;animation:heroFloat2 0.8s ease-out 0.4s forwards,heroFloatContinue2 9s ease-in-out 1.2s infinite;}.hero-float-img.img-3{width:250px;top:40%;left:50%;margin-left:-125px;z-index:5;animation:heroFloat3 0.8s ease-out 0.1s forwards,heroFloatContinue3 7s ease-in-out 0.9s infinite;}.hero-float-img.img-4{width:190px;bottom:5%;left:5%;animation:heroFloat4 0.8s ease-out 0.5s forwards,heroFloatContinue4 10s ease-in-out 1.3s infinite;}.hero-float-img.img-5{width:170px;bottom:10%;right:10%;animation:heroFloat5 0.8s ease-out 0.3s forwards,heroFloatContinue5 8s ease-in-out 1.1s infinite;}/* Initial slide-in animations */@keyframes heroFloat1{from{opacity:0;transform:translateX(-80px) rotate(-10deg);}to{opacity:1;transform:translateX(0) rotate(-3deg);}}@keyframes heroFloat2{from{opacity:0;transform:translateX(80px) rotate(10deg);}to{opacity:1;transform:translateX(0) rotate(4deg);}}@keyframes heroFloat3{from{opacity:0;transform:translateY(80px) scale(0.8);}to{opacity:1;transform:translateY(0) scale(1);}}@keyframes heroFloat4{from{opacity:0;transform:translate(-60px,60px) rotate(5deg);}to{opacity:1;transform:translate(0,0) rotate(2deg);}}@keyframes heroFloat5{from{opacity:0;transform:translate(60px,60px) rotate(-5deg);}to{opacity:1;transform:translate(0,0) rotate(-2deg);}}/* Continuous floating animations */@keyframes heroFloatContinue1{0%,100%{transform:translateX(0) rotate(-3deg) translateY(0);}50%{transform:translateX(15px) rotate(0deg) translateY(-20px);}}@keyframes heroFloatContinue2{0%,100%{transform:translateX(0) rotate(4deg) translateY(0);}50%{transform:translateX(-10px) rotate(1deg) translateY(-15px);}}@keyframes heroFloatContinue3{0%,100%{transform:translateY(0) scale(1);}50%{transform:translateY(-25px) scale(1.02);}}@keyframes heroFloatContinue4{0%,100%{transform:translate(0,0) rotate(2deg);}50%{transform:translate(12px,-18px) rotate(-1deg);}}@keyframes heroFloatContinue5{0%,100%{transform:translate(0,0) rotate(-2deg);}50%{transform:translate(-15px,-12px) rotate(-5deg);}}/* Glow effect behind images */.hero-glow{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:400px;height:400px;background:radial-gradient(circle,rgba(187,161,140,0.15) 0%,transparent 70%);border-radius:50%;pointer-events:none;animation:glowPulse 4s ease-in-out infinite;}body.palm-bay-theme .hero-glow{background:radial-gradient(circle,rgba(139,115,85,0.1) 0%,transparent 70%);}@keyframes glowPulse{0%,100%{transform:translate(-50%,-50%) scale(1);opacity:0.5;}50%{transform:translate(-50%,-50%) scale(1.1);opacity:0.8;}}background:rgba(255,255,255,0.5);cursor:pointer;transition:all 0.3s ease;}.slide-dot.active{background:#77ACD7;width:30px;border-radius:6px;}@keyframes fadeInUp{from{opacity:0;transform:translateY(30px);}to{opacity:1;transform:translateY(0);}}/* Recommended Dishes Section */.dishes-section{max-width:1440px;margin:0 auto;padding:100px 60px;}.section-header{text-align:center;margin-bottom:60px;}.section-header .section-tag{display:inline-block;padding:8px 20px;background:rgba(119,172,215,0.15);border-radius:50px;color:#77ACD7;font-size:13px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:20px;}.section-header h2{font-family:'Georgia','Times New Roman',serif;font-size:48px;font-weight:700;color:#BBA18C;margin-bottom:15px;}body.palm-bay-theme .section-header h2{color:#8B7355;}.section-header p{font-size:16px;color:#a1a1aa;}body.palm-bay-theme .section-header p{color:#52525b;}/* Signature Dishes Grid */.signature-dishes-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:30px;}.signature-dish-card{background:#18181b;border-radius:24px;overflow:hidden;border:1px solid #27272a;transition:all 0.4s ease;}body.palm-bay-theme .signature-dish-card{background:#fff;border-color:#e5e7eb;}.signature-dish-card:hover{transform:translateY(-10px);box-shadow:0 25px 50px rgba(0,0,0,0.3);border-color:rgba(187,161,140,0.3);}body.palm-bay-theme .signature-dish-card:hover{box-shadow:0 25px 50px rgba(0,0,0,0.1);border-color:rgba(139,115,85,0.3);}.signature-dish-image{position:relative;height:200px;overflow:hidden;background:#0a0a0a;}body.palm-bay-theme .signature-dish-image{background:#f3f4f6;}.signature-dish-image img{width:100%;height:100%;object-fit:cover;transition:transform 0.6s ease;}.signature-dish-card:hover .signature-dish-image img{transform:scale(1.1);}.signature-dish-content{padding:25px;}.signature-dish-content h3{font-family:'Georgia','Times New Roman',serif;font-size:20px;font-weight:700;color:#BBA18C;margin-bottom:10px;}body.palm-bay-theme .signature-dish-content h3{color:#8B7355;}.signature-dish-content p{font-size:14px;color:#a1a1aa;line-height:1.6;}body.palm-bay-theme .signature-dish-content p{color:#6b7280;}.view-menu-wrapper{display:flex;justify-content:center;margin-top:50px;}.btn-view-menu{background:linear-gradient(135deg,#77ACD7 0%,#5a8fb8 100%);border:none;color:#fff;padding:16px 48px;font-size:16px;font-weight:600;text-transform:uppercase;letter-spacing:0.5px;border-radius:50px;cursor:pointer;transition:all 0.3s ease;box-shadow:0 4px 15px rgba(119,172,215,0.3);text-decoration:none;}.btn-view-menu:hover{transform:translateY(-2px);box-shadow:0 6px 20px rgba(119,172,215,0.4);}.carousel-nav{display:flex;justify-content:center;gap:15px;margin-top:10px;}.carousel-btn{width:50px;height:50px;border-radius:50%;background:#18181b;border:1px solid #27272a;color:#BBA18C;cursor:pointer;transition:all 0.3s ease;display:flex;align-items:center;justify-content:center;font-size:20px;}body.palm-bay-theme .carousel-btn{background:#f3f4f6;border-color:#e5e7eb;color:#8B7355;}.carousel-btn:hover{background:#BBA18C;color:#000;}body.palm-bay-theme .carousel-btn:hover{background:#8B7355;color:#fff;}/* Reviews Section */.reviews-section{max-width:1440px;margin:0 auto;padding:100px 60px;}.reviews-header{text-align:center;margin-bottom:60px;}.reviews-header h2{font-family:'Georgia','Times New Roman',serif;font-size:48px;font-weight:700;color:#BBA18C;margin-bottom:15px;}body.palm-bay-theme .reviews-header h2{color:#8B7355;}.rating-display{display:flex;justify-content:center;align-items:center;gap:10px;margin-bottom:10px;}.stars{color:#fbbf24;font-size:24px;}.rating-number{font-size:24px;font-weight:700;color:#fff;}body.palm-bay-theme .rating-number{color:#18181b;}.reviews-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:30px;}.review-card{background:#18181b;border-radius:20px;padding:30px;border:1px solid #27272a;transition:all 0.3s ease;}body.palm-bay-theme .review-card{background:#f9fafb;border-color:#e5e7eb;}.review-card:hover{transform:translateY(-5px);box-shadow:0 10px 30px rgba(0,0,0,0.2);}body.palm-bay-theme .review-card:hover{box-shadow:0 10px 30px rgba(0,0,0,0.08);}.review-avatar{width:50px;height:50px;border-radius:50%;background:#BBA18C;color:#000;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:18px;margin-bottom:15px;}body.palm-bay-theme .review-avatar{background:#8B7355;color:#fff;}.review-stars{color:#fbbf24;margin-bottom:10px;}.review-text{font-size:14px;color:#a1a1aa;line-height:1.6;margin-bottom:15px;}body.palm-bay-theme .review-text{color:#6b7280;}.review-author{font-weight:600;color:#fff;}body.palm-bay-theme .review-author{color:#18181b;}/* Review Loading State */.review-card.loading{min-height:200px;display:flex;align-items:center;justify-content:center;}.review-loading-placeholder{width:40px;height:40px;border:3px solid #27272a;border-top-color:#77ACD7;border-radius:50%;animation:reviewSpin 1s linear infinite;}body.palm-bay-theme .review-loading-placeholder{border-color:#e5e7eb;border-top-color:#77ACD7;}@keyframes reviewSpin{to{transform:rotate(360deg);}}/* About Section */.about-section{max-width:1440px;margin:0 auto;padding:100px 60px;}.about-intro{text-align:center;margin-bottom:60px;}.about-intro h2{font-family:'Georgia','Times New Roman',serif;font-size:48px;font-weight:700;color:#BBA18C;margin-bottom:20px;}body.palm-bay-theme .about-intro h2{color:#8B7355;}.about-intro p{font-size:18px;color:#a1a1aa;max-width:800px;margin:0 auto;line-height:1.8;}body.palm-bay-theme .about-intro p{color:#52525b;}.location-block{display:grid;grid-template-columns:1fr 1fr;gap:60px;margin-bottom:60px;align-items:center;}.location-block:last-child{margin-bottom:0;}.location-content h3{font-family:'Georgia','Times New Roman',serif;font-size:36px;font-weight:700;color:#BBA18C;margin-bottom:20px;}body.palm-bay-theme .location-content h3{color:#8B7355;}.location-content p{font-size:16px;color:#a1a1aa;line-height:1.8;margin-bottom:15px;}body.palm-bay-theme .location-content p{color:#52525b;}.location-image{height:400px;border-radius:20px;background:#27272a;overflow:hidden;}.location-image img{width:100%;height:100%;object-fit:cover;object-position:center 20%;transition:transform 0.6s ease;}.location-block:hover .location-image img{transform:scale(1.05);}body.palm-bay-theme .location-image{background:#e5e7eb;}.image-placeholder{width:100%;height:100%;display:flex;align-items:center;justify-content:center;font-size:72px;}/* Contact Section */.contact-section{max-width:1440px;margin:0 auto;padding:80px 60px;}.contact-header{text-align:center;margin-bottom:50px;}.contact-header h2{font-family:'Georgia','Times New Roman',serif;font-size:48px;font-weight:700;color:#BBA18C;margin-bottom:15px;}body.palm-bay-theme .contact-header h2{color:#8B7355;}.contact-header p{font-size:16px;color:#a1a1aa;}body.palm-bay-theme .contact-header p{color:#52525b;}.contact-grid{display:grid;grid-template-columns:1.2fr 1fr;gap:50px;align-items:start;}.contact-map{width:100%;height:500px;border-radius:20px;overflow:hidden;background:#27272a;border:1px solid #27272a;}body.palm-bay-theme .contact-map{background:#e5e7eb;border-color:#e5e7eb;}.contact-map iframe{width:100%;height:100%;border:0;}.contact-info{display:flex;flex-direction:column;gap:25px;}.info-group{display:flex;flex-direction:column;gap:8px;}.info-label{font-size:11px;color:#71717a;font-weight:600;text-transform:uppercase;letter-spacing:0.5px;}body.palm-bay-theme .info-label{color:#52525b;}.info-value{font-size:16px;color:#fff;line-height:1.5;}body.palm-bay-theme .info-value{color:#18181b;}.info-value a{color:#77ACD7;text-decoration:none;transition:color 0.3s ease;}.info-value a:hover{color:#5a8fb8;}.contact-hours{padding:20px;background:#18181b;border-radius:15px;border:1px solid #27272a;margin-top:5px;}body.palm-bay-theme .contact-hours{background:#f9fafb;border-color:#e5e7eb;}.hours-title{font-size:13px;font-weight:600;color:#fff;margin-bottom:12px;}body.palm-bay-theme .hours-title{color:#18181b;}.hours-list{display:flex;flex-direction:column;gap:6px;}.hours-row{display:flex;justify-content:space-between;font-size:13px;}.hours-day{color:#a1a1aa;}body.palm-bay-theme .hours-day{color:#6b7280;}.hours-time{color:#fff;font-weight:500;}body.palm-bay-theme .hours-time{color:#18181b;}.btn-directions{display:inline-flex;align-items:center;justify-content:center;gap:10px;padding:14px 28px;background:#77ACD7 !important;color:#fff !important;text-decoration:none;border-radius:50px;font-size:15px;font-weight:600;text-transform:uppercase;letter-spacing:0.5px;border:none;cursor:pointer;transition:all 0.3s ease;box-shadow:0 4px 15px rgba(119,172,215,0.3);margin-top:5px;}.btn-directions:hover{background:#5a8fb8 !important;transform:translateY(-2px);box-shadow:0 6px 20px rgba(119,172,215,0.4);}/* =================================== LOCATIONS SECTION (Index Page) =================================== */.locations-section{max-width:1440px;margin:0 auto;padding:80px 60px;}.locations-header{text-align:center;margin-bottom:50px;}.locations-header h2{font-family:'Georgia','Times New Roman',serif;font-size:48px;font-weight:700;color:#BBA18C;margin-bottom:15px;}body.palm-bay-theme .locations-header h2{color:#8B7355;}.locations-header p{font-size:16px;color:#a1a1aa;}body.palm-bay-theme .locations-header p{color:#52525b;}.locations-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:30px;}.location-card{background:#18181b;border-radius:20px;overflow:hidden;border:1px solid #27272a;transition:all 0.3s ease;display:flex;flex-direction:column;}body.palm-bay-theme .location-card{background:#fff;border-color:#e5e7eb;}.location-card:hover{transform:translateY(-5px);box-shadow:0 15px 40px rgba(0,0,0,0.3);}body.palm-bay-theme .location-card:hover{box-shadow:0 15px 40px rgba(0,0,0,0.1);}.location-card-map{height:200px;background:#27272a;}.location-card-map iframe{width:100%;height:100%;border:0;}.location-card-content{padding:25px;display:flex;flex-direction:column;flex:1;}.location-card-content h3{font-family:'Georgia','Times New Roman',serif;font-size:28px;font-weight:700;color:#BBA18C;margin-bottom:20px;}body.palm-bay-theme .location-card-content h3{color:#8B7355;}.location-card-details{display:flex;flex-direction:column;gap:12px;margin-bottom:25px;flex:1;}.location-card-row{display:flex;align-items:flex-start;gap:12px;font-size:14px;color:#a1a1aa;line-height:1.5;}body.palm-bay-theme .location-card-row{color:#52525b;}.location-card-row a{color:#a1a1aa;text-decoration:none;transition:color 0.3s ease;}body.palm-bay-theme .location-card-row a{color:#52525b;}.location-card-row a:hover{color:#77ACD7;}.location-icon{flex-shrink:0;width:20px;text-align:center;}.btn-navigate{display:inline-flex;align-items:center;justify-content:center;gap:8px;width:100%;padding:14px 24px;background:linear-gradient(135deg,#77ACD7 0%,#5a8fb8 100%);color:#fff;text-decoration:none;border-radius:12px;font-size:15px;font-weight:600;text-transform:uppercase;letter-spacing:0.5px;transition:all 0.3s ease;box-shadow:0 4px 15px rgba(119,172,215,0.3);margin-top:auto;}.btn-navigate:hover{transform:translateY(-2px);box-shadow:0 6px 20px rgba(119,172,215,0.4);}.btn-navigate svg{transition:transform 0.3s ease;}.btn-navigate:hover svg{transform:translateX(4px);}/* Locations Section Responsive */@media (max-width:768px){.locations-section{padding:60px 30px;}.locations-header h2{font-size:32px;}.locations-grid{grid-template-columns:1fr;}.location-card-map{height:180px;}}.contact-melbourne,.contact-palm-bay{display:none;}.contact-melbourne.active,.contact-palm-bay.active{display:grid;}/* Contact page location cards */.melbourne-contact,.palm-bay-contact{display:none;}.melbourne-contact.active,.palm-bay-contact.active{display:block;}/* ============================================ RESPONSIVE Responsive Design - Media Queries Lines 1875-2459 from original style.css ============================================ *//* Responsive Design */@media (max-width:1200px){.header-container{gap:40px;}.nav-left,.nav-right{gap:30px;}.hero-section{gap:60px;}.hero-content h1{font-size:54px;}.dishes-carousel .carousel-track{gap:20px;}.dish-card{min-width:calc(33.333% - 14px);}}@media (max-width:768px){.top-bar-container{padding:0 20px;gap:12px;}.location-status{display:flex;flex-direction:row;align-items:center;gap:15px;width:100%;}.location-name{font-size:14px;}.status-container{flex-wrap:nowrap;gap:10px;}.hours-text{display:none;}.location-switcher{width:100%;justify-content:flex-end;gap:10px;}.switcher-label{display:none;}.pill-switcher{width:auto;}.pill-switcher button{padding:6px 12px;font-size:11px;}.header-container{justify-content:space-between;padding:20px 20px;}.mobile-menu-toggle{display:flex;order:1;}.nav-left,.nav-right{display:none;}.logo-link{order:2;position:absolute;left:50%;transform:translateX(-50%);}.logo-container{height:90px;width:90px;}.logo-container img{height:90px;width:90px;}.order-button{order:3;padding:8px 16px;font-size:12px;}.mobile-nav-container{padding:40px 30px 40px;}.hero-section{grid-template-columns:1fr;padding:60px 30px;gap:40px;}.hero-content h1{font-size:42px;}.hero-image-container{height:400px;}.hero-buttons{flex-direction:column;gap:15px;}.btn-primary,.btn-secondary{width:100%;text-align:center;min-height:54px;display:flex;align-items:center;justify-content:center;padding:16px 40px;}/* Hero floating images - mobile */ .hero-floating-images{position:relative;width:100%;height:100%;}.hero-float-img.img-1{width:140px;top:5%;left:5%;}.hero-float-img.img-2{width:120px;top:5%;right:5%;}.hero-float-img.img-3{width:160px;top:35%;left:50%;margin-left:-80px;}.hero-float-img.img-4{width:130px;bottom:10%;left:10%;}.hero-float-img.img-5{width:110px;bottom:15%;right:8%;}.hero-glow{width:280px;height:280px;}/* Signature dishes - 2x2 grid on mobile */ .signature-dishes-grid{grid-template-columns:repeat(2,1fr);gap:20px;}.signature-dish-image{height:150px;}.signature-dish-content{padding:20px;}.signature-dish-content h3{font-size:16px;}.signature-dish-content p{font-size:13px;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;}.dishes-section{padding:60px 30px;}.section-header h2{font-size:36px;}.reviews-section{padding:60px 30px;}.reviews-header h2{font-size:36px;}.reviews-grid{grid-template-columns:1fr;gap:20px;}.about-section{padding:60px 30px;}.about-intro h2{font-size:36px;}.location-block{grid-template-columns:1fr;gap:30px;}.location-block:nth-child(even) .location-content{order:1;}.location-block:nth-child(even) .location-image{order:2;}.location-image{height:300px;}.contact-section{padding:60px 30px;}.contact-header h2{font-size:36px;}.contact-grid{grid-template-columns:1fr;gap:30px;}.contact-map{height:400px;}.footer-content{flex-direction:column;gap:30px;text-align:center;}.footer-nav{flex-direction:column;align-items:center;gap:15px;}}/* Small phones - Start stacking top bar */@media (max-width:480px){.top-bar-container{flex-direction:column !important;align-items:center !important;gap:12px !important;padding:15px 20px !important;text-align:center !important;}.location-status{flex-direction:column !important;align-items:center !important;gap:8px !important;width:100% !important;}.location-label{font-size:10px !important;letter-spacing:2px !important;color:#d4d4d8 !important;}body.palm-bay-theme .location-label{color:#52525b !important;}.location-name{font-size:20px !important;font-weight:700 !important;}.status-container{width:100% !important;justify-content:center !important;flex-wrap:nowrap !important;gap:8px !important;}.status-badge{padding:8px 20px !important;font-size:12px !important;border-radius:12px !important;font-weight:600 !important;text-transform:uppercase !important;letter-spacing:1px !important;}.hours-text{display:none !important;}.location-switcher{flex-direction:column !important;gap:8px !important;width:100% !important;align-items:center !important;}.switcher-label{display:block !important;text-align:center !important;font-size:11px !important;color:#a1a1aa !important;letter-spacing:0.5px !important;}body.palm-bay-theme .switcher-label{color:#6b7280 !important;}.pill-switcher{width:100% !important;max-width:350px !important;background:#27272a !important;border-radius:25px !important;padding:4px !important;}body.palm-bay-theme .pill-switcher{background:#e5e7eb !important;}.pill-switcher button{flex:1 !important;padding:10px 16px !important;font-size:13px !important;border-radius:21px !important;font-weight:600 !important;}}@media (max-width:480px){.main-header{padding:12px 0;}.header-container{padding:12px 20px;}.logo-container{height:80px;width:80px;}.logo-container img{height:80px;width:80px;}.mobile-location-header{padding:70px 20px 25px;}.mobile-location-name{font-size:24px;}.mobile-nav-container{padding:35px 25px 40px;}.mobile-nav a{font-size:28px;}.hero-content h1{font-size:32px;}.hero-content p{font-size:16px;}.hero-image-container{height:300px;}/* Hero floating images - small phones */ .hero-float-img.img-1{width:100px;top:5%;left:5%;}.hero-float-img.img-2{width:90px;top:5%;right:5%;}.hero-float-img.img-3{width:120px;top:35%;margin-left:-60px;}.hero-float-img.img-4{width:95px;bottom:10%;left:8%;}.hero-float-img.img-5{width:85px;bottom:12%;right:5%;}.hero-glow{width:200px;height:200px;}/* Signature dishes - smaller on phones */ .signature-dishes-grid{gap:15px;}.signature-dish-image{height:120px;}.signature-dish-content{padding:15px;}.signature-dish-content h3{font-size:14px;margin-bottom:6px;}.signature-dish-content p{font-size:12px;-webkit-line-clamp:2;}.btn-primary,.btn-secondary{padding:14px 28px;font-size:14px;min-height:50px;}.section-header h2,.reviews-header h2,.about-intro h2,.contact-header h2{font-size:28px;}.location-content h3{font-size:28px;}.contact-map{height:300px;}.btn-directions{width:100%;}}/* iPhone and very small screens */@media (max-width:390px){.top-bar-container{flex-direction:column !important;align-items:center !important;gap:10px !important;padding:12px 15px !important;text-align:center !important;}.location-status{flex-direction:column !important;align-items:center !important;gap:6px !important;width:100% !important;}.location-label{font-size:9px !important;display:block !important;width:100% !important;}.location-name{font-size:15px !important;display:block !important;width:100% !important;}.status-container{width:100% !important;justify-content:flex-start !important;flex-wrap:nowrap !important;gap:8px !important;}.status-badge{font-size:10px !important;padding:3px 8px !important;white-space:nowrap !important;}.hours-text{display:none !important;}.location-switcher{flex-direction:column !important;align-items:stretch !important;gap:6px !important;width:100% !important;}.switcher-label{display:block !important;font-size:9px !important;text-align:center !important;width:100% !important;}.pill-switcher{width:100% !important;display:flex !important;}.pill-switcher button{flex:1 !important;justify-content:center !important;padding:7px 10px !important;font-size:11px !important;}.mobile-location-header{padding:65px 15px 25px !important;}.mobile-location-name{font-size:22px !important;}.mobile-status-badge{font-size:12px !important;padding:10px 0 !important;}.mobile-nav-container{padding:30px 20px 40px !important;}.mobile-nav a{font-size:26px !important;}}/* ============================================ ABOUT About Page Styles Lines 2460-3638 from original style.css ============================================ *//* =================================== ABOUT US PAGE STYLES - REDESIGNED =================================== *//* Hero Section */.about-hero{position:relative;min-height:60vh;display:flex;align-items:center;justify-content:center;text-align:center;padding:100px 60px 80px;overflow:hidden;}.about-hero-content{position:relative;z-index:2;}.hero-badge{display:inline-block;padding:8px 20px;background:rgba(187,161,140,0.2);border:1px solid #BBA18C;border-radius:50px;color:#BBA18C;font-size:14px;font-weight:600;letter-spacing:1px;margin-bottom:25px;}body.palm-bay-theme .hero-badge{background:rgba(139,115,85,0.1);border-color:#8B7355;color:#8B7355;}.about-hero h1{font-family:'Georgia','Times New Roman',serif;font-size:72px;color:#BBA18C;margin-bottom:20px;font-weight:700;}body.palm-bay-theme .about-hero h1{color:#8B7355;}.about-hero p{font-size:20px;color:#a1a1aa;max-width:100%;margin:0 auto 40px;line-height:1.6;}body.palm-bay-theme .about-hero p{color:#52525b;}/* Floating Elements */.floating-element{position:absolute;border-radius:50%;opacity:0.1;pointer-events:none;}.float-1{width:300px;height:300px;background:linear-gradient(135deg,#BBA18C,#8B7355);top:10%;left:-100px;animation:float1 8s ease-in-out infinite;}.float-2{width:200px;height:200px;background:linear-gradient(135deg,#77ACD7,#5a8fb8);top:60%;right:-50px;animation:float2 10s ease-in-out infinite;}.float-3{width:150px;height:150px;background:linear-gradient(135deg,#BBA18C,#77ACD7);bottom:10%;left:20%;animation:float3 7s ease-in-out infinite;}@keyframes float1{0%,100%{transform:translate(0,0) rotate(0deg);}50%{transform:translate(30px,-30px) rotate(10deg);}}@keyframes float2{0%,100%{transform:translate(0,0) rotate(0deg);}50%{transform:translate(-20px,20px) rotate(-10deg);}}@keyframes float3{0%,100%{transform:translate(0,0);}50%{transform:translate(15px,-15px);}}/* Scroll Indicator */.hero-scroll-indicator{display:flex;flex-direction:column;align-items:center;gap:10px;color:#71717a;font-size:13px;letter-spacing:1px;}.scroll-arrow{width:20px;height:30px;border:2px solid #71717a;border-radius:10px;position:relative;}.scroll-arrow::after{content:'';position:absolute;top:6px;left:50%;transform:translateX(-50%);width:4px;height:8px;background:#71717a;border-radius:2px;animation:scrollBounce 1.5s ease-in-out infinite;}@keyframes scrollBounce{0%,100%{top:6px;opacity:1;}50%{top:14px;opacity:0.5;}}/* Intro Section */.about-intro{padding:100px 60px;background:#000;}body.palm-bay-theme .about-intro{background:#fff;}.about-intro-container{max-width:1400px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;}.intro-images{position:relative;height:550px;}.intro-image{position:absolute;border-radius:20px;overflow:visible;transition:transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94),filter 0.4s ease;opacity:0;will-change:transform,opacity;}.intro-image.slide-in{opacity:1;}.intro-image:hover{transform:scale(1.15) translateY(-10px) !important;filter:drop-shadow(0 25px 40px rgba(187,161,140,0.4));z-index:10;}.intro-image img{width:100%;height:100%;object-fit:contain;transition:transform 0.6s ease;}/* Image 1 - Top Left,slides from left */.intro-image.img-1{width:220px;height:220px;top:0;left:0;z-index:2;transform:translateX(-100px) rotate(-5deg);}.intro-image.img-1.slide-in{transform:translateX(0) rotate(-3deg);animation:floatImage1 6s ease-in-out infinite;animation-delay:0.5s;}/* Image 2 - Center,slides from bottom */.intro-image.img-2{width:260px;height:260px;top:50%;left:50%;margin-left:-130px;margin-top:-130px;z-index:5;transform:translateY(80px) scale(0.8);}.intro-image.img-2.slide-in{transform:translateY(0) scale(1);animation:floatImage2 7s ease-in-out infinite;animation-delay:0.2s;}/* Image 3 - Top Right,slides from right */.intro-image.img-3{width:180px;height:180px;top:20px;right:0;z-index:3;transform:translateX(100px) rotate(5deg);}.intro-image.img-3.slide-in{transform:translateX(0) rotate(4deg);animation:floatImage3 5s ease-in-out infinite;animation-delay:0.7s;}/* Image 4 - Bottom Left,slides from bottom-left */.intro-image.img-4{width:200px;height:200px;bottom:20px;left:30px;z-index:1;transform:translate(-80px,80px) rotate(3deg);}.intro-image.img-4.slide-in{transform:translate(0,0) rotate(2deg);animation:floatImage4 8s ease-in-out infinite;animation-delay:0.4s;}/* Image 5 - Bottom Right,slides from bottom-right */.intro-image.img-5{width:170px;height:170px;bottom:60px;right:20px;z-index:4;transform:translate(80px,80px) rotate(-4deg);}.intro-image.img-5.slide-in{transform:translate(0,0) rotate(-2deg);animation:floatImage5 6s ease-in-out infinite;animation-delay:0.6s;}/* Floating animations for each image */@keyframes floatImage1{0%,100%{transform:translateX(0) rotate(-3deg) translateY(0);}50%{transform:translateX(10px) rotate(-1deg) translateY(-15px);}}@keyframes floatImage2{0%,100%{transform:translateY(0) scale(1);}50%{transform:translateY(-20px) scale(1.02);}}@keyframes floatImage3{0%,100%{transform:translateX(0) rotate(4deg) translateY(0);}50%{transform:translateX(-10px) rotate(2deg) translateY(-12px);}}@keyframes floatImage4{0%,100%{transform:translate(0,0) rotate(2deg);}50%{transform:translate(8px,-18px) rotate(0deg);}}@keyframes floatImage5{0%,100%{transform:translate(0,0) rotate(-2deg);}50%{transform:translate(-12px,-14px) rotate(-4deg);}}.intro-content h2{font-family:'Georgia','Times New Roman',serif;font-size:48px;color:#fff;margin-bottom:25px;line-height:1.2;}body.palm-bay-theme .intro-content h2{color:#18181b;}.text-highlight{color:#BBA18C;}body.palm-bay-theme .text-highlight{color:#8B7355;}.intro-lead{font-size:20px;color:#BBA18C;margin-bottom:20px;font-weight:500;}body.palm-bay-theme .intro-lead{color:#8B7355;}.intro-content p{font-size:17px;line-height:1.8;color:#a1a1aa;margin-bottom:20px;}body.palm-bay-theme .intro-content p{color:#52525b;}.intro-stats{display:flex;gap:40px;margin-top:40px;padding-top:30px;border-top:1px solid #27272a;}body.palm-bay-theme .intro-stats{border-top-color:#e5e7eb;}.stat{text-align:center;}.stat-number{display:block;font-family:'Georgia','Times New Roman',serif;font-size:42px;color:#BBA18C;font-weight:700;}body.palm-bay-theme .stat-number{color:#8B7355;}.stat-label{font-size:14px;color:#71717a;text-transform:uppercase;letter-spacing:0.5px;}/* Clean Eats Banner */.clean-eats-banner{position:relative;padding:100px 60px;background:linear-gradient(135deg,#BBA18C 0%,#8B7355 100%);text-align:center;overflow:hidden;}.banner-bg-pattern{position:absolute;inset:0;background-image:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");}.clean-eats-content{position:relative;z-index:2;max-width:700px;margin:0 auto;}.clean-eats-badge{display:inline-block;padding:10px 25px;background:rgba(255,255,255,0.2);border-radius:50px;color:#fff;font-size:16px;font-weight:600;margin-bottom:25px;}.clean-eats-banner h2{font-family:'Georgia','Times New Roman',serif;font-size:42px;color:#fff;margin-bottom:20px;}.clean-eats-banner p{font-size:18px;color:rgba(255,255,255,0.9);line-height:1.7;margin-bottom:30px;}.no-msg-badge{display:inline-flex;align-items:center;gap:12px;padding:15px 30px;background:#fff;border-radius:50px;color:#8B7355;font-size:16px;font-weight:600;}.badge-icon{display:flex;align-items:center;justify-content:center;width:28px;height:28px;background:#22c55e;border-radius:50%;color:#fff;font-size:14px;}/* Values Section */.about-values-section{padding:100px 60px;background:#0a0a0a;}body.palm-bay-theme .about-values-section{background:#f3f4f6;}.values-container{max-width:1200px;margin:0 auto;}.values-header{text-align:center;margin-bottom:60px;}.section-tag{display:inline-block;padding:8px 20px;background:rgba(119,172,215,0.15);border-radius:50px;color:#77ACD7;font-size:13px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:20px;}.values-header h2{font-family:'Georgia','Times New Roman',serif;font-size:42px;color:#fff;}body.palm-bay-theme .values-header h2{color:#18181b;}.about-values-section .values-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:25px;}.about-values-section .value-card{background:#18181b;padding:35px 25px;border-radius:20px;text-align:center;transition:all 0.4s ease;border:1px solid transparent;}body.palm-bay-theme .about-values-section .value-card{background:#fff;}.about-values-section .value-card:hover{transform:translateY(-8px);border-color:#BBA18C;box-shadow:0 20px 40px rgba(187,161,140,0.15);}.value-icon-wrap{width:70px;height:70px;margin:0 auto 20px;background:linear-gradient(135deg,rgba(187,161,140,0.2),rgba(119,172,215,0.1));border-radius:50%;display:flex;align-items:center;justify-content:center;}.about-values-section .value-icon{font-size:32px;}.about-values-section .value-card h3{font-size:20px;color:#BBA18C;margin-bottom:12px;}body.palm-bay-theme .about-values-section .value-card h3{color:#8B7355;}.about-values-section .value-card p{font-size:15px;line-height:1.6;color:#a1a1aa;}body.palm-bay-theme .about-values-section .value-card p{color:#52525b;}/* Parallax Quote Section */.parallax-break{position:relative;min-height:450px;display:flex;align-items:center;justify-content:center;overflow:hidden;}.parallax-bg{position:absolute;inset:-50px;background:url('../images/main-pho.jpg') center center / cover no-repeat;transition:transform 0.1s ease-out;will-change:transform;}.parallax-overlay{position:absolute;inset:0;background:linear-gradient( 135deg,rgba(0,0,0,0.7) 0%,rgba(24,24,27,0.8) 50%,rgba(0,0,0,0.7) 100% );z-index:1;}/* Floating decorative elements */.parallax-decor{position:absolute;border-radius:50%;opacity:0.1;z-index:2;}.parallax-decor-1{width:200px;height:200px;background:#BBA18C;top:10%;left:10%;animation:floatSlow 8s ease-in-out infinite;}.parallax-decor-2{width:150px;height:150px;background:#77ACD7;bottom:15%;right:15%;animation:floatSlow 10s ease-in-out infinite reverse;}@keyframes floatSlow{0%,100%{transform:translate(0,0) scale(1);}50%{transform:translate(20px,-20px) scale(1.05);}}.parallax-content{position:relative;z-index:3;text-align:center;padding:0 20px;}.parallax-content blockquote{font-family:'Georgia','Times New Roman',serif;font-size:48px;color:#fff;font-style:italic;max-width:800px;margin:0 auto 20px;text-shadow:0 2px 20px rgba(0,0,0,0.3);}.quote-attribution{display:block;font-size:16px;color:#BBA18C;letter-spacing:2px;text-transform:uppercase;}/* Locations Section */.about-locations-section{padding:100px 60px;background:#000;}body.palm-bay-theme .about-locations-section{background:#fff;}.locations-container{max-width:1200px;margin:0 auto;}.locations-header{text-align:center;margin-bottom:60px;}.locations-header h2{font-family:'Georgia','Times New Roman',serif;font-size:42px;color:#BBA18C;margin-bottom:15px;}body.palm-bay-theme .locations-header h2{color:#8B7355;}.locations-header p{font-size:18px;color:#a1a1aa;max-width:600px;margin:0 auto;}body.palm-bay-theme .locations-header p{color:#52525b;}.locations-showcase{display:grid;grid-template-columns:repeat(2,1fr);gap:40px;}.location-showcase-card{background:#18181b;border-radius:24px;overflow:hidden;transition:transform 0.4s ease,box-shadow 0.4s ease;}body.palm-bay-theme .location-showcase-card{background:#f9fafb;}.location-showcase-card:hover{transform:translateY(-10px);box-shadow:0 30px 60px rgba(0,0,0,0.3);}.location-image{position:relative;height:280px;overflow:hidden;}.location-image img{width:100%;height:100%;object-fit:cover;object-position:center 20%;transition:transform 0.6s ease;}.location-showcase-card:hover .location-image img{transform:scale(1.08);object-position:center 25%;}.location-logo{position:absolute;bottom:-30px;left:30px;width:80px;height:80px;background:#18181b;border-radius:16px;padding:10px;box-shadow:0 10px 30px rgba(0,0,0,0.3);}body.palm-bay-theme .location-logo{background:#fff;}.location-logo img{width:100%;height:100%;object-fit:contain;}.location-details{padding:50px 30px 30px;}.location-details h3{font-family:'Georgia','Times New Roman',serif;font-size:28px;color:#BBA18C;margin-bottom:20px;}.melbourne .location-details h3{color:#BBA18C;}.palm-bay .location-details h3{color:#8B7355;}.location-info-row{display:flex;align-items:flex-start;gap:12px;margin-bottom:15px;font-size:15px;color:#a1a1aa;}body.palm-bay-theme .location-info-row{color:#52525b;}.info-icon{font-size:16px;flex-shrink:0;margin-top:2px;}.location-info-row a{color:#77ACD7;text-decoration:none;transition:color 0.3s ease;}.location-info-row a:hover{color:#5a8fb8;}.location-info-row em{color:#77ACD7;font-style:normal;}.btn-directions-outline{display:inline-block;margin-top:20px;padding:12px 24px;border:2px solid #77ACD7;border-radius:50px;color:#77ACD7;font-size:14px;font-weight:600;text-decoration:none;text-transform:uppercase;letter-spacing:0.5px;transition:all 0.3s ease;}.btn-directions-outline:hover{background:#77ACD7;color:#fff;}/* CTA Section */.about-cta-section{position:relative;padding:120px 60px;background:#0a0a0a;text-align:center;overflow:hidden;}body.palm-bay-theme .about-cta-section{background:#f3f4f6;}.cta-floating-images{position:absolute;inset:0;pointer-events:none;overflow:hidden;}.cta-float-img{position:absolute;border-radius:16px;opacity:0.25;transition:transform 0.3s ease,opacity 0.3s ease;box-shadow:0 20px 50px rgba(0,0,0,0.3);}.cta-float-img.img-1{width:200px;top:8%;left:5%;transform:rotate(-8deg);animation:ctaFloat1 10s ease-in-out infinite;}.cta-float-img.img-2{width:160px;top:15%;right:8%;transform:rotate(6deg);animation:ctaFloat2 12s ease-in-out infinite;}.cta-float-img.img-3{width:180px;bottom:10%;left:12%;transform:rotate(4deg);animation:ctaFloat3 9s ease-in-out infinite;}.cta-float-img.img-4{width:150px;bottom:20%;right:5%;transform:rotate(-5deg);animation:ctaFloat4 11s ease-in-out infinite;}.cta-float-img.img-5{width:140px;top:50%;left:2%;transform:rotate(3deg) translateY(-50%);animation:ctaFloat5 8s ease-in-out infinite;}@keyframes ctaFloat1{0%,100%{transform:rotate(-8deg) translate(0,0);}50%{transform:rotate(-5deg) translate(15px,-20px);}}@keyframes ctaFloat2{0%,100%{transform:rotate(6deg) translate(0,0);}50%{transform:rotate(8deg) translate(-10px,15px);}}@keyframes ctaFloat3{0%,100%{transform:rotate(4deg) translate(0,0);}50%{transform:rotate(2deg) translate(20px,-15px);}}@keyframes ctaFloat4{0%,100%{transform:rotate(-5deg) translate(0,0);}50%{transform:rotate(-8deg) translate(-15px,-20px);}}@keyframes ctaFloat5{0%,100%{transform:rotate(3deg) translateY(-50%) translate(0,0);}50%{transform:rotate(5deg) translateY(-50%) translate(10px,-10px);}}.cta-content{position:relative;z-index:2;max-width:700px;margin:0 auto;}.about-cta-section h2{font-family:'Georgia','Times New Roman',serif;font-size:42px;color:#fff;margin-bottom:20px;}body.palm-bay-theme .about-cta-section h2{color:#18181b;}.about-cta-section p{font-size:18px;color:#a1a1aa;margin-bottom:35px;}body.palm-bay-theme .about-cta-section p{color:#52525b;}.cta-buttons{display:flex;gap:20px;justify-content:center;flex-wrap:wrap;}/* Animation Classes */.animate-fade-in{animation:fadeIn 0.8s ease forwards;}.animate-fade-in-up{animation:fadeInUp 0.8s ease forwards;}.delay-1{animation-delay:0.2s;opacity:0;}.delay-2{animation-delay:0.4s;opacity:0;}@keyframes fadeIn{from{opacity:0;}to{opacity:1;}}@keyframes fadeInUp{from{opacity:0;transform:translateY(30px);}to{opacity:1;transform:translateY(0);}}/* Scroll Animations */.animate-on-scroll{opacity:0;transition:all 0.8s ease;}.animate-on-scroll.animated.fade-up{animation:fadeInUp 0.8s ease forwards;}.animate-on-scroll.animated.fade-left{animation:fadeInLeft 0.8s ease forwards;}.animate-on-scroll.animated.fade-right{animation:fadeInRight 0.8s ease forwards;}@keyframes fadeInLeft{from{opacity:0;transform:translateX(-50px);}to{opacity:1;transform:translateX(0);}}@keyframes fadeInRight{from{opacity:0;transform:translateX(50px);}to{opacity:1;transform:translateX(0);}}/* Responsive - Signature Dishes (Tablet) */@media (max-width:1024px){.signature-dishes-grid{grid-template-columns:repeat(2,1fr);}.hero-section{gap:40px;}.hero-float-img.img-1{width:180px;}.hero-float-img.img-2{width:150px;}.hero-float-img.img-3{width:200px;}.hero-float-img.img-4{width:160px;}.hero-float-img.img-5{width:140px;}}/* Responsive - About Page */@media (max-width:1024px){.about-intro-container{grid-template-columns:1fr;gap:60px;}.intro-images{height:450px;max-width:550px;margin:0 auto;}.intro-image.img-1{width:180px;height:180px;}.intro-image.img-2{width:200px;height:200px;}.intro-image.img-3{width:150px;height:150px;}.intro-image.img-4{width:160px;height:160px;}.intro-image.img-5{width:140px;height:140px;}.about-values-section .values-grid{grid-template-columns:repeat(2,1fr);}.locations-showcase{grid-template-columns:1fr;max-width:500px;margin:0 auto;}}@media (max-width:768px){.about-hero{padding:80px 30px 60px;min-height:50vh;}.about-hero h1{font-size:48px;}.about-hero p{font-size:18px;}.about-intro,.about-values-section,.about-locations-section,.about-cta-section{padding:60px 30px;}.intro-content h2,.clean-eats-banner h2,.values-header h2,.locations-header h2,.about-cta-section h2{font-size:32px;}.parallax-content blockquote{font-size:32px;padding:0 20px;}.parallax-break{min-height:350px;}.parallax-decor{display:none;}.intro-stats{flex-wrap:wrap;justify-content:center;}.intro-images{height:400px;}.intro-image.img-1{width:160px;height:160px;}.intro-image.img-2{width:180px;height:180px;margin-left:-90px;margin-top:-90px;}.intro-image.img-3{width:140px;height:140px;}.intro-image.img-4{width:150px;height:150px;}.intro-image.img-5{width:130px;height:130px;}.cta-floating-images{display:none;}}@media (max-width:480px){.about-hero h1{font-size:36px;}.intro-images{height:380px;}/* Show only 3 images on mobile for cleaner look */ .intro-image.img-4,.intro-image.img-5{display:none;}.intro-image.img-1{width:140px;height:140px;top:0;left:10px;}.intro-image.img-2{width:180px;height:180px;margin-left:-90px;margin-top:-90px;}.intro-image.img-3{width:130px;height:130px;bottom:20px;right:10px;}.about-values-section .values-grid{grid-template-columns:1fr;}.stat-number{font-size:32px;}.clean-eats-banner{padding:60px 20px;}.no-msg-badge{flex-direction:column;gap:8px;padding:20px;}}/* ============================================ CONTACT Contact Page Styles Lines 3639-4291 from original style.css ============================================ *//* =================================== PAGE HERO (Contact,etc.) =================================== */.page-hero{max-width:1440px;margin:0 auto;padding:60px 60px 40px;text-align:center;}.page-hero-content h1{font-family:'Georgia','Times New Roman',serif;font-size:64px;color:#BBA18C;margin-bottom:15px;font-weight:700;}body.palm-bay-theme .page-hero-content h1{color:#8B7355;}.page-hero-content p{font-size:18px;color:#a1a1aa;max-width:600px;margin:0 auto;}body.palm-bay-theme .page-hero-content p{color:#52525b;}/* =================================== CONTACT PAGE STYLES =================================== */.contact-content-section{background:#000;padding:60px 0 100px;}body.palm-bay-theme .contact-content-section{background:#fff;}.contact-content-container{max-width:1200px;margin:0 auto;padding:0 60px;}.contact-location-info{margin-bottom:80px;}.location-contact-card{display:none;}.location-contact-card.active{display:block;}.location-contact-card h2{font-size:48px;color:#BBA18C;margin-bottom:40px;text-align:center;}body.palm-bay-theme .location-contact-card h2{color:#8B7355;}.contact-details-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:30px;margin-bottom:40px;}.contact-detail{background:#18181b;padding:30px;border-radius:15px;display:flex;align-items:flex-start;gap:20px;}body.palm-bay-theme .contact-detail{background:#f9fafb;}.contact-icon{font-size:32px;}.contact-info h3{font-size:18px;color:#BBA18C;margin-bottom:10px;}body.palm-bay-theme .contact-info h3{color:#8B7355;}.contact-info p{font-size:16px;line-height:1.6;color:#a1a1aa;}body.palm-bay-theme .contact-info p{color:#52525b;}.contact-info a{color:#77ACD7;text-decoration:none;transition:color 0.3s ease;}.contact-info a:hover{color:#BBA18C;}body.palm-bay-theme .contact-info a:hover{color:#8B7355;}.contact-map{position:relative;border-radius:20px;overflow:hidden;margin-bottom:20px;}.contact-map iframe{border-radius:20px;}.btn-directions{display:inline-flex;align-items:center;justify-content:center;gap:10px;padding:14px 28px;background:#77ACD7;color:#fff;text-decoration:none;border-radius:50px;font-size:15px;font-weight:600;text-transform:uppercase;letter-spacing:0.5px;border:none;cursor:pointer;transition:all 0.3s ease;box-shadow:0 4px 15px rgba(119,172,215,0.3);margin-top:5px;}.btn-directions:hover{background:#5a8fb8;transform:translateY(-2px);box-shadow:0 6px 20px rgba(119,172,215,0.4);}body.palm-bay-theme .btn-directions{background:#77ACD7;}body.palm-bay-theme .btn-directions:hover{background:#5a8fb8;}/* Contact Form */.contact-form-section{background:#18181b;padding:60px;border-radius:20px;}body.palm-bay-theme .contact-form-section{background:#f9fafb;}.contact-form-section h2{font-size:42px;color:#BBA18C;margin-bottom:15px;}body.palm-bay-theme .contact-form-section h2{color:#8B7355;}.form-description{font-size:16px;color:#a1a1aa;margin-bottom:40px;}body.palm-bay-theme .form-description{color:#52525b;}.contact-form{display:flex;flex-direction:column;gap:25px;}.form-row{display:grid;grid-template-columns:repeat(2,1fr);gap:25px;}.form-group{display:flex;flex-direction:column;gap:8px;}.form-group label{font-size:14px;color:#BBA18C;font-weight:600;text-transform:uppercase;letter-spacing:0.5px;}body.palm-bay-theme .form-group label{color:#8B7355;}.form-group input,.form-group select,.form-group textarea{padding:15px 20px;background:#27272a;border:1px solid #3f3f46;border-radius:12px;color:#fff;font-size:16px;font-family:inherit;transition:all 0.3s ease;width:100%;-webkit-appearance:none;-moz-appearance:none;appearance:none;}.form-group select{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 20px center;background-size:12px;padding-right:45px;}body.palm-bay-theme .form-group input,body.palm-bay-theme .form-group select,body.palm-bay-theme .form-group textarea{background:#fff;border-color:#e5e7eb;color:#18181b;}body.palm-bay-theme .form-group select{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2318181b' d='M6 9L1 4h10z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 20px center;background-size:12px;}.form-group input:focus,.form-group select:focus,.form-group textarea:focus{outline:none;border-color:#77ACD7;box-shadow:0 0 0 3px rgba(119,172,215,0.1);}.form-group textarea{resize:vertical;min-height:120px;}.contact-form .btn-primary{width:fit-content;margin-top:10px;}.form-message{margin-top:20px;padding:15px 20px;border-radius:12px;display:none;}.form-loading{color:#77ACD7;font-weight:600;}.form-success{color:#22c55e;font-weight:600;}.form-error{color:#ef4444;font-weight:600;}/* Side-by-Side Location Boxes */.contact-intro{text-align:center;margin-bottom:30px;}.contact-intro p{font-size:17px;color:#a1a1aa;width:100%;margin:0 auto;line-height:1.6;}body.palm-bay-theme .contact-intro p{color:#52525b;}.contact-locations-row{display:grid;grid-template-columns:repeat(2,1fr);gap:30px;margin-bottom:60px;}.contact-location-box{background:#18181b;border-radius:20px;padding:30px;display:flex;flex-direction:column;}body.palm-bay-theme .contact-location-box{background:#f9fafb;}.contact-location-box h2{font-size:24px;color:#BBA18C;margin-bottom:20px;text-align:center;padding-bottom:15px;border-bottom:1px solid #3f3f46;}body.palm-bay-theme .contact-location-box h2{color:#8B7355;border-bottom-color:#e5e7eb;}.melbourne-box h2{color:#BBA18C;}.palm-bay-box h2{color:#8B7355;}.location-box-details{display:flex;flex-direction:column;gap:12px;flex:1;}.contact-location-box .contact-detail{background:#27272a;padding:12px 15px;border-radius:10px;display:flex;align-items:center;justify-content:space-between;}body.palm-bay-theme .contact-location-box .contact-detail{background:#fff;}.contact-location-box .contact-icon{display:none;}.contact-location-box .contact-info h3{font-size:14px;color:#BBA18C;margin:0;padding:0;text-transform:uppercase;letter-spacing:0.5px;display:flex;align-items:center;gap:8px;flex-shrink:0;white-space:nowrap;}.contact-location-box .contact-info h3::before{font-size:14px;line-height:1;}.contact-location-box .contact-detail:nth-child(1) .contact-info h3::before{content:'📍';}.contact-location-box .contact-detail:nth-child(2) .contact-info h3::before{content:'📞';}.contact-location-box .contact-detail:nth-child(3) .contact-info h3::before{content:'✉️';}.contact-location-box .contact-detail:nth-child(4) .contact-info h3::before{content:'🕒';}body.palm-bay-theme .contact-location-box .contact-info h3{color:#8B7355;}.contact-location-box .contact-info{display:flex;flex-direction:row;align-items:center;justify-content:space-between;width:100%;gap:15px;}.contact-location-box .contact-info p{font-size:14px;line-height:1.4;color:#a1a1aa;margin:0;padding:0;text-align:left;}body.palm-bay-theme .contact-location-box .contact-info p{color:#52525b;}.contact-location-box .contact-info p em{font-style:normal;color:#77ACD7;}.contact-location-box .contact-info a{color:#77ACD7;text-decoration:none;transition:color 0.3s ease;}.contact-location-box .contact-info a:hover{color:#5a8fb8;}/* Small Map in Location Box */.location-box-map{margin-top:15px;border-radius:12px;overflow:hidden;}.location-box-map iframe{border-radius:12px;display:block;}.btn-directions-small{display:block;text-align:center;padding:12px 20px;background:#77ACD7;color:#fff;text-decoration:none;border-radius:8px;font-size:14px;font-weight:600;text-transform:uppercase;letter-spacing:0.5px;margin-top:12px;transition:all 0.3s ease;}.btn-directions-small:hover{background:#5a8fb8;transform:translateY(-2px);}/* Responsive - About & Contact Pages */@media (max-width:768px){.page-hero{padding:60px 30px 50px;}.page-hero-content h1{font-size:42px;}.page-hero-content p{font-size:18px;}.about-content-container,.contact-content-container{padding:0 30px;}.about-content-section,.contact-content-section{padding:60px 0;}.about-story h2,.about-values h2,.about-locations h2,.about-cta h2,.location-contact-card h2,.contact-form-section h2{font-size:36px;}.values-grid,.locations-grid,.contact-details-grid{grid-template-columns:1fr;gap:20px;}.contact-locations-row{grid-template-columns:1fr;gap:25px;}.contact-location-box{padding:25px;}.contact-location-box h2{font-size:22px;margin-bottom:18px;padding-bottom:12px;}.form-row{grid-template-columns:1fr;gap:20px;}.contact-form-section{padding:40px 30px;}.cta-buttons{flex-direction:column;}.cta-buttons .btn-primary,.cta-buttons .btn-secondary{width:100%;text-align:center;}}@media (max-width:480px){.page-hero{padding:50px 20px 40px;}.page-hero-content h1{font-size:32px;}.page-hero-content p{font-size:16px;}.about-story h2,.about-values h2,.about-locations h2,.about-cta h2,.location-contact-card h2,.contact-form-section h2{font-size:28px;}.value-card,.location-card,.contact-detail{padding:25px;}.contact-location-box{padding:25px;}.contact-location-box .contact-detail{padding:10px 12px;}.contact-location-box .contact-info{flex-direction:column;align-items:flex-start;gap:4px;}.contact-location-box .contact-info p{text-align:left;}.contact-location-box h2{font-size:20px;margin-bottom:15px;padding-bottom:12px;}.location-box-map iframe{height:180px;}.about-cta{padding:40px 25px;}.contact-form-section{padding:30px 20px;}}/* =================================== Form Messages & Turnstile =================================== */.form-message{display:none;margin-bottom:25px;border-radius:12px;overflow:hidden;}.form-message > div{padding:20px 25px;display:flex;align-items:flex-start;gap:12px;font-size:15px;line-height:1.6;}.form-icon{flex-shrink:0;font-size:20px;}/* Success Message */.form-success{background:linear-gradient(135deg,#052e16 0%,#14532d 100%);border:1px solid #22c55e;color:#bbf7d0;}body.palm-bay-theme .form-success{background:linear-gradient(135deg,#dcfce7 0%,#bbf7d0 100%);border-color:#16a34a;color:#14532d;}/* Error Message */.form-error{background:linear-gradient(135deg,#450a0a 0%,#7f1d1d 100%);border:1px solid #ef4444;color:#fecaca;}body.palm-bay-theme .form-error{background:linear-gradient(135deg,#fef2f2 0%,#fecaca 100%);border-color:#dc2626;color:#7f1d1d;}/* Loading Message */.form-loading{background:linear-gradient(135deg,#172554 0%,#1e3a8a 100%);border:1px solid #3b82f6;color:#bfdbfe;}body.palm-bay-theme .form-loading{background:linear-gradient(135deg,#eff6ff 0%,#dbeafe 100%);border-color:#2563eb;color:#1e3a8a;}/* Turnstile Container */.turnstile-container{display:flex;justify-content:flex-start;margin:25px 0;}.cf-turnstile{margin:0;}/* Button Loading State */.btn-loading{display:inline-block;width:16px;height:16px;border:2px solid rgba(255,255,255,0.3);border-top-color:#fff;border-radius:50%;animation:btnSpin 0.8s linear infinite;margin-right:8px;vertical-align:middle;}@keyframes btnSpin{to{transform:rotate(360deg);}}/* Disabled Button */button:disabled,.btn-primary:disabled,.submit-button:disabled{opacity:0.6;cursor:not-allowed;}/* Form Note */.form-note{font-size:13px;color:#71717a;text-align:center;margin-top:20px;}body.palm-bay-theme .form-note{color:#6b7280;}/* =================================== Google Hours Display =================================== */.location-hours-display p{margin:0 0 5px;font-size:14px;color:#e4e4e7;line-height:1.5;}body.palm-bay-theme .location-hours-display p{color:#374151;}.location-hours-display .hours-sunday{margin-top:8px;}.location-hours-display .hours-special-notice{margin-top:10px;font-size:12px;color:#fbbf24;font-style:italic;}body.palm-bay-theme .location-hours-display .hours-special-notice{color:#d97706;}.google-hours .hours-row{justify-content:flex-start;}.google-hours .hours-day-full{font-size:13px;color:#a1a1aa;}body.palm-bay-theme .google-hours .hours-day-full{color:#6b7280;}.special-hours-notice{margin-top:12px;font-size:12px;color:#fbbf24;font-style:italic;}body.palm-bay-theme .special-hours-notice{color:#d97706;}/* Rolling 7-Day Hours Display */.rolling-hours .hours-row{display:flex;justify-content:space-between;align-items:flex-start;padding:8px 0;border-bottom:1px solid rgba(255,255,255,0.1);}body.palm-bay-theme .rolling-hours .hours-row{border-bottom-color:rgba(0,0,0,0.1);}.rolling-hours .hours-row:last-child{border-bottom:none;}.rolling-hours .hours-row.is-today{background:rgba(187,161,140,0.2);margin:0 -10px;padding:8px 10px;border-radius:6px;}body.palm-bay-theme .rolling-hours .hours-row.is-today{background:rgba(139,115,85,0.15);}.rolling-hours .hours-day{font-weight:500;color:#e4e4e7;font-size:14px;}body.palm-bay-theme .rolling-hours .hours-day{color:#374151;}.rolling-hours .hours-date{font-weight:400;color:#a1a1aa;font-size:13px;margin-left:5px;}body.palm-bay-theme .rolling-hours .hours-date{color:#6b7280;}.rolling-hours .hours-time{font-size:13px;color:#a1a1aa;text-align:right;display:flex;flex-direction:column;align-items:flex-end;gap:2px;}body.palm-bay-theme .rolling-hours .hours-time{color:#6b7280;}.rolling-hours .hours-row.is-today .hours-day,.rolling-hours .hours-row.is-today .hours-time{color:#BBA18C;font-weight:600;}body.palm-bay-theme .rolling-hours .hours-row.is-today .hours-day,body.palm-bay-theme .rolling-hours .hours-row.is-today .hours-time{color:#8B7355;}.rolling-hours .hours-row.is-today .hours-date{color:#BBA18C;}body.palm-bay-theme .rolling-hours .hours-row.is-today .hours-date{color:#8B7355;}/* ============================================ MODAL Order Modal Styles Lines 4292-4478 from original style.css ============================================ *//* Order Modal Styles */.order-modal{position:fixed !important;top:0 !important;left:0 !important;right:0 !important;bottom:0 !important;z-index:99999 !important;display:none !important;align-items:center !important;justify-content:center !important;padding:20px !important;}.order-modal.active{display:flex !important;}.order-modal-overlay{position:absolute !important;top:0 !important;left:0 !important;right:0 !important;bottom:0 !important;background:rgba(0,0,0,0.75) !important;backdrop-filter:blur(4px);z-index:99998 !important;}.order-modal-content{position:relative !important;background:#18181b;border-radius:20px;padding:40px;max-width:500px;width:100%;box-shadow:0 20px 60px rgba(0,0,0,0.5);z-index:99999 !important;text-align:center;border:1px solid #27272a;}body.palm-bay-theme .order-modal-content{background:#fff;border-color:#e5e7eb;}.order-modal-close{position:absolute;top:15px;right:15px;width:40px;height:40px;border-radius:50%;background:transparent;border:1px solid #27272a;color:#a1a1aa;font-size:28px;line-height:1;cursor:pointer;transition:all 0.3s ease;display:flex;align-items:center;justify-content:center;padding:0;}body.palm-bay-theme .order-modal-close{border-color:#e5e7eb;color:#6b7280;}.order-modal-close:hover{background:#27272a;color:#fff;}body.palm-bay-theme .order-modal-close:hover{background:#f3f4f6;color:#18181b;}.order-modal-content h2{font-family:'Georgia','Times New Roman',serif;font-size:32px;color:#BBA18C;margin-bottom:20px;font-weight:700;}body.palm-bay-theme .order-modal-content h2{color:#8B7355;}.order-modal-text{font-size:16px;color:#a1a1aa;line-height:1.6;margin-bottom:30px;}body.palm-bay-theme .order-modal-text{color:#52525b;}.order-modal-text strong{color:#fff;font-weight:600;}body.palm-bay-theme .order-modal-text strong{color:#18181b;}.order-modal-confirm{display:inline-flex;align-items:center;justify-content:center;padding:16px 32px;background:#77ACD7;color:#fff;border:none;border-radius:50px;font-size:16px;font-weight:600;text-transform:uppercase;letter-spacing:0.5px;cursor:pointer;transition:all 0.3s ease;box-shadow:0 4px 15px rgba(119,172,215,0.3);width:100%;max-width:350px;margin:0 auto;}.order-modal-confirm span{padding-left:0.3em;}.order-modal-confirm:hover{background:#5a8fb8;transform:translateY(-2px);box-shadow:0 6px 20px rgba(119,172,215,0.4);}.order-modal-switch{margin-top:20px;font-size:13px;color:#71717a;line-height:1.6;}body.palm-bay-theme .order-modal-switch{color:#6b7280;}.order-modal-switch a{color:#77ACD7;text-decoration:none;font-weight:600;transition:color 0.3s ease;}.order-modal-switch a:hover{color:#5a8fb8;text-decoration:underline;}@media (max-width:480px){.order-modal-content{padding:30px 20px;}.order-modal-content h2{font-size:24px;}.order-modal-text{font-size:14px;}.order-modal-confirm{font-size:14px;padding:14px 24px;}}/* ============================================ MENU Menu Page Styles Lines 4479-5191 from original style.css ============================================ *//* ============================================ MENU ITEM DETAIL PAGE ============================================ */.menu-item-page{max-width:1440px;margin:0 auto;padding:40px 60px 80px;}.menu-item-container{max-width:1200px;margin:0 auto;}.breadcrumb{display:flex;gap:10px;align-items:center;font-size:14px;color:#a1a1aa;margin-bottom:30px;}body.palm-bay-theme .breadcrumb{color:#6b7280;}.breadcrumb a{color:#77ACD7;text-decoration:none;transition:color 0.3s ease;}.breadcrumb a:hover{color:#5a8fb8;}.breadcrumb-separator{color:#71717a;}body.palm-bay-theme .breadcrumb-separator{color:#9ca3af;}.menu-item-page .menu-item-content{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:stretch;margin-top:30px;}.menu-item-page .menu-item-image{position:relative;border-radius:20px;overflow:hidden;height:100%;min-height:500px;box-shadow:0 20px 60px rgba(0,0,0,0.3);}body.palm-bay-theme .menu-item-page .menu-item-image{box-shadow:0 20px 60px rgba(0,0,0,0.1);}.menu-item-page .menu-item-image img{width:100%;height:100%;object-fit:cover;}.menu-item-page .menu-item-image .menu-item-image-placeholder{width:100%;height:100%;display:flex;align-items:center;justify-content:center;font-size:120px;background:#27272a;}body.palm-bay-theme .menu-item-page .menu-item-image .menu-item-image-placeholder{background:#e5e7eb;}.menu-item-details{display:flex;flex-direction:column;gap:25px;padding:20px 0;}.menu-item-title{font-family:'Georgia','Times New Roman',serif;font-size:48px;font-weight:700;color:#BBA18C;line-height:1.2;margin:0;}body.palm-bay-theme .menu-item-title{color:#8B7355;}.menu-item-price{font-size:36px;font-weight:700;color:#fff;}body.palm-bay-theme .menu-item-price{color:#18181b;}.menu-item-description{font-size:18px;line-height:1.8;color:#d4d4d8;margin:0;}body.palm-bay-theme .menu-item-description{color:#52525b;}.menu-item-actions{display:flex;gap:15px;margin-top:auto;}.btn-order-item{flex:1;padding:18px 32px;background:#77ACD7;color:#fff;border:none;border-radius:50px;font-size:18px;font-weight:700;text-transform:uppercase;letter-spacing:0.5px;cursor:pointer;transition:all 0.3s ease;box-shadow:0 4px 15px rgba(119,172,215,0.3);}.btn-order-item:hover{background:#5a8fb8;transform:translateY(-2px);box-shadow:0 6px 20px rgba(119,172,215,0.4);}.btn-back-menu{padding:18px 32px;background:transparent;color:#77ACD7;border:2px solid #77ACD7;border-radius:50px;font-size:16px;font-weight:600;text-transform:uppercase;letter-spacing:0.5px;text-decoration:none;cursor:pointer;transition:all 0.3s ease;display:inline-flex;align-items:center;justify-content:center;white-space:nowrap;}.btn-back-menu:hover{background:#77ACD7;color:#fff;}/* Recommended Items Section */.recommended-section{background:#09090b;padding:80px 0;margin-top:60px;}body.palm-bay-theme .recommended-section{background:#f9fafb;}.recommended-container{max-width:1440px;margin:0 auto;padding:0 60px;}.recommended-header{text-align:center;margin-bottom:50px;}.recommended-header h2{font-family:'Georgia','Times New Roman',serif;font-size:48px;font-weight:700;color:#BBA18C;margin-bottom:15px;}body.palm-bay-theme .recommended-header h2{color:#8B7355;}.recommended-header p{font-size:18px;color:#a1a1aa;}body.palm-bay-theme .recommended-header p{color:#6b7280;}.recommended-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:30px;}.recommended-card{background:#18181b;border:1px solid #27272a;border-radius:20px;overflow:hidden;transition:all 0.3s ease;cursor:pointer;text-decoration:none;display:block;}body.palm-bay-theme .recommended-card{background:#fff;border-color:#e5e7eb;}.recommended-card:hover{transform:translateY(-5px);box-shadow:0 20px 40px rgba(0,0,0,0.3);}body.palm-bay-theme .recommended-card:hover{box-shadow:0 20px 40px rgba(0,0,0,0.1);}.recommended-image{aspect-ratio:4/3;overflow:hidden;}.recommended-image img{width:100%;height:100%;object-fit:cover;transition:transform 0.3s ease;}.recommended-image-placeholder{width:100%;height:100%;display:flex;align-items:center;justify-content:center;font-size:72px;background:#27272a;}body.palm-bay-theme .recommended-image-placeholder{background:#e5e7eb;}.recommended-card:hover .recommended-image img{transform:scale(1.05);}.recommended-content{padding:25px;}.recommended-name{font-family:'Georgia','Times New Roman',serif;font-size:24px;font-weight:700;color:#BBA18C;margin-bottom:10px;}body.palm-bay-theme .recommended-name{color:#8B7355;}.recommended-description{font-size:14px;color:#a1a1aa;margin-bottom:15px;line-height:1.6;}body.palm-bay-theme .recommended-description{color:#6b7280;}.recommended-price{font-size:20px;font-weight:700;color:#77ACD7;}/* Responsive Design */@media (max-width:968px){.menu-item-page .menu-item-content{grid-template-columns:1fr;gap:40px;}.menu-item-page .menu-item-image{min-height:400px;}.recommended-grid{grid-template-columns:repeat(2,1fr);}}@media (max-width:768px){.menu-item-page{padding:30px 20px 60px;}.menu-item-title{font-size:36px;}.menu-item-price{font-size:28px;}.menu-item-page .menu-item-image{min-height:300px;}.recommended-container{padding:0 20px;}.recommended-section{padding:60px 0;}.recommended-header h2{font-size:36px;}.recommended-grid{grid-template-columns:1fr;}.menu-item-actions{flex-direction:column;}}/* ============================================ MENU PAGE STYLES ============================================ */.menu-hero{max-width:1440px;margin:0 auto;padding:60px 60px 40px;text-align:center;}.menu-hero h1{font-family:'Georgia','Times New Roman',serif;font-size:64px;font-weight:700;color:#BBA18C;margin-bottom:15px;}body.palm-bay-theme .menu-hero h1{color:#8B7355;}.menu-hero p{font-size:18px;color:#a1a1aa;max-width:600px;margin:0 auto;}body.palm-bay-theme .menu-hero p{color:#52525b;}.category-filters{max-width:1440px;margin:0 auto;padding:0 60px 40px;display:flex;justify-content:center;flex-wrap:wrap;gap:12px;}.filter-button{padding:10px 24px;border-radius:25px;border:1px solid #27272a;background:transparent;color:#a1a1aa;font-size:14px;font-weight:600;cursor:pointer;transition:all 0.3s ease;text-transform:uppercase;letter-spacing:0.5px;}body.palm-bay-theme .filter-button{border-color:#e5e7eb;color:#6b7280;}.filter-button:hover{border-color:#77ACD7;color:#77ACD7;}.filter-button.active{background:#77ACD7;border-color:#77ACD7;color:#fff;}.menu-container{max-width:1440px;margin:0 auto;padding:0 60px 60px;}.menu-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:20px;}.menu-item{background:#18181b;border-radius:20px;overflow:hidden;border:1px solid #27272a;transition:all 0.3s ease;display:flex;flex-direction:column;height:300px;max-height:300px;}body.palm-bay-theme .menu-item{background:#f9fafb;border-color:#e5e7eb;}.menu-item:hover{transform:translateY(-5px);box-shadow:0 10px 30px rgba(0,0,0,0.3);}body.palm-bay-theme .menu-item:hover{box-shadow:0 10px 30px rgba(0,0,0,0.1);}.menu-item .menu-item-image{width:calc(100% - 24px);height:160px;min-height:160px;max-height:160px;background:#27272a;position:relative;overflow:hidden;flex-shrink:0;margin:12px 12px 0 12px;border-radius:12px;}body.palm-bay-theme .menu-item .menu-item-image{background:#e5e7eb;}.menu-item .menu-item-image img{width:100%;height:100%;object-fit:cover;display:block;}.menu-item .menu-item-image-placeholder{width:100%;height:100%;display:flex;align-items:center;justify-content:center;font-size:48px;color:#52525b;}.menu-item .menu-item-content{padding:15px 15px 12px 15px;flex:1;min-height:0;display:flex;flex-direction:column;overflow:hidden;}.menu-item .item-header{margin-bottom:8px;}.menu-item h3{font-family:'Georgia','Times New Roman',serif;font-size:18px;font-weight:700;color:#BBA18C;margin:0;line-height:1.3;}body.palm-bay-theme .menu-item h3{color:#8B7355;}/* Hide prices and tags on menu cards */.menu-item .item-price,.menu-item .item-tags{display:none;}.menu-item p{font-size:13px;color:#a1a1aa;line-height:1.5;margin:0;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;}body.palm-bay-theme .menu-item p{color:#6b7280;}.menu-item.hidden{display:none;}/* Pagination Styles */.pagination-container{display:flex;justify-content:center;align-items:center;gap:12px;margin-top:50px;padding:20px 0;}.pagination-btn{width:44px;height:44px;border-radius:50%;border:1px solid #27272a;background:transparent;color:#a1a1aa;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:all 0.3s ease;}body.palm-bay-theme .pagination-btn{border-color:#e5e7eb;color:#6b7280;}.pagination-btn:hover:not(:disabled){border-color:#77ACD7;color:#77ACD7;background:rgba(119,172,215,0.1);}.pagination-btn:disabled{opacity:0.3;cursor:not-allowed;}.pagination-numbers{display:flex;gap:8px;align-items:center;}.pagination-number{width:40px;height:40px;border-radius:50%;border:1px solid #27272a;background:transparent;color:#a1a1aa;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:all 0.3s ease;font-size:14px;font-weight:600;}body.palm-bay-theme .pagination-number{border-color:#e5e7eb;color:#6b7280;}.pagination-number:hover{border-color:#77ACD7;color:#77ACD7;background:rgba(119,172,215,0.1);}.pagination-number.active{background:#77ACD7;border-color:#77ACD7;color:#fff;}.pagination-ellipsis{color:#a1a1aa;padding:0 8px;}body.palm-bay-theme .pagination-ellipsis{color:#6b7280;}/* Responsive Menu Styles */@media (max-width:1200px){.menu-grid{grid-template-columns:repeat(auto-fill,minmax(250px,1fr));}}@media (max-width:768px){.menu-hero{padding:60px 30px 40px;}.menu-hero h1{font-size:42px;}.category-filters{padding:0 20px 30px;gap:8px;}.filter-button{padding:8px 16px;font-size:12px;}.menu-container{padding:0 20px 60px;}.menu-grid{grid-template-columns:1fr;gap:20px;}}@media (max-width:480px){.menu-hero h1{font-size:32px;}.menu-hero p{font-size:16px;}.menu-item{height:360px;max-height:360px;}.menu-item-image{height:180px;min-height:180px;max-height:180px;}}/* ============================================= MENU ITEM DETAIL PAGE STYLES ============================================= *//* Breadcrumb Navigation */nav.breadcrumb{background:transparent;padding:1.5rem 0;}nav.breadcrumb .header-container{max-width:1440px;margin:0 auto;padding:0 60px;display:block !important;text-align:left;}.breadcrumb-list{display:inline-flex;align-items:center;gap:0.5rem;list-style:none;padding:0;margin:0;font-size:0.9rem;}/* Menu Item Detail - override header-container flex centering */.menu-item-detail .header-container{display:block !important;}/* Related Items - override header-container flex centering */.related-items .header-container{display:block !important;text-align:center;}.breadcrumb-list li{display:flex;align-items:center;}.breadcrumb-list li:not(:last-child)::after{content:'/';margin-left:0.5rem;color:var(--text-muted);}.breadcrumb-list a{color:var(--primary-color);text-decoration:none;transition:color 0.2s ease;}.breadcrumb-list a:hover{color:var(--primary-dark);text-decoration:underline;}.breadcrumb-list li[aria-current="page"]{color:var(--text-muted);}/* Menu Item Detail Layout */.menu-item-detail{padding:3rem 0;}.menu-item-grid{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:start;}/* Item Image */.menu-item-image-wrapper{position:relative;border-radius:1rem;overflow:hidden;box-shadow:0 10px 40px rgba(0,0,0,0.15);}.menu-item-full-image{width:100%;height:auto;display:block;aspect-ratio:4/3;object-fit:cover;}.spice-indicator{position:absolute;bottom:1rem;left:1rem;background:rgba(0,0,0,0.8);color:white;padding:0.5rem 1rem;border-radius:2rem;display:flex;align-items:center;gap:0.5rem;font-size:0.9rem;}.spice-label{font-weight:500;}.spice-flames{display:flex;gap:0.1rem;}.flame{opacity:0.3;font-size:1rem;}.flame.active{opacity:1;}/* Item Info */.menu-item-info{padding:1rem 0;}.item-categories{display:flex;flex-wrap:wrap;gap:0.5rem;margin-bottom:1rem;}.category-badge{background:var(--primary-color);color:white;padding:0.25rem 0.75rem;border-radius:2rem;font-size:0.8rem;font-weight:500;text-transform:uppercase;letter-spacing:0.5px;}.item-title{font-size:2.5rem;font-weight:700;color:var(--heading-color);margin:0 0 1.5rem 0;line-height:1.2;}/* Item Badges */.item-badges{display:flex;flex-wrap:wrap;gap:0.5rem;margin-bottom:1.5rem;}.badge{display:inline-flex;align-items:center;gap:0.25rem;padding:0.4rem 0.8rem;border-radius:0.5rem;font-size:0.85rem;font-weight:500;}.badge-popular{background:linear-gradient(135deg,#ffd700,#ffb700);color:#333;}.badge-chef{background:linear-gradient(135deg,#8b5cf6,#7c3aed);color:white;}.badge-bestseller{background:linear-gradient(135deg,#f97316,#ea580c);color:white;}.badge-vegetarian{background:linear-gradient(135deg,#22c55e,#16a34a);color:white;}.badge-vegan{background:linear-gradient(135deg,#10b981,#059669);color:white;}.badge-vegan-option{background:linear-gradient(135deg,#34d399,#10b981);color:white;}.badge-gf{background:linear-gradient(135deg,#06b6d4,#0891b2);color:white;}/* Description */.item-description{margin-bottom:2rem;}.item-description p{font-size:1.1rem;line-height:1.8;color:var(--text-color);}/* Order Actions */.order-actions{margin-bottom:2rem;}/* Larger order button for menu item page */.order-button-large{display:inline-flex;align-items:center;gap:0.75rem;padding:1rem 2rem;font-size:1.1rem;}.order-button-large svg{width:22px;height:22px;}.back-to-menu{display:inline-flex;align-items:center;gap:0.5rem;color:var(--text-muted);text-decoration:none;font-size:0.95rem;transition:color 0.2s ease;}.back-to-menu:hover{color:var(--primary-color);}/* Related Items */.related-items{padding:4rem 0;background:#09090b;}body.palm-bay-theme .related-items{background:#f9fafb;}.related-items h2{text-align:center;font-family:'Georgia','Times New Roman',serif;font-size:48px;font-weight:700;color:#BBA18C;margin-bottom:50px;}body.palm-bay-theme .related-items h2{color:#8B7355;}.related-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:30px;width:100%;}.related-item-card{background:#18181b;border:1px solid #27272a;border-radius:20px;overflow:hidden;text-decoration:none;color:inherit;transition:all 0.3s ease;display:block;}body.palm-bay-theme .related-item-card{background:#fff;border-color:#e5e7eb;}.related-item-card:hover{transform:translateY(-5px);box-shadow:0 20px 40px rgba(0,0,0,0.3);}body.palm-bay-theme .related-item-card:hover{box-shadow:0 20px 40px rgba(0,0,0,0.1);}.related-image{aspect-ratio:4/3;overflow:hidden;}.related-image img{width:100%;height:100%;object-fit:cover;transition:transform 0.3s ease;}.related-item-card:hover .related-image img{transform:scale(1.05);}.related-info{padding:20px;text-align:center;}.related-info h3{font-family:'Georgia','Times New Roman',serif;font-size:16px;font-weight:700;margin:0;color:#BBA18C;}body.palm-bay-theme .related-info h3{color:#8B7355;}/* Menu Item Link Wrapper (for menu.php grid) */.menu-item-link{text-decoration:none;color:inherit;display:block;}.menu-item-link:hover .menu-item{transform:translateY(-5px);box-shadow:0 15px 40px rgba(0,0,0,0.15);}.menu-item-link.hidden{display:none;}/* Responsive Styles */@media (max-width:1024px){.menu-item-grid{grid-template-columns:1fr;gap:2rem;}.related-grid{grid-template-columns:repeat(2,1fr);}}@media (max-width:768px){.item-title{font-size:1.75rem;}.item-price-large{font-size:1.5rem;}.order-actions{flex-direction:column;}.order-btn{justify-content:center;}.related-grid{grid-template-columns:repeat(2,1fr);gap:1rem;}.related-info h3{font-size:0.9rem;}}@media (max-width:480px){.breadcrumb-list{font-size:0.8rem;}.item-badges{gap:0.4rem;}.badge{font-size:0.75rem;padding:0.3rem 0.6rem;}.item-description p{font-size:1rem;}}