* { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Poppins', sans-serif; line-height: 1.6; color: #333; background: #FFFAFA; scroll-behavior: smooth; } .container { max-width: 1100px; margin: 0 auto; padding: 0 20px; } img { max-width: 100%; height: auto; object-fit: cover; } .btn { padding: 12px 30px; border-radius: 8px; text-decoration: none; font-weight: 600; transition: 0.3s; display: inline-block; } .btn-primary { background: #C62828; color: #fff; } .btn-primary:hover { background: #a52121; } .btn-outline { border: 2px solid #C62828; color: #C62828; } .btn-outline:hover { background: #C62828; color: #fff; } .header { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.1); padding: 1rem 0; position: sticky; top: 0; z-index: 1000; } .header .container { display: flex; justify-content: space-between; align-items: center; } .logo { font-weight: 700; color: #C62828; font-size: 1.25rem; } .nav-links { display: flex; gap: 1.5rem; list-style: none; } .nav-links a { text-decoration: none; color: #333; font-weight: 500; font-size: 0.9rem; } .hero { display: flex; flex-direction: column; align-items: center; padding: 4rem 5% 2rem; text-align: center; } .hero-content h1 { color: #C62828; font-size: 2.2rem; line-height: 1.2; margin-bottom: 1rem; } .hero-content p { color: #555; margin-bottom: 2rem; font-size: 1rem; } .hero-btns { display: flex; gap: 1rem; justify-content: center; } .hero-img { margin-top: 2rem; width: 100%; } .hero-img img { border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); } @media (min-width: 768px) { .hero { flex-direction: row; text-align: left; gap: 4rem; padding: 6rem 10%; } .hero-content { flex: 1; } .hero-img { flex: 1; margin-top: 0; } .hero-btns { justify-content: flex-start; } } .menu-section { padding: 4rem 5%; background: #fff; } .menu-section h2 { text-align: center; color: #333; margin-bottom: 3rem; position: relative; } .menu-section h2::after { content: ''; display: block; width: 50px; height: 4px; background: #FBC02D; margin: 10px auto; } .menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; } .menu-card { background: #fff; border-radius: 15px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); border: 1px solid #eee; transition: transform 0.3s ease; } .menu-card img { width: 100%; height: 200px; object-fit: cover; } .card-body { padding: 1.5rem; } .card-body h3 { color: #C62828; margin-bottom: 0.5rem; } .cta-maps { padding: 4rem 5%; background: #C62828; color: #fff; text-align: center; } .action-links { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2rem; } .btn-call { background: #fff; color: #C62828; padding: 12px 25px; border-radius: 50px; text-decoration: none; font-weight: 600; } .btn-map { background: #FBC02D; color: #333; padding: 12px 25px; border-radius: 50px; text-decoration: none; font-weight: 600; } .footer { background: #222; color: #bbb; padding: 3rem 5% 1rem; } .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid #333; } .social-icons a { color: #FBC02D; text-decoration: none; margin-right: 15px; font-weight: bold; } .wa-float { position: fixed; bottom: 20px; right: 20px; background: #25d366; width: 60px; height: 60px; border-radius: 50px; display: flex; align-items: center; justify-content: center; box-shadow: 2px 2px 10px rgba(0,0,0,0.2); }