:root {
    --primary-color: #ff7700; 
    --secondary-color: #2c3e50; 
    --accent-color: #3498db; 
    --light-color: #f8f9fa;
    --dark-color: #212529;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light-color);
    color: var(--dark-color);
    line-height: 1.6;
}

header {
    background-color: var(--dark-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
}

.mobile-menu-btn::before {
    content: 'Menü';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: white;
    font-weight: 500;
    text-transform: uppercase;
    white-space: nowrap;
    display: none;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    padding: 0;
}

.nav-links li {
    margin: 0 1.5rem;
}

.logo-center {
    margin: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

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

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    width: 42px;
    height: 42px;
    margin-right: 12px;
    background: linear-gradient(45deg, var(--primary-color), #ff9f40);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 119, 0, 0.3);
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 119, 0, 0.4);
}

.logo-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.logo-img:hover::after {
    left: 100%;
}

.logo-text {
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
    line-height: 1;
}

.logo-slogan {
    color: #a0a0a0;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    margin-top: 2px;
    font-weight: 400;
    text-transform: none;
    text-align: center;
    width: 100%;
}

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

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a.active {
    color: #ff7700 !important;
    font-weight: 600;
}

.hero {
    height: 80vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('images/bildbrücke.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    z-index: 10;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    z-index: 10;
}

.hero .btn {
    z-index: 10;
    padding: 0.05rem 0.15rem;
    font-size: 1.2rem;
    border-radius: 2px;
}

.btn {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 2px;
    font-weight: bold;
    transition: background-color 0.3s;
    font-size: 0.8rem;
}

.btn:hover {
    background-color: #e86a00;
}

.section {
    padding: 2rem 0;
}

.why-section {
    padding: 3rem 0;
    background-color: var(--light-color);
}

.section-title {
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--primary-color);
    font-size: 1.8rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
    font-weight: bold;
}

.features-section {
    padding: 2rem 0;
    background-color: #f9f9f9;
    margin-top: -6rem;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    height: 160px;
    display: flex;
    flex-direction: column;
}

/* Spezieller Style für Kontakt-Karten */
.section:has(.section-title h2:contains("Kontakt")) .card {
    height: 350px;
}

.section:has(.section-title h2:contains("Kontakt")) .card-content {
    padding: 2.5rem;
    margin-top: 1.5rem;
}

.section:has(.section-title h2:contains("Kontakt")) .card-content h3 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.card:hover {
    transform: translateY(-10px);
}

.card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 1rem 1rem 0.5rem 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
    margin-top: 0.5rem;
}

.card-content h3 {
    margin-bottom: 0.3rem;
    color: var(--secondary-color);
    font-size: 1.4rem;
    text-align: center;
}

.card-content p {
    margin-top: 0;
    line-height: 1.4;
}

.card-content ul {
    list-style-position: inside;
    margin-bottom: auto;
    padding: 0 1rem;
}

.card-content ul li {
    margin-bottom: 0.5rem;
    text-align: left;
}

.card-footer {
    margin-top: 1rem;
    text-align: center;
    font-style: italic;
    color: var(--primary-color);
}

.btn-rent {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
    margin-top: 1rem;
    text-align: center;
    width: 100%;
}

.btn-rent:hover {
    background-color: #e86a00;
}

.mystery-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    height: 450px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.mystery-card:hover {
    transform: translateY(-10px);
}

.mystery-icon {
    font-size: 10rem;
    color: var(--primary-color);
    margin: 1rem 0;
    opacity: 0.8;
    line-height: 1;
}

