/*
Theme Name: Made by Menke
Theme URI: https://madebymenke.de
Author: Made by Menke
Author URI: https://madebymenke.de
Description: Custom WordPress Theme für Made by Menke - 3D-Druck & Lasergravur
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: madebymenke
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    color: #3a3a3a;
    line-height: 1.6;
    transition: background-color 0.3s, color 0.3s;
}

body.dark-mode {
    background-color: #1a1a1a;
    color: #e0e0e0;
}

header {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 2rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

body.dark-mode header {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    width: 80px;
    height: 80px;
}

.brand-text h1 {
    font-size: 2rem;
    font-weight: 600;
    color: #2a2a2a;
}

body.dark-mode .brand-text h1 {
    color: #ffffff;
}

.brand-text p {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

body.dark-mode .brand-text p {
    color: #b0b0b0;
}

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

nav a {
    text-decoration: none;
    color: #3a3a3a;
    font-weight: 500;
}

body.dark-mode nav a {
    color: #ffffff;
}

.hero {
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    padding: 6rem 2rem;
    text-align: center;
}

body.dark-mode .hero {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

body.dark-mode .hero h2 {
    color: #ffffff;
}

.hero p {
    font-size: 1.3rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 2rem;
}

body.dark-mode .hero p {
    color: #b0b0b0;
}

.cta-button {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}

body.dark-mode .cta-button {
    background: #ffffff;
    color: #000000;
}

.services {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.service-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

body.dark-mode .service-card {
    background: #2a2a2a;
}

.theme-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #000;
    border: 3px solid #fff;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
}

body.dark-mode .theme-toggle {
    background: #fff;
    border-color: #000;
    color: #000;
}

footer {
    background: #2a2a2a;
    color: #fff;
    padding: 3rem 2rem 1.5rem;
}

body.dark-mode footer {
    background: #0a0a0a;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
    }
    
    nav ul {
        flex-direction: column;
        gap: 1rem;
    }
}
