Changed around line 1
+ body {
+ font-family: 'Arial', sans-serif;
+ margin: 0;
+ padding: 0;
+ color: #333;
+ background-color: #f4f4f4;
+ }
+
+ header {
+ background: url('images/hero.jpg') no-repeat center center/cover;
+ color: #fff;
+ padding: 2rem;
+ text-align: center;
+ }
+
+ header .hero h1 {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ }
+
+ header .hero p {
+ font-size: 1.5rem;
+ margin-bottom: 2rem;
+ }
+
+ header .hero .btn {
+ background: #e67e22;
+ color: #fff;
+ padding: 0.75rem 1.5rem;
+ text-decoration: none;
+ border-radius: 5px;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 2rem;
+ background: rgba(0, 0, 0, 0.7);
+ }
+
+ nav .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ }
+
+ nav ul {
+ list-style: none;
+ display: flex;
+ }
+
+ nav ul li {
+ margin-left: 1rem;
+ }
+
+ nav ul li a {
+ color: #fff;
+ text-decoration: none;
+ }
+
+ section {
+ padding: 2rem;
+ text-align: center;
+ }
+
+ section h2 {
+ font-size: 2rem;
+ margin-bottom: 1rem;
+ }
+
+ .menu-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 1rem;
+ }
+
+ .menu-item {
+ background: #fff;
+ padding: 1rem;
+ border-radius: 5px;
+ box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
+ }
+
+ .menu-item img {
+ width: 100%;
+ border-radius: 5px;
+ }
+
+ .menu-item h3 {
+ font-size: 1.25rem;
+ margin: 0.5rem 0;
+ }
+
+ .menu-item p {
+ font-size: 0.9rem;
+ color: #666;
+ }
+
+ #contact form {
+ max-width: 400px;
+ margin: 0 auto;
+ display: flex;
+ flex-direction: column;
+ }
+
+ #contact form input, #contact form textarea {
+ margin-bottom: 1rem;
+ padding: 0.75rem;
+ border: 1px solid #ccc;
+ border-radius: 5px;
+ }
+
+ #contact form button {
+ background: #e67e22;
+ color: #fff;
+ padding: 0.75rem;
+ border: none;
+ border-radius: 5px;
+ cursor: pointer;
+ }
+
+ footer {
+ background: #333;
+ color: #fff;
+ text-align: center;
+ padding: 1rem;
+ }
+
+ @media (max-width: 768px) {
+ nav ul {
+ flex-direction: column;
+ align-items: center;
+ }
+
+ nav ul li {
+ margin: 0.5rem 0;
+ }
+
+ .menu-grid {
+ grid-template-columns: 1fr;
+ }
+ }