/*
Theme Name: Taxi Knöpp
Theme URI: https://taxi-knoepp.de
Author: Weitzel IT GmbH -> Manuel Weitzel
Author URI: https://weitzelit.de
Description: Ein professionelles, voll responsives WordPress-Theme für das Taxiunternehmen Klaus Knöpp in Grävenwiesbach
Version: 1.7
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: taxi-knoepp.de
*/

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header Styles */
.site-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.taxi-sign-container {
    perspective: 1000px;
}

.taxi-sign {
    position: relative;
    width: 140px;
    height: 50px;
    background: linear-gradient(to bottom, 
        #fff966 0%,
        #ffeb3b 20%,
        #f9d71c 40%,
        #f4ce11 60%,
        #edc211 80%,
        #d4a50a 100%
    );
    border-radius: 12px 12px 8px 8px;
    box-shadow: 
        0 6px 12px rgba(0,0,0,0.3),
        inset 0 1px 2px rgba(255,255,255,0.5),
        inset 0 -3px 8px rgba(0,0,0,0.15);
    transform: rotateX(-5deg);
    border: 2px solid rgba(0,0,0,0.2);
}

.taxi-sign::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 15%;
    width: 30%;
    height: 10px;
    background: linear-gradient(to bottom, #333, #1a1a1a);
    border-radius: 3px 3px 0 0;
    box-shadow: 0 2px 3px rgba(0,0,0,0.3);
}

.taxi-sign::after {
    content: '';
    position: absolute;
    bottom: 100%;
    right: 15%;
    width: 30%;
    height: 10px;
    background: linear-gradient(to bottom, #333, #1a1a1a);
    border-radius: 3px 3px 0 0;
    box-shadow: 0 2px 3px rgba(0,0,0,0.3);
}

.taxi-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #000;
    padding: 6px 20px;
    border-radius: 2px;
}

.taxi-text span {
    font-size: 1.4rem;
    font-weight: 900;
    color: #ffeb3b;
    text-transform: uppercase;
    letter-spacing: 6px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.company-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
}

.company-subtitle {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
}

/* Navigation */
.main-navigation {
    display: flex;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s;
    padding: 5px 0;
}

.main-navigation a:hover {
    color: #ffd700;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: #ffd700;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 5px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '🚕';
    position: absolute;
    font-size: 200px;
    opacity: 0.1;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-section p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #333;
}

.cta-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-button {
    display: inline-block;
    background: #000;
    color: #ffd700;
    padding: 15px 20px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* Content Sections */
.content-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.content-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a1a1a;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid #ffd700;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-card p {
    color: #666;
    line-height: 1.8;
}

/* Info Section */
.info-section {
    background: #f8f9fa;
    padding: 60px 20px;
}

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

.info-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.info-content {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    line-height: 1.8;
}

.info-content p {
    margin-bottom: 20px;
    color: #555;
}

.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.highlight-item {
    padding: 20px;
    background: #f8f9fa;
    border-left: 4px solid #ffd700;
    border-radius: 5px;
}

.highlight-item strong {
    color: #1a1a1a;
    display: block;
    margin-bottom: 5px;
}

/* Contact Section */
.contact-section {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 20px;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffd700;
}

.contact-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #ccc;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.contact-card h3 {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.contact-card p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-card a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: #ffd700;
}

.phone-number {
    font-size: 1.3rem !important;
    font-weight: 700;
    color: #ffd700 !important;
    margin-top: 10px;
}

/* Footer */
.site-footer {
    background: #000;
    color: #ffd700;
    text-align: center;
    padding: 20px;
}

.site-info > p > a {
    color: #FFD700;
}

/* WordPress Specific */
.entry-content,
.entry-summary {
    margin: 2rem 0;
}

.wp-block-image {
    margin: 2rem 0;
}

.alignleft {
    float: left;
    margin-right: 1.5rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Legal Pages Styles */
.legal-page {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a1a1a;
    border-bottom: 3px solid #ffd700;
    padding-bottom: 15px;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #555;
}

.legal-page p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #666;
}

.legal-page ul, .legal-page ol {
    margin-bottom: 15px;
    margin-left: 30px;
    line-height: 1.8;
}

.legal-page a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
}

.legal-page a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .content-section h2,
    .info-container h2,
    .contact-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .main-navigation {
        width: 100%;
        display: none;
    }
    
    .main-navigation.toggled {
        display: block;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px 0;
    }
    
    .hero-section {
        padding: 60px 20px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
    
    .company-name {
        font-size: 2rem;
    }
    
    .taxi-sign {
        width: 120px;
        height: 45px;
    }
    
    .taxi-text span {
        font-size: 1.2rem;
        letter-spacing: 4px;
    }
    
    .content-section {
        margin: 60px auto;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .highlights {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .info-content {
        padding: 25px;
    }

    .cta-buttons {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 1.5rem;
    }
    
    .content-section h2,
    .info-container h2,
    .contact-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-button {
        font-size: 0.9rem;
        padding: 12px 15px;
    }
    
    .taxi-sign {
        width: 100px;
        height: 40px;
    }
    
    .taxi-text span {
        font-size: 1rem;
        letter-spacing: 3px;
        padding: 4px 12px;
    }
    
    .company-name {
        font-size: 1.5rem;
    }

    .legal-page {
        padding: 20px 15px;
    }

    .legal-page h1 {
        font-size: 1.8rem;
    }

    .legal-page h2 {
        font-size: 1.4rem;
    }
}

/* Zusätzliche Styles für aktualisierte Features */

/* CTA Button Verbesserungen */
.cta-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-button {
    display: inline-block;
    background: #000;
    color: #ffd700;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.cta-button.secondary {
    background: #fff;
    color: #000;
}

/* Legal Pages (Impressum & Datenschutz) */
.legal-page {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px 20px;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a1a1a;
    border-bottom: 3px solid #ffd700;
    padding-bottom: 15px;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

.legal-page h4 {
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.legal-page p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

.legal-page ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-page li {
    margin-bottom: 10px;
    line-height: 1.8;
    color: #555;
}

.legal-page a {
    color: #1a1a1a;
    text-decoration: underline;
    transition: color 0.3s;
}

.legal-page a:hover {
    color: #ffd700;
}

.legal-page strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Footer Updates */
.site-footer a {
    color: #ffd700;
    text-decoration: none;
    transition: opacity 0.3s;
}

.site-footer a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer-separator {
    margin: 0 10px;
    color: #ffd700;
}

/* Responsive für CTA Buttons */
@media (max-width: 768px) {
    .cta-buttons {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .cta-button {
        width: 100%;
        font-size: 1rem;
        padding: 12px 20px;
    }
    
    .legal-page {
        padding: 20px 15px;
    }
    
    .legal-page h1 {
        font-size: 2rem;
    }
    
    .legal-page h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-separator {
        display: block;
        margin: 5px 0;
    }
    
    .site-footer p {
        display: flex;
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .legal-page h1 {
        font-size: 1.8rem;
    }
}