/* Reset and Base Styles */ * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Poppins', sans-serif; line-height: 1.6; color: #333; background-color: #f9f5f0; } h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 700; } .container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 20px 0; } .section-title { text-align: center; font-size: 2.5rem; margin-bottom: 40px; color: #5d4037; position: relative; } .section-title::after { content: ''; display: block; width: 80px; height: 3px; background: #8b5a2b; margin: 15px auto; } /* Header & Navigation */ header { position: fixed; top: 0; width: 100%; z-index: 1000; background: rgba(255, 255, 255, 0.95); box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); } .navbar { display: flex; justify-content: space-between; align-items: center; padding: 20px 5%; max-width: 1400px; margin: 0 auto; } .logo h2 { color: #5d4037; font-family: 'Playfair Display', serif; } .nav-menu { display: flex; list-style: none; gap: 30px; } .nav-link { text-decoration: none; color: #5d4037; font-weight: 500; transition: color 0.3s; } .nav-link:hover { color: #8b5a2b; } .hamburger { display: none; flex-direction: column; cursor: pointer; } .bar { width: 25px; height: 3px; background-color: #5d4037; margin: 3px 0; transition: 0.3s; } /* Hero Section */ .hero { background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80'); background-size: cover; background-position: center; height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; margin-top: 70px; } .hero-content h1 { font-size: 3.5rem; margin-bottom: 20px; } .hero-content p { font-size: 1.5rem; margin-bottom: 30px; } .btn-primary { display: inline-block; background: #8b5a2b; color: white; padding: 15px 30px; border-radius: 30px; text-decoration: none; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s ease; border: 2px solid #8b5a2b; } .btn-primary:hover { background: transparent; color: #8b5a2b; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); } /* Menu Section */ .menu-section { padding: 100px 0 50px; } .menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .menu-category h3 { font-size: 1.8rem; margin-bottom: 20px; color: #5d4037; text-align: center; } .menu-items { list-style: none; } .menu-item { padding: 20px; margin-bottom: 15px; background: white; border-radius: 10px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); transition: transform 0.3s ease; } .menu-item:hover { transform: translateY(-5px); } .menu-item h4 { font-size: 1.3rem; margin-bottom: 10px; color: #5d4037; } .price { float: right; font-weight: 600; color: #8b5a2b; } .menu-item p { clear: both; padding-top: 10px; color: #666; } /* About Section */ .about-section { padding: 80px 0; background-color: #fff; } .about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; } .about-text p { margin-bottom: 20px; font-size: 1.1rem; color: #555; } .about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; } .stat h3 { font-size: 2rem; color: #8b5a2b; } .stat p { font-size: 0.9rem; color: #777; } .about-image img { width: 100%; border-radius: 10px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); } /* Contact Section */ .contact-section { padding: 80px 0; } .contact-content { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; } .info-item { display: flex; margin-bottom: 30px; align-items: flex-start; } .info-item i { font-size: 1.5rem; color: #8b5a2b; margin-right: 20px; min-width: 30px; } .info-item h4 { margin-bottom: 10px; color: #5d4037; } .info-item p { color: #666; } .contact-map { border-radius: 10px; overflow: hidden; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); } /* Footer */ footer { background: #5d4037; color: white; padding: 50px 0 20px; } .footer-content { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; } .footer-logo h2 { font-family: 'Playfair Display', serif; margin-bottom: 10px; } .footer-logo p { color: #ddd; } .footer-social a { color: white; font-size: 1.5rem; margin-left: 20px; transition: color 0.3s; } .footer-social a:hover { color: #d7ccc8; } .footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid #8b5a2b; color: #d7ccc8; } /* Responsive Design */ @media (max-width: 992px) { .hero-content h1 { font-size: 2.8rem; } .hero-content p { font-size: 1.2rem; } .about-content, .contact-content { grid-template-columns: 1fr; } .about-image { order: -1; } } @media (max-width: 768px) { .hamburger { display: flex; } .nav-menu { position: fixed; left: -100%; top: 70px; flex-direction: column; background-color: white; width: 100%; text-align: center; transition: 0.3s; box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05); padding: 20px 0; } .nav-menu.active { left: 0; } .hero { margin-top: 0; height: 80vh; } .hero-content h1 { font-size: 2.2rem; } .section-title { font-size: 2rem; } .about-stats { grid-template-columns: 1fr; gap: 15px; } } @media (max-width: 576px) { .navbar { padding: 15px 5%; } .hero-content { padding: 0 20px; } .hero-content h1 { font-size: 1.8rem; } .hero-content p { font-size: 1rem; } .btn-primary { padding: 12px 25px; } .menu-grid { grid-template-columns: 1fr; } .footer-content { flex-direction: column; text-align: center; } .footer-social a { margin: 0 10px; } }