Changed around line 1
+ :root {
+ --primary-color: #ff4757;
+ --secondary-color: #2f3542;
+ --accent-color: #ffa502;
+ --text-color: #2f3542;
+ --bg-color: #f1f2f6;
+ --white: #ffffff;
+ --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: system-ui, -apple-system, sans-serif;
+ color: var(--text-color);
+ background: var(--bg-color);
+ line-height: 1.6;
+ min-height: 100vh;
+ display: flex;
+ flex-direction: column;
+ }
+
+ .header {
+ background: var(--white);
+ box-shadow: var(--shadow);
+ padding: 1rem;
+ }
+
+ .navbar {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ color: var(--primary-color);
+ text-decoration: none;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 1rem;
+ }
+
+ .nav-link {
+ color: var(--text-color);
+ text-decoration: none;
+ padding: 0.5rem 1rem;
+ border-radius: 4px;
+ transition: all 0.3s ease;
+ }
+
+ .nav-link:hover {
+ background: var(--primary-color);
+ color: var(--white);
+ }
+
+ .hero {
+ text-align: center;
+ padding: 4rem 1rem;
+ background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('/images/hero.jpg');
+ background-size: cover;
+ background-position: center;
+ }
+
+ .hero h1 {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ color: var(--secondary-color);
+ }
+
+ .search-form {
+ max-width: 600px;
+ margin: 2rem auto;
+ display: flex;
+ gap: 0.5rem;
+ }
+
+ .search-form input {
+ flex: 1;
+ padding: 0.75rem;
+ border: 2px solid var(--primary-color);
+ border-radius: 4px;
+ font-size: 1rem;
+ }
+
+ .search-form button {
+ background: var(--primary-color);
+ color: var(--white);
+ border: none;
+ padding: 0.75rem 2rem;
+ border-radius: 4px;
+ cursor: pointer;
+ transition: background 0.3s ease;
+ }
+
+ .search-form button:hover {
+ background: var(--accent-color);
+ }
+
+ .restaurants {
+ padding: 2rem 1rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .restaurant-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .restaurant-card {
+ background: var(--white);
+ border-radius: 8px;
+ overflow: hidden;
+ box-shadow: var(--shadow);
+ transition: transform 0.3s ease;
+ }
+
+ .restaurant-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .restaurant-card img {
+ width: 100%;
+ height: 200px;
+ object-fit: cover;
+ }
+
+ .restaurant-card h3 {
+ padding: 1rem;
+ font-size: 1.25rem;
+ }
+
+ .restaurant-card p {
+ padding: 0 1rem 1rem;
+ color: #666;
+ }
+
+ .footer {
+ background: var(--secondary-color);
+ color: var(--white);
+ padding: 2rem 1rem;
+ margin-top: auto;
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ text-align: center;
+ }
+
+ .footer-nav {
+ margin-top: 1rem;
+ display: flex;
+ justify-content: center;
+ gap: 1rem;
+ }
+
+ .footer-nav a {
+ color: var(--white);
+ text-decoration: none;
+ }
+
+ .notification-bell {
+ position: fixed;
+ bottom: 2rem;
+ right: 2rem;
+ }
+
+ .notification-bell button {
+ background: var(--primary-color);
+ color: var(--white);
+ border: none;
+ padding: 1rem;
+ border-radius: 50%;
+ width: 56px;
+ height: 56px;
+ cursor: pointer;
+ box-shadow: var(--shadow);
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ position: relative;
+ }
+
+ .notification-count {
+ position: absolute;
+ top: -5px;
+ right: -5px;
+ background: var(--accent-color);
+ color: var(--white);
+ font-size: 0.75rem;
+ width: 20px;
+ height: 20px;
+ border-radius: 50%;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ }
+
+ @media (max-width: 768px) {
+ .hero h1 {
+ font-size: 2rem;
+ }
+
+ .restaurant-grid {
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ }
+ }