* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #050a0f;
    color: #eef4ff;
    line-height: 1.4;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* custom scroll */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0f1a22;
}
::-webkit-scrollbar-thumb {
    background: #ff7a2f;
    border-radius: 10px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(5, 10, 15, 0.92);
    backdrop-filter: blur(14px);
    z-index: 1000;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255, 122, 47, 0.3);
    transition: 0.2s;
}
.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.logo {
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff, #ff9a5e);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}
.logo span {
    color: #ff7a2f;
    background: none;
    -webkit-background-clip: unset;
}
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}
.nav-links a {
    color: #eef4ff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.2s;
    letter-spacing: 0.3px;
}
.nav-links a:hover, .nav-links a.active {
    color: #ff7a2f;
}
.menu-icon {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #ff7a2f;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 7rem 1.5rem 4rem;
    background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.7)), url('images/img01.jpg');
    background-size: cover;
    background-position: center 30%;
    background-attachment: fixed;
}
.hero-content {
    max-width: 880px;
    position: relative;
    z-index: 2;
}
.hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(to right, #ffffff, #ffb07c);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}
.hero p {
    font-size: 1.2rem;
    margin: 1.5rem 0;
    color: #f0f3fa;
}
.btn-group {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-primary {
    background: #ff7a2f;
    color: #0a0f14;
    padding: 0.9rem 2rem;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.25s;
    box-shadow: 0 4px 14px rgba(255, 122, 47, 0.3);
}
.btn-primary:hover {
    background: #ff944f;
    transform: scale(1.02);
}
.btn-outline {
    border: 2px solid #ff7a2f;
    background: transparent;
    padding: 0.85rem 2rem;
    border-radius: 40px;
    font-weight: 600;
    color: #ff7a2f;
    text-decoration: none;
    transition: 0.2s;
}
.btn-outline:hover {
    background: rgba(255, 122, 47, 0.15);
}

/* Sections */
.section {
    padding: 5rem 1.5rem;
    max-width: 1300px;
    margin: 0 auto;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}
.section-title span {
    color: #ff7a2f;
    border-bottom: 3px solid #ff7a2f;
    padding-bottom: 5px;
    display: inline-block;
}

/* GALLERY CARDS */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.service-card {
    background: #0f1920;
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #263a46;
    box-shadow: 0 15px 30px -12px rgba(0,0,0,0.5);
}
.service-card:hover {
    transform: translateY(-8px);
    border-color: #ff7a2f;
}
.card-img {
    height: 260px;
    background-size: cover;
    background-position: center;
    transition: 0.4s;
}
.service-card:hover .card-img {
    transform: scale(1.02);
}
.card-content {
    padding: 1.5rem;
}
.card-content h3 {
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
}
.card-content p {
    color: #b9cfdf;
    margin-bottom: 1rem;
    line-height: 1.4;
}
.tag {
    display: inline-block;
    background: #ff7a2f20;
    color: #ffaa77;
    border-radius: 30px;
    padding: 0.2rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Motorrad showcase */
.bike-showcase {
    background: #0b141a;
    border-radius: 40px;
    padding: 2rem;
    margin-top: 1.5rem;
}
.bike-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}
.bike-item {
    background: #1e2f3a;
    border-radius: 28px;
    padding: 1rem;
    text-align: center;
    width: 200px;
    transition: 0.2s;
}
.bike-item i {
    font-size: 3rem;
    color: #ff7a2f;
}

/* ARCHIV / BILDERGALERIE */
.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.8rem;
    margin-top: 2rem;
}
.archive-item {
    background: #0f1920;
    border-radius: 24px;
    overflow: hidden;
    transition: 0.25s ease;
    border: 1px solid #2a3f4c;
    cursor: pointer;
}
.archive-item:hover {
    transform: scale(1.02);
    border-color: #ff7a2f;
    box-shadow: 0 20px 30px -12px black;
}
.archive-img {
    height: 240px;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s;
}
.archive-item:hover .archive-img {
    transform: scale(1.05);
}
.archive-info {
    padding: 1rem 1.2rem 1.2rem;
}
.archive-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}
.archive-info p {
    font-size: 0.8rem;
    color: #b2cee5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.category-badge {
    background: #ff7a2f30;
    color: #ffb47b;
    border-radius: 40px;
    padding: 0.2rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.lightbox.active {
    display: flex;
}
.lightbox-img {
    max-width: 85%;
    max-height: 85%;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(255, 122, 47, 0.3);
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: 0.2s;
}
.lightbox-close:hover {
    color: #ff7a2f;
}

/* Kontakt + Social */
.contact-area {
    background: linear-gradient(145deg, #0c171f, #030a10);
    border-radius: 48px;
    padding: 3rem 2rem;
    text-align: center;
}
.social-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}
.social-icon {
    background: #1f2e38;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    color: #ffbc8c;
    transition: 0.2s;
    text-decoration: none;
}
.social-icon:hover {
    background: #ff7a2f;
    color: black;
    transform: scale(1.07);
}
.contact-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-form input, .contact-form textarea {
    background: #1c2c36;
    border: none;
    padding: 1rem;
    border-radius: 30px;
    color: white;
    font-family: inherit;
    border: 1px solid #2c4a5a;
    width: 100%;
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: #ff7a2f;
}
.contact-form button {
    background: #ff7a2f;
    border: none;
    font-weight: bold;
    cursor: pointer;
}

.footer {
    background: #02070c;
    text-align: center;
    padding: 2rem;
    border-top: 1px solid #ff7a2f30;
    font-size: 0.85rem;
}
.footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 800px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: #081017ee;
        backdrop-filter: blur(20px);
        position: absolute;
        top: 70px;
        right: 1rem;
        width: 220px;
        padding: 1rem;
        border-radius: 24px;
        gap: 1rem;
        text-align: center;
    }
    .nav-links.active {
        display: flex;
    }
    .menu-icon {
        display: block;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
}
@media (max-width: 500px) {
    .hero h1 {
        font-size: 2rem;
    }
    .btn-group {
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 480px) {
    .archive-grid {
        grid-template-columns: 1fr;
    }
}
/* ========================================
   PAKETE SECTION
   ======================================== */

.pakete-section {
    padding: 80px 20px;
    background: #0a1219;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.gradient-text {
    background: linear-gradient(135deg, #fff, #ff9a5e);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.section-subtitle {
    color: #a0b3c4;
    font-size: 1.1rem;
}

/* Tabs */
.pakete-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.tab-btn {
    background: rgba(255, 122, 47, 0.1);
    border: 1px solid rgba(255, 122, 47, 0.3);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: #eef4ff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: rgba(255, 122, 47, 0.2);
    border-color: #ff7a2f;
}

.tab-btn.active {
    background: #ff7a2f;
    border-color: #ff7a2f;
    color: #0a0f14;
}

/* Tab Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Paket Grid */
.pakete-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

/* Paket Card */
.paket-card {
    background: #0f1922;
    border-radius: 24px;
    padding: 1.8rem;
    border: 1px solid #263a46;
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.paket-card:hover {
    transform: translateY(-8px);
    border-color: #ff7a2f;
}

.paket-card.featured {
    border: 2px solid #ff7a2f;
    background: #111c26;
    transform: scale(1.02);
}

.paket-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.paket-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #ff7a2f;
    color: #0a0f14;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.paket-card.featured .paket-badge {
    background: #ff7a2f;
    color: #0a0f14;
}

.paket-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.paket-preis {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ff9a5e;
    margin: 0.5rem 0;
}

.paket-dauer {
    color: #7a93a8;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #263a46;
}

.paket-dauer i {
    margin-right: 0.5rem;
    color: #ff7a2f;
}

.paket-leistungen {
    list-style: none;
    margin: 1.5rem 0;
}

.paket-leistungen li {
    color: #cbdbe6;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.paket-leistungen li i {
    width: 20px;
    font-size: 1rem;
}

.paket-leistungen li .fa-check-circle {
    color: #4caf50;
}

.paket-leistungen li .fa-times-circle {
    color: #7a93a8;
}

.paket-leistungen li.disabled {
    opacity: 0.6;
}

.btn-paket {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    background: rgba(255, 122, 47, 0.15);
    border: 1px solid rgba(255, 122, 47, 0.3);
    color: #ffaa77;
    padding: 0.8rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-paket:hover {
    background: #ff7a2f;
    border-color: #ff7a2f;
    color: #0a0f14;
}

.paket-card.featured .btn-paket {
    background: #ff7a2f;
    border-color: #ff7a2f;
    color: #0a0f14;
}

.paket-card.featured .btn-paket:hover {
    background: transparent;
    color: #ffaa77;
}

/* Hinweis Box */
.pakete-hinweis {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(255, 122, 47, 0.05);
    border-radius: 16px;
    border: 1px dashed rgba(255, 122, 47, 0.3);
}

.pakete-hinweis i {
    font-size: 1.5rem;
    color: #ff7a2f;
    margin-right: 0.8rem;
}

.pakete-hinweis p {
    display: inline-block;
    color: #cbdbe6;
    font-size: 0.95rem;
}

.pakete-hinweis strong {
    color: #ffaa77;
}

/* Responsive */
@media (max-width: 768px) {
    .pakete-section {
        padding: 60px 16px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .pakete-tabs {
        gap: 0.5rem;
    }
    
    .tab-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .pakete-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .paket-card.featured {
        transform: scale(1);
    }
    
    .paket-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .pakete-hinweis i {
        display: block;
        margin-bottom: 0.5rem;
    }
}