Changed around line 1
+ :root {
+ --primary-color: #2c3e50;
+ --secondary-color: #3498db;
+ --accent-color: #e74c3c;
+ --background-color: #f9f9f9;
+ --text-color: #333;
+ --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ --transition: all 0.3s ease;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ background-color: var(--background-color);
+ }
+
+ /* Header & Navigation */
+ header {
+ background: var(--primary-color);
+ padding: 1rem;
+ position: fixed;
+ width: 100%;
+ top: 0;
+ z-index: 1000;
+ box-shadow: 0 2px 5px rgba(0,0,0,0.2);
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .logo {
+ color: white;
+ font-size: 1.5rem;
+ font-weight: bold;
+ text-transform: uppercase;
+ letter-spacing: 2px;
+ }
+
+ .nav-links {
+ display: flex;
+ list-style: none;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ padding: 0.5rem 1rem;
+ transition: var(--transition);
+ }
+
+ .nav-links a:hover {
+ color: var(--secondary-color);
+ }
+
+ /* Hero Section */
+ .hero {
+ height: 80vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ color: white;
+ text-align: center;
+ padding: 2rem;
+ margin-top: 60px;
+ }
+
+ .hero h1 {
+ font-size: 3rem;
+ margin-bottom: 2rem;
+ animation: fadeIn 1s ease-out;
+ }
+
+ .search-container {
+ width: 100%;
+ max-width: 600px;
+ display: flex;
+ gap: 1rem;
+ }
+
+ #search {
+ flex: 1;
+ padding: 1rem;
+ border: none;
+ border-radius: 25px;
+ font-size: 1.1rem;
+ }
+
+ .search-btn {
+ padding: 1rem 2rem;
+ background: var(--accent-color);
+ color: white;
+ border: none;
+ border-radius: 25px;
+ cursor: pointer;
+ transition: var(--transition);
+ }
+
+ .search-btn:hover {
+ background: #c0392b;
+ transform: translateY(-2px);
+ }
+
+ /* Repair Cards */
+ .repair-grid {
+ padding: 4rem 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .repair-grid h2 {
+ text-align: center;
+ margin-bottom: 2rem;
+ color: var(--primary-color);
+ }
+
+ .card-container {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ }
+
+ .repair-card {
+ background: white;
+ border-radius: 10px;
+ padding: 2rem;
+ box-shadow: var(--card-shadow);
+ transition: var(--transition);
+ cursor: pointer;
+ }
+
+ .repair-card:hover {
+ transform: translateY(-5px);
+ box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
+ }
+
+ .card-icon {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ text-align: center;
+ }
+
+ .repair-card h3 {
+ color: var(--primary-color);
+ margin-bottom: 1rem;
+ text-align: center;
+ }
+
+ .steps {
+ padding-left: 1.5rem;
+ margin-top: 1rem;
+ }
+
+ .steps.hidden {
+ display: none;
+ }
+
+ /* Tools Section */
+ .tools-needed {
+ background: var(--primary-color);
+ color: white;
+ padding: 4rem 2rem;
+ }
+
+ .tools-needed h2 {
+ text-align: center;
+ margin-bottom: 2rem;
+ }
+
+ .tools-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .tool-item {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ text-align: center;
+ padding: 1rem;
+ background: rgba(255, 255, 255, 0.1);
+ border-radius: 10px;
+ transition: var(--transition);
+ }
+
+ .tool-item:hover {
+ transform: translateY(-5px);
+ background: rgba(255, 255, 255, 0.2);
+ }
+
+ .tool-icon {
+ font-size: 2rem;
+ margin-bottom: 0.5rem;
+ }
+
+ /* Footer */
+ footer {
+ background: var(--primary-color);
+ color: white;
+ padding: 2rem;
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ }
+
+ .footer-section h4 {
+ margin-bottom: 1rem;
+ }
+
+ .footer-section ul {
+ list-style: none;
+ }
+
+ .footer-section a {
+ color: white;
+ text-decoration: none;
+ transition: var(--transition);
+ }
+
+ .footer-section a:hover {
+ color: var(--secondary-color);
+ }
+
+ /* Animations */
+ @keyframes fadeIn {
+ from {
+ opacity: 0;
+ transform: translateY(20px);
+ }
+ to {
+ opacity: 1;
+ transform: translateY(0);
+ }
+ }
+
+ /* Mobile Responsiveness */
+ .menu-toggle {
+ display: none;
+ flex-direction: column;
+ gap: 5px;
+ cursor: pointer;
+ }
+
+ .menu-toggle span {
+ width: 25px;
+ height: 3px;
+ background: white;
+ transition: var(--transition);
+ }
+
+ @media (max-width: 768px) {
+ .menu-toggle {
+ display: flex;
+ }
+
+ .nav-links {
+ display: none;
+ position: absolute;
+ top: 100%;
+ left: 0;
+ right: 0;
+ background: var(--primary-color);
+ flex-direction: column;
+ padding: 1rem;
+ }
+
+ .nav-links.active {
+ display: flex;
+ }
+
+ .hero h1 {
+ font-size: 2rem;
+ }
+
+ .search-container {
+ flex-direction: column;
+ }
+
+ .search-btn {
+ width: 100%;
+ }
+ }