* { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Poppins', sans-serif; color: #333; line-height: 1.6; } .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; } header { background: #3e2723; color: white; padding: 1rem 0; position: fixed; width: 100%; top: 0; z-index: 100; } header .container { display: flex; justify-content: space-between; align-items: center; } .logo { display: flex; flex-direction: column; align-items: flex-start; } .logo h1 { font-size: 1.8rem; font-weight: 700; } .logo span { font-size: 1rem; font-weight: 300; margin-top: -5px; } nav ul { display: flex; list-style: none; } nav ul li { margin-left: 25px; } nav ul li a { color: white; text-decoration: none; font-weight: 400; transition: color 0.3s; } nav ul li a:hover { color: #d7ccc8; } #home { background: linear-gradient(rgba(62, 39, 35, 0.8), rgba(62, 39, 35, 0.8)), url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80'); background-size: cover; background-position: center; height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; color: white; } .hero h2 { font-size: 3rem; margin-bottom: 1rem; font-weight: 700; } .hero p { font-size: 1.2rem; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; } button { background: #6f4e37; color: white; border: none; padding: 12px 30px; font-size: 1rem; cursor: pointer; border-radius: 5px; transition: background 0.3s; } button:hover { background: #8b6b4e; } section { padding: 80px 0; } h2 { text-align: center; font-size: 2.5rem; margin-bottom: 3rem; color: #3e2723; } .menu-items { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; } .menu-item { background: #f5f5f5; padding: 25px; border-radius: 8px; text-align: center; transition: transform 0.3s; } .menu-item:hover { transform: translateY(-10px); } .menu-item h3 { font-size: 1.5rem; margin-bottom: 10px; color: #3e2723; } .menu-item p { margin-bottom: 15px; } .menu-item span { font-weight: 600; font-size: 1.2rem; color: #6f4e37; } #about { background: #f9f9f9; } #about p { text-align: center; max-width: 800px; margin: 0 auto; font-size: 1.1rem; } .contact-info { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 40px; } .contact-info div { text-align: center; min-width: 250px; } .contact-info h3 { font-size: 1.5rem; margin-bottom: 15px; color: #3e2723; } footer { background: #3e2723; color: white; text-align: center; padding: 20px 0; } @media (max-width: 768px) { header .container { flex-direction: column; } nav ul { margin-top: 15px; } nav ul li { margin: 0 10px; } .hero h2 { font-size: 2rem; } section { padding: 60px 0; } h2 { font-size: 2rem; } } .notification { position: fixed; bottom: 20px; right: 20px; background: #6f4e37; color: white; padding: 15px 25px; border-radius: 5px; box-shadow: 0 5px 15px rgba(0,0,0,0.2); transform: translateY(100px); opacity: 0; transition: all 0.3s ease; } .notification.show { transform: translateY(0); opacity: 1; }