Changed around line 1
+ :root {
+ --primary-color: #ff6b6b;
+ --secondary-color: #4ecdc4;
+ --dark-color: #2c3e50;
+ --light-color: #f5f5f5;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', sans-serif;
+ line-height: 1.6;
+ color: var(--dark-color);
+ }
+
+ header {
+ background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/images/kitchen-bg.jpg');
+ background-size: cover;
+ background-position: center;
+ color: white;
+ padding: 2rem;
+ text-align: center;
+ min-height: 100vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ position: absolute;
+ top: 0;
+ left: 0;
+ right: 0;
+ padding: 1rem 2rem;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ color: white;
+ text-decoration: none;
+ }
+
+ .nav-links {
+ list-style: none;
+ display: flex;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ transition: color 0.3s ease;
+ }
+
+ .nav-links a:hover {
+ color: var(--primary-color);
+ }
+
+ .hero {
+ max-width: 800px;
+ margin: 0 auto;
+ }
+
+ .hero h1 {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ }
+
+ .hero p {
+ font-size: 1.2rem;
+ margin-bottom: 2rem;
+ }
+
+ .cta-btn {
+ background: var(--primary-color);
+ color: white;
+ padding: 1rem 2rem;
+ border: none;
+ border-radius: 5px;
+ text-decoration: none;
+ transition: background 0.3s ease;
+ }
+
+ .cta-btn:hover {
+ background: var(--secondary-color);
+ }
+
+ section {
+ padding: 4rem 2rem;
+ }
+
+ h2 {
+ text-align: center;
+ margin-bottom: 2rem;
+ font-size: 2rem;
+ }
+
+ .product-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ }
+
+ .product-card {
+ background: white;
+ border-radius: 10px;
+ overflow: hidden;
+ box-shadow: 0 2px 10px rgba(0,0,0,0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .product-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .product-card img {
+ width: 100%;
+ height: 200px;
+ object-fit: cover;
+ }
+
+ .product-card h3 {
+ padding: 1rem;
+ font-size: 1.2rem;
+ }
+
+ .product-card p {
+ padding: 0 1rem 1rem;
+ color: var(--primary-color);
+ font-weight: bold;
+ }
+
+ .add-to-cart {
+ display: block;
+ width: 100%;
+ padding: 1rem;
+ background: var(--primary-color);
+ color: white;
+ border: none;
+ cursor: pointer;
+ transition: background 0.3s ease;
+ }
+
+ .add-to-cart:hover {
+ background: var(--secondary-color);
+ }
+
+ .about-section {
+ background: var(--light-color);
+ }
+
+ .contact-section form {
+ max-width: 600px;
+ margin: 0 auto;
+ display: grid;
+ gap: 1rem;
+ }
+
+ .contact-section input,
+ .contact-section textarea {
+ padding: 1rem;
+ border: 1px solid #ddd;
+ border-radius: 5px;
+ }
+
+ .contact-section button {
+ background: var(--primary-color);
+ color: white;
+ padding: 1rem;
+ border: none;
+ border-radius: 5px;
+ cursor: pointer;
+ transition: background 0.3s ease;
+ }
+
+ .contact-section button:hover {
+ background: var(--secondary-color);
+ }
+
+ footer {
+ background: var(--dark-color);
+ color: white;
+ text-align: center;
+ padding: 2rem;
+ }
+
+ @media (max-width: 768px) {
+ .hero h1 {
+ font-size: 2rem;
+ }
+
+ .nav-links {
+ gap: 1rem;
+ }
+ }