Changed around line 1
+ :root {
+ --primary-color: #e63946;
+ --secondary-color: #1d3557;
+ --text-color: #2b2d42;
+ --light-bg: #f1faee;
+ --white: #ffffff;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ }
+
+ .main-header {
+ position: fixed;
+ width: 100%;
+ background: rgba(255, 255, 255, 0.95);
+ backdrop-filter: blur(10px);
+ z-index: 1000;
+ box-shadow: 0 2px 10px rgba(0,0,0,0.1);
+ }
+
+ .nav-container {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 1rem;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ color: var(--primary-color);
+ }
+
+ .nav-links {
+ display: flex;
+ list-style: none;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ text-decoration: none;
+ color: var(--text-color);
+ font-weight: 500;
+ transition: color 0.3s ease;
+ }
+
+ .nav-links a:hover {
+ color: var(--primary-color);
+ }
+
+ .hero {
+ height: 100vh;
+ background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
+ url('images/hero-bg.jpg');
+ background-size: cover;
+ background-position: center;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ text-align: center;
+ color: var(--white);
+ }
+
+ .hero-content h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1rem;
+ animation: fadeInUp 1s ease;
+ }
+
+ .cta-button {
+ display: inline-block;
+ padding: 1rem 2rem;
+ background: var(--primary-color);
+ color: var(--white);
+ text-decoration: none;
+ border-radius: 5px;
+ transition: transform 0.3s ease;
+ }
+
+ .cta-button:hover {
+ transform: translateY(-3px);
+ }
+
+ .car-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ padding: 2rem;
+ }
+
+ .car-card {
+ background: var(--white);
+ border-radius: 10px;
+ overflow: hidden;
+ box-shadow: 0 4px 15px rgba(0,0,0,0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .car-card:hover {
+ transform: translateY(-10px);
+ }
+
+ .car-image {
+ height: 200px;
+ background-size: cover;
+ background-position: center;
+ }
+
+ .car-1 { background-image: url('images/car1.jpg'); }
+ .car-2 { background-image: url('images/car2.jpg'); }
+ .car-3 { background-image: url('images/car3.jpg'); }
+
+ section {
+ padding: 5rem 2rem;
+ }
+
+ h2 {
+ text-align: center;
+ margin-bottom: 3rem;
+ color: var(--secondary-color);
+ }
+
+ @media (max-width: 768px) {
+ .menu-toggle {
+ display: block;
+ cursor: pointer;
+ }
+
+ .nav-links {
+ display: none;
+ position: absolute;
+ top: 100%;
+ left: 0;
+ width: 100%;
+ background: var(--white);
+ padding: 1rem;
+ }
+
+ .nav-links.active {
+ display: flex;
+ flex-direction: column;
+ }
+
+ .hero-content h1 {
+ font-size: 2.5rem;
+ }
+ }
+
+ @keyframes fadeInUp {
+ from {
+ opacity: 0;
+ transform: translateY(20px);
+ }
+ to {
+ opacity: 1;
+ transform: translateY(0);
+ }
+ }