/* Tent Overview Section Styles */
.tent-overview {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background-color: var(--primary-color);
}

.tent-overview-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/images/bg004.jpg') center/cover fixed no-repeat;
    opacity: 0.85;
    z-index: 0;
}

.tent-overview-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(26, 26, 30, 0.85), rgba(26, 26, 30, 0.95));
}

.tent-overview .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}



/* Scroll Indicator */
.scroll-indicator {
    display: none;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeIn 0.5s ease 1s forwards;
}

.scroll-hint {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 10px;
}

.scroll-icon {
    width: 30px;
    height: 30px;
    background-color: rgba(208, 197, 126, 0.15);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 1.5s infinite;
}

.scroll-hint span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(0);
    }
    40% {
        transform: translateX(5px);
    }
    60% {
        transform: translateX(3px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Tab Navigation - angepasst an solutions.css Design */
.tent-tabs-container {
    margin-bottom: 40px;
    position: relative;
}

.tent-tabs {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
    overflow-x: auto;
    scrollbar-width: none;
    justify-content: center;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 5px;
}

.tent-tabs::-webkit-scrollbar {
    display: none;
}

.tent-tab {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.2rem;
    font-weight: 700;
    padding: 15px 25px;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tent-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tent-tab.active {
    color: var(--accent-color);
}

.tent-tab.active::after {
    transform: scaleX(1);
}

.tent-tab:hover {
    color: var(--accent-color);
}

.tent-tab span {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 700;
    transition: color 0.3s ease;
}

.tent-tab.active span {
    color: var(--accent-color);
}

/* Neuer Stil für die SVG-Icons - beibehalten mit leichten Anpassungen */
.tent-tab .tab-icon {
    width: 24px;
    height: 24px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    object-fit: contain;
}

/* Anzeige von aktiven/inaktiven Icons */
.tent-tab .active-icon {
    display: none;
}

.tent-tab .inactive-icon {
    display: inline-block;
}

.tent-tab.active .active-icon {
    display: inline-block;
    opacity: 1;
}

.tent-tab.active .inactive-icon {
    display: none;
}

/* Tab Content */
.tent-content-container {
    position: relative;
}

.tent-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tent-content.active {
    display: block;
}

.tent-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Tent Cards */
.tent-card {
    background-color: rgba(40, 40, 48, 0.6);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    
    /* Entry Animation Properties */
    opacity: 0;
    transform: translateY(30px);
    animation: cardEntryAnimation 0.8s ease forwards;
}

/* Verzögerung für jede Karte in der Reihe */
.tent-grid .tent-card:nth-child(1) { animation-delay: 0.1s; }
.tent-grid .tent-card:nth-child(2) { animation-delay: 0.3s; }
.tent-grid .tent-card:nth-child(3) { animation-delay: 0.5s; }
.tent-grid .tent-card:nth-child(4) { animation-delay: 0.6s; }
.tent-grid .tent-card:nth-child(5) { animation-delay: 0.7s; }
.tent-grid .tent-card:nth-child(6) { animation-delay: 0.8s; }

/* Animation für die Karten-Einblendung */
@keyframes cardEntryAnimation {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.tent-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(208, 197, 126, 0.2);
}

.tent-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.tent-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.tent-card:hover .tent-image img {
    transform: scale(1.05);
}

.tent-tags {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 8px;
}

.tent-tag {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.premium-tag {
    background-color: var(--accent-color);
}

.tent-info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tent-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.tent-specs {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.tent-spec {
    display: flex;
    align-items: center;
    gap: 6px;
}

.tent-spec i {
    color: var(--accent-color);
    font-size: 0.85rem;
}

.tent-spec span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.tent-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.tent-footer {
    display: flex;
    justify-content: space-between;
    justify-items: center;
    align-items: center;
    align-content: center;
    margin-top: auto;
}

.tent-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
}

.price-duration {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.tent-button {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background-color: rgba(208, 197, 126, 0.1);
    padding: 8px 15px;
    border-radius: 30px;
}

.tent-button i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.tent-button:hover {
    background-color: rgba(208, 197, 126, 0.2);
}

.tent-button:hover i {
    transform: translateX(5px);
}

.tent-cta {
    text-align: center;
    margin-top: 20px;
}

/* Placeholder für nicht fertig implementierte Tabs */
.tent-placeholder {
    text-align: center;
    padding: 60px 20px;
    background-color: rgba(40, 40, 48, 0.4);
    border-radius: 12px;
    border: 1px dashed rgba(208, 197, 126, 0.3);
}

.tent-placeholder-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: rgba(208, 197, 126, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tent-placeholder-icon i {
    font-size: 2rem;
    color: var(--accent-color);
}

.tent-placeholder h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.tent-placeholder p {
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto 30px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .tent-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .tent-overview {
        padding: 80px 0;
    }
    
    .tent-tabs {
        width: 100%;
        justify-content: flex-start;
    }
    
    .tent-tab {
        padding: 12px 20px;
        font-size: 1rem;
        flex: 0 0 auto;
        scroll-snap-align: center;
    }
    
    .scroll-indicator {
        display: block;
    }
}

@media (max-width: 768px) {
    .tent-grid {
        grid-template-columns: 1fr;
    }
    
    .tent-overview {
        padding: 60px 0;
    }

    .tent-tab span {
        font-size: 0.95rem;
        font-weight: 600;
    }

    .tent-tab i {
        font-size: 1.2rem;
    }

    .tent-tab .tab-icon {
        width: 20px;
        height: 20px;
    }

    

}

@media (max-width: 576px) {
    .tent-overview {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .tent-tab {
        padding: 10px 18px;
        font-size: 1rem;
    }
    
    .tent-name {
        font-size: 1.2rem;
    }
    
    .tent-placeholder h3 {
        font-size: 1.5rem;
    }

    .tent-tab .tab-icon {
        width: 18px;
        height: 18px;
    }

    .price-amount {
        font-size: 1rem;
    }
    .price-duration {
        font-size: 0.85rem;
    }
    .tent-button {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    .tent-button i {
        font-size: 0.7rem;
    }
}