.mystery-text {
    font-size: 1.4rem;
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-container {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #ced4da;
    border-radius: 5px;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 3rem 0;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

.feature {
    text-align: center;
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(0);
    border-radius: 50%;
    transition: transform 0.5s ease;
}

.feature:hover .feature-icon {
    transform: translateY(-10px) rotate(360deg);
    box-shadow: 0 10px 20px rgba(255, 119, 0, 0.3);
}

.feature:hover .feature-icon::before {
    transform: scale(1.5);
}

.feature h3 {
    margin: 1rem 0;
    color: var(--secondary-color);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.feature:hover h3 {
    color: var(--primary-color);
}

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

.percentage {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

footer {
    background-color: var(--dark-color);
    color: white;
    padding: 3rem 0;
}

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

.footer-column h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.section-heading {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
}

.premium-vehicles {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.premium-vehicles div {
    flex: 1;
    min-width: 300px;
    max-width: 48%;
    text-align: center;
}

.premium-vehicles img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.premium-vehicles p {
    margin: 1rem 0;
    font-style: italic;
}

.premium-vehicles .btn {
    display: inline-block;
    margin: 0.5rem auto;
}

@media (max-width: 768px) {
    header {
        padding: 0.5rem 0;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: #212529;
        z-index: 100;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }
    
    body {
        padding-top: 60px;
    }
    
    .mobile-menu-btn {
        display: block;
        position: fixed;
        right: 15px;
        top: 25px;
        z-index: 200;
        font-size: 1.2rem;
        background-color: var(--primary-color);
        width: 38px;
        height: 38px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        border: 2px solid white;
    }
    
    .mobile-menu-btn::before {
        display: block;
        top: -25px;
        font-size: 0.8rem;
        letter-spacing: 0.5px;
        background-color: transparent;
        padding: 2px 6px;
        border-radius: 0;
        font-weight: bold;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    }
    
    .navbar {
        justify-content: center;
        padding: 0;
        position: relative;
        flex-direction: column;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(33, 37, 41, 0.98);
        padding: 80px 0 30px 0;
        z-index: 150;
        overflow-y: auto;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 0.8rem 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-links li a {
        font-size: 1.2rem;
        display: block;
        padding: 0.8rem 0;
    }
    
    .nav-links li a.btn {
        margin: 0.8rem auto;
        width: 80%;
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }
    
    .logo-center {
        margin: 0;
        position: static;
        width: 100%;
        text-align: center;
        padding: 0.5rem 0;
        z-index: 100;
    }
    
    .logo {
        display: inline-flex;
        margin: 0 auto;
        justify-content: center;
        align-items: center;
    }
    
    .logo-img {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-right: 8px;
    }
    
    .logo-text {
        font-size: 1.3rem;
        color: white;
    }
    
    .logo-slogan {
        font-size: 0.6rem;
        color: white;
    }
    
    .hero {
        height: 70vh;
        padding: 0 1rem;
        margin-top: 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        padding: 0 1rem;
    }
    
    .hero p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .section-title p {
        font-size: 1.2rem;
    }
    
    .why-section {
        padding: 2rem 0;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0;
    }

    .feature {
        padding: 2rem;
        max-width: 100%;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .feature-icon {
        font-size: 3rem;
    }

    .feature-icon i {
        font-size: 3rem;
    }

    .feature h3 {
        font-size: 1.5rem;
    }

    .feature p {
        font-size: 1rem;
    }

    .section-heading {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }
    
    .premium-vehicles {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        width: 100%;
        max-width: 90%;
        margin: 0 auto;
    }
    
    .premium-vehicles div {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }
    
    .premium-vehicles img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 8px;
    }
    
    .premium-vehicles p {
        margin: 1rem 0;
    }
    
    .premium-vehicles .btn {
        display: inline-block;
        margin: 0.5rem auto;
    }
    
    .card-container {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

feature.whatsapp {
    background-image: url('images/whatsapp-logo.png');
    background-size: 40px;
    background-repeat: no-repeat;
    background-position: top right;
    padding-right: 50px;
}

.contact-card {
    height: 350px !important;
}

.contact-card .card-content {
    padding: 2.5rem !important;
    margin-top: 1.5rem;
}

.contact-card .card-content h3 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

/* Cookie Banner Styles */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(33, 37, 41, 0.95);
    color: white;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.cookie-btn {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: var(--primary-color);
    color: white;
}

.cookie-btn.accept:hover {
    background-color: #e66c00;
}

.cookie-btn.decline {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-btn.decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .cookie-content {
        padding: 1rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

/* Social Media Styles */
.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-content: flex-start;
}

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

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.social-icon i {
    transition: transform 0.3s ease;
}

.social-icon:hover i {
    transform: scale(1.2);
}

.share-buttons p {
    margin-bottom: 0.8rem;
    color: #adb5bd;
}

.share-icons {
    display: flex;
    gap: 0.8rem;
}

.share-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.share-icon:hover {
    background-color: var(--primary-color);
}

@media (max-width: 768px) {
    .social-icons, .share-icons {
        justify-content: center;
    }
}

/* Hero Social Icons */
.hero-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
    z-index: 10;
}

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

.hero-social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .hero-social {
        margin-top: 1.2rem;
    }
    
    .hero-social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}