
/* ÜBER UNS (JETZT IN DEINEM ORANGE/ROT) */
.about-section {
    padding: 80px 0;
    background: radial-gradient(circle at center, rgba(243, 19, 19, 0.08) 0%, transparent 70%);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-logo-wrapper {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.about-logo-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid var(--primary-start);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    position: relative;
    box-shadow: 0 0 40px rgba(243, 19, 19, 0.2);
}

.about-logo-circle i {
    font-size: 3.5rem;
    color: var(--primary-end);
}

.slogan-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}
/* STANDORT */
.location-section {
    padding: 30px 0;
}

.location-frame {
    display: flex;
    min-height: 420px;

    border: 2px solid var(--primary-start);
    border-radius: 24px;
    overflow: hidden;

    background: var(--bg-color);
    box-shadow: 0 0 30px var(--accent-glow);
}

/* LINKE SEITE */
.location-info {
    width: 50%;
    display: flex;
    flex-direction: column;
    background: rgba(255,255,255,0.02);
}

.location-header {
    background: var(--primary-gradient);
    padding: 14px;
    text-align: center;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: white;
    text-transform: uppercase;
}

.location-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.location-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.location-content p {
    color: #cfcfcf;
    line-height: 1.6;
}

.location-details {
    margin-top: 30px;
}

.location-details p {
    margin-bottom: 12px;
    font-size: 1rem;
}

.location-details i {
    color: var(--primary-start);
    margin-right: 10px;
    width: 20px;
}

.location-btn {
    margin-top: 30px;
    width: fit-content;
}

/* RECHTE SEITE */
.location-map {
    width: 50%;
    min-height: 420px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}



.about-description {
    max-width: 850px;
    margin: 0 auto 60px;
    color: #ccc;
    font-size: 1.05rem;
}

.highlight-text {
    color: var(--primary-end);
    font-weight: 900;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.feature-card {
    background: var(--glass-bg);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: 0.3s;
}

.feature-card .icon-box {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.feature-card .icon-box i {
    color: white;
    font-size: 1.2rem;
}

.feature-card h4 {
    margin-bottom: 10px;
    font-weight: 800;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* GALERIE */
.gallery-section {
    background: rgba(255, 255, 255, 0.01);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    aspect-ratio: 16/10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
    opacity: 1;
    cursor: zoom-in;
}

.gallery-item:hover img {
    transform: scale(1.05);
    opacity: 1;
}

.gallery-label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.9);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: bold;
    border: 1px solid var(--primary-start);
}

.gallery-more-btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.gallery-more-btn:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px var(--accent-glow);
}

/* Schiebt den Fokus des Bildes nach oben */
.pos-top {
    object-position: 20% 25%;
    /* Zeigt das obere Ende des Bildes zuerst */
}

.pos-bottom {
    object-position: 20% 65%;
    /* Zeigt das obere Ende des Bildes zuerst */
}
/* Das Fullscreen Overlay Styling */
.fullscreen-overlay {
    display: none;
    /* Standardmäßig aus */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    /* Fast schwarzer Hintergrund */
    z-index: 9999;
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
    padding: 20px;
}

#full-image {
    max-width: 95%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    /* Animation beim Erscheinen */
    animation: zoomAnimation 0.3s ease-out;
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
}

@keyframes zoomAnimation {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* PAKETE */
.section-padding {
    padding: 20px 0;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.package-category-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.6rem;
    color: var(--primary-end);
    text-transform: uppercase;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.package-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 35px;
    border-radius: 28px;
    transition: 0.3s;
}

.package-card:hover {
    border-color: var(--primary-start);
    transform: translateY(-5px);
}

.package-card.highlight {
    border: 2px solid var(--primary-start);
    background: rgba(243, 19, 19, 0.05);
}

.price-tag {
    font-size: 2.8rem;
    font-weight: 900;
    margin: 15px 0;
}

.price-tag span {
    font-size: 1rem;
    color: var(--text-muted);
}

.pkg-list {
    list-style: none;
    margin-bottom: 25px;
}

.pkg-list li {
    color: #bbb;
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.pkg-list li i {
    color: var(--primary-start);
    margin-top: 4px;
}

.extras-section {
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
}

.extras-label {
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary-end);
}

.extra-item {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 8px;
    cursor: pointer;
    color: #ccc;
}

.extra-item input {
    margin-right: 10px;
    accent-color: var(--primary-start);
}

.btn-main {
    padding: 16px;
    border-radius: 15px;
    font-weight: 800;
    background: var(--primary-gradient);
    color: white;
    border: none;
    cursor: pointer;
    width: 100%;
    transition: 0.3s;
}

.btn-main:hover {
    opacity: 0.9;
    box-shadow: 0 10px 20px rgba(243, 19, 19, 0.2);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: white;
}

.btn-outline:hover {
    border-color: var(--primary-end);
}

/* TABLE */
.table-container {
    background: var(--glass-bg);
    border-radius: 24px;
    padding: 30px;
    overflow-x: auto;
    border: 1px solid var(--glass-border);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

th,
td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
}

th {
    color: var(--primary-end);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

td {
    color: #ccc;
}