Changed around line 1
+ :root {
+ --primary: #2c3e50;
+ --secondary: #e67e22;
+ --light: #ecf0f1;
+ --dark: #2c3e50;
+ --accent: #e74c3c;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Montserrat', sans-serif;
+ line-height: 1.6;
+ color: var(--dark);
+ }
+
+ .hero {
+ background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('hero.jpg');
+ background-size: cover;
+ background-position: center;
+ min-height: 100vh;
+ display: flex;
+ flex-direction: column;
+ color: white;
+ }
+
+ nav {
+ padding: 1.5rem;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ background: rgba(0,0,0,0.3);
+ backdrop-filter: blur(10px);
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: 700;
+ color: var(--secondary);
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ transition: color 0.3s ease;
+ }
+
+ .cta-button {
+ background: var(--secondary);
+ padding: 0.5rem 1.5rem;
+ border-radius: 25px;
+ }
+
+ .hero-section {
+ text-align: center;
+ padding: 8rem 2rem;
+ }
+
+ .hero-section h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1rem;
+ animation: fadeIn 1s ease-out;
+ }
+
+ .cat-grid {
+ padding: 4rem 2rem;
+ background: var(--light);
+ }
+
+ .cat-cards {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ padding: 2rem 0;
+ }
+
+ .cat-card {
+ background: white;
+ border-radius: 15px;
+ overflow: hidden;
+ box-shadow: 0 5px 15px rgba(0,0,0,0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .cat-card:hover {
+ transform: translateY(-10px);
+ }
+
+ .cat-card img {
+ width: 100%;
+ height: 250px;
+ object-fit: cover;
+ }
+
+ .price {
+ color: var(--secondary);
+ font-weight: bold;
+ font-size: 1.2rem;
+ }
+
+ .contact-form {
+ max-width: 600px;
+ margin: 0 auto;
+ padding: 2rem;
+ }
+
+ .contact-form input,
+ .contact-form textarea {
+ width: 100%;
+ padding: 1rem;
+ margin-bottom: 1rem;
+ border: 2px solid var(--light);
+ border-radius: 8px;
+ }
+
+ .submit-button {
+ background: var(--secondary);
+ color: white;
+ border: none;
+ padding: 1rem 2rem;
+ border-radius: 25px;
+ cursor: pointer;
+ transition: background 0.3s ease;
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .hero-section h1 {
+ font-size: 2.5rem;
+ }
+ }
+
+ @keyframes fadeIn {
+ from {
+ opacity: 0;
+ transform: translateY(20px);
+ }
+ to {
+ opacity: 1;
+ transform: translateY(0);
+ }
+ }