 /*
Theme Name: MoCar Theme111
Theme URI: http://example.com/mocar-theme
Author: Your Name
Author URI: http://example.com
Description: Ein WordPress-Theme für professionelle Autoaufbereitung in Moers.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: automotive, clean, responsive
*/
 
 
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background: #f8f9fa;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .logo-container img {
            height: 50px; /* Adjust as needed */
            margin-bottom: 5px;
        }

        .logo-container span {
            font-size: 0.8rem;
            color: #ff6b35;
        }

        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #ff6b35;
        }

        .nav-center {
            display: flex;
            align-items: center;
            gap: 3rem;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #ff6b35;
        }

        .social-media {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .social-icon:hover {
            transform: translateY(-3px);
            background: rgba(255, 107, 53, 0.2);
        }

        .social-icon.tiktok:hover {
            background: linear-gradient(45deg, #ff0050, #00f2ea);
        }

        .social-icon.instagram:hover {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        }

        .social-icon.facebook:hover {
            background: #1877f2;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23222" width="1200" height="600"/><circle cx="200" cy="150" r="80" fill="%23ff6b35" opacity="0.1"/><circle cx="1000" cy="450" r="120" fill="%23ff6b35" opacity="0.1"/><rect x="100" y="250" width="300" height="100" rx="50" fill="%23444"/><rect x="800" y="200" width="250" height="80" rx="40" fill="%23444"/></svg>');
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            background-size: cover;
            background-position: center;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            animation: fadeInUp 1s ease-out;
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        .cta-button {
            background: linear-gradient(45deg, #ff6b35, #ff8c42);
            color: white;
            padding: 1rem 2rem;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: inline-block;
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
        }

        /* Services Section */
        .services {
            padding: 5rem 0;
            background: white;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #333;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .service-image {
            width: 100%;
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border-radius: 15px 15px 0 0;
        }

        /* Photo-realistic service backgrounds */
        .autoaufbereitung {
            background: 
                radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 40%),
                linear-gradient(135deg, #2c5282 0%, #3182ce 50%, #4299e1 100%);
            position: relative;
        }

        .autoaufbereitung::before {
            content: '';
            position: absolute;
            width: 80%;
            height: 60%;
            background: 
                linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.1) 45%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0.1) 55%, transparent 60%),
                radial-gradient(ellipse 60% 40% at 50% 80%, #1a202c 0%, #2d3748 30%, #4a5568  60%, #718096 100%);
            border-radius: 50px 50px 20px 20px;
            top: 30%;
            left: 10%;
            box-shadow: 
                0 20px 40px rgba(0,0,0,0.3),
                inset 0 -5px 10px rgba(255,255,255,0.1);
        }

        .autoaufbereitung::after {
            content: '🧽';
            position: absolute;
            font-size: 2rem;
            top: 20%;
            right: 20%;
            animation: float 3s ease-in-out infinite;
        }

        .polieren {
            background: 
                radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.3) 0%, transparent 60%),
                radial-gradient(circle at 20% 80%, rgba(255, 140, 0, 0.2) 0%, transparent 50%),
                linear-gradient(135deg, #744210 0%, #d69e2e 50%, #f6e05e 100%);
            position: relative;
        }

        .polieren::before {
            content: '';
            position: absolute;
            width: 80%;
            height: 60%;
            background: 
                linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.8) 35%, rgba(255,255,255,0.9) 40%, rgba(255,255,255,0.8) 45%, transparent 50%),
                linear-gradient(-45deg, transparent 60%, rgba(255,255,255,0.6) 65%, transparent 70%),
                radial-gradient(ellipse 60% 40% at 50% 80%, #000000 0%, #1a1a1a 30%, #333333 60%, #666666 100%);
            border-radius: 50px 50px 20px 20px;
            top: 30%;
            left: 10%;
            box-shadow: 
                0 20px 40px rgba(0,0,0,0.4),
                inset 0 -10px 20px rgba(255,215,0,0.2);
        }

        .polieren::after {
            content: '✨';
            position: absolute;
            font-size: 1.5rem;
            top: 15%;
            left: 25%;
            animation: sparkle 2s ease-in-out infinite;
        }

        .glas-service {
            background: 
                radial-gradient(circle at 40% 60%, rgba(135, 206, 235, 0.4) 0%, transparent 50%),
                linear-gradient(135deg, #2b6cb0 0%, #3182ce 50%, #63b3ed 100%);
            position: relative;
        }

        .glas-service::before {
            content: '';
            position: absolute;
            width: 80%;
            height: 60%;
            background: 
                linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.8) 20%, rgba(135,206,235,0.6) 40%, rgba(255,255,255,0.8) 60%, transparent 80%),
                radial-gradient(ellipse 60% 40% at 50% 80%, #2d3748 0%, #4a5568 30%, #718096 60%, #a0aec0 100%);
            border-radius: 50px 50px 20px 20px;
            top: 30%;
            left: 10%;
            box-shadow: 
                0 20px 40px rgba(0,0,0,0.3),
                inset 0 0 30px rgba(135,206,235,0.3);
        }

        .glas-service::after {
            content: '🔧';
            position: absolute;
            font-size: 1.5rem;
            top: 25%;
            right: 25%;
            animation: wiggle 4s ease-in-out infinite;
        }

        .scheibentoenung {
            background: 
                radial-gradient(circle at 60% 40%, rgba(139, 69, 19, 0.3) 0%, transparent 50%),
                linear-gradient(135deg, #553c9a 0%, #805ad5 50%, #b794f6 100%);
            position: relative;
        }

        .scheibentoenung::before {
            content: '';
            position: absolute;
            width: 80%;
            height: 60%;
            background: 
                linear-gradient(90deg, 
                    rgba(45, 55, 72, 0.9) 0%, 
                    rgba(45, 55, 72, 0.7) 20%, 
                    rgba(45, 55, 72, 0.4) 40%, 
                    rgba(45, 55, 72, 0.7) 60%, 
                    rgba(45, 55, 72, 0.9) 80%),
                radial-gradient(ellipse 60% 40% at 50% 80%, #2d3748 0%, #4a5568 30%, #718096 60%, #a0aec0 100%);
            border-radius: 50px 50px 20px 20px;
            top: 30%;
            left: 10%;
            box-shadow: 
                0 20px 40px rgba(0,0,0,0.4),
                inset 0 0 50px rgba(0,0,0,0.5);
        }

        .scheibentoenung::after {
            content: '🎭';
            position: absolute;
            font-size: 1.5rem;
            top: 20%;
            left: 20%;
            animation: fade 3s ease-in-out infinite;
        }

        /* Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-10px) rotate(5deg); }
        }

        @keyframes sparkle {
            0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
            50% { opacity: 0.5; transform: scale(1.2) rotate(180deg); }
        }

        @keyframes wiggle {
            0%, 100% { transform: rotate(-5deg); }
            50% { transform: rotate(5deg); }
        }

        @keyframes fade {
            0%, 100% { opacity: 0.7; }
            50% { opacity: 1; }
        }

        .service-content {
            padding: 1.5rem;
        }

        .service-content h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .service-content p {
            color: #666;
            line-height: 1.6;
        }

        /* Contact Section */
        .contact {
            padding: 5rem 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .contact-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 2rem;
        }

        .contact-info {
            background: rgba(255,255,255,0.1);
            padding: 2rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }

        .contact-info h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .contact-info p {
            margin-bottom: 0.5rem;
        }

        .hours {
            background: rgba(255,255,255,0.1);
            padding: 2rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }

        .hours h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .hours-list {
            list-style: none;
        }

        .hours-list li {
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.2);
        }

        /* Footer */
        footer {
            background: #1a1a1a;
            color: white;
            text-align: center;
            padding: 2rem 0;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-center {
                flex-direction: column;
                gap: 1rem;
            }

            .nav-links {
                order: 2;
            }

            .social-media {
                order: 1;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-content p {
                font-size: 1.1rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .nav-center {
                
            }

            .logo {
                font-size: 1.5rem;
				margin-left: -20px;
            }

            .social-media {
                display: flex;
            }
			.social-icon {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }
			 .logo-container span {
            font-size: 0.5rem;
            
        }
			.nav-links a {
				font-size: 12px;
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        section {
            padding-top: 80px;
            margin-top: -80px;
        }

        .pt-5 {
            padding-top: 5rem;
        }

        /* General Button Style */
        .btn {
            display: inline-block;
            padding: 12px 28px;
            margin: 10px;
            font-size: 16px;
            font-weight: bold;
            text-align: center;
            text-decoration: none;
            cursor: pointer;
            border: 2px solid transparent;
            border-radius: 30px;
            transition: all 0.3s ease-in-out;
        }

        /* Primary Button */
        .btn-primary {
            background-color: #ff6b35;
            color: #ffffff;
            border-color: #ff6b35;
        }

        .btn-primary:hover {
            background-color: #ff8c42;
            border-color: #ff8c42;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
        }

        /* Secondary Button */
        .btn-secondary {
            background-color: transparent;
            color: #ff6b35;
            border-color: #ff6b35;
        }

        .btn-secondary:hover {
            background-color: #ff6b35;
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
        }

        /* Additional classes for spacing, etc. */
        .mt-3 {
            margin-top: 1rem;
        }

        .text-center {
            text-align: center;
        }

        h1, h2, h3 {
            font-family: 'Montserrat', sans-serif; /* A modern, clean font */
            font-weight: 700;
        }

        /* Animation on scroll */
        .reveal {
            position: relative;
            transform: translateY(150px);
            opacity: 0;
            transition: all 1s ease;
        }

        .reveal.active {
            transform: translateY(0px);
            opacity: 1;
        }

        .contact-form {
            background: #ffffff;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        .contact-form h3 {
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: .5rem;
            color: #555;
            font-weight: bold;
        }

        .form-control {
            width: 100%;
            padding: 1rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: #ff6b35;
            box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }

        .social-icon.tiktok { background-color: #010101; }
        .social-icon.instagram { background-color: #E1306C; }
        .social-icon.facebook { background-color: #1877F2; }

        @media (max-width: 992px) {
            .contact-content {
                grid-template-columns: 1fr;
            }
        }