/**
 * CSS für die Ambiente-Seite
 */

/* Ambiente-Header */
.ambiente-header {
    text-align: center;
    margin-bottom: 50px;
}

.ambiente-header h1 {
    font-size: 42px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.ambiente-header h1::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.ambiente-header p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    color: var(--silver-color);
    line-height: 1.8;
}

/* Ambiente-Intro */
.ambiente-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.ambiente-intro-text {
    padding: 30px;
    background-color: rgba(10, 10, 10, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.ambiente-intro-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.ambiente-intro-text h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

.ambiente-intro-text p {
    margin-bottom: 20px;
    color: var(--silver-color);
    line-height: 1.8;
}

.ambiente-intro-image {
    position: relative;
    height: 500px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.ambiente-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ambiente-intro-image:hover img {
    transform: scale(1.05);
}

.ambiente-intro-image::before {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    border: 1px solid var(--accent-color);
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
}

/* Ambiente-Features */
.ambiente-features {
    margin-bottom: 80px;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    background-color: rgba(10, 10, 10, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.2);
    border-color: var(--accent-color);
}

.feature-icon {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background-color: var(--accent-color);
    color: var(--dark-bg);
    transform: rotateY(180deg);
}

.feature-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--light-text);
}

.feature-item p {
    color: var(--silver-color);
    line-height: 1.7;
}

/* Ambiente-Galerie */
.ambiente-gallery {
    margin-bottom: 80px;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.gallery-tab {
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.gallery-tab:hover, .gallery-tab.active {
    background-color: var(--accent-color);
    color: var(--dark-bg);
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-image {
    height: 300px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-image:hover img {
    transform: scale(1.1);
}

.gallery-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-image:hover::before {
    opacity: 1;
}

.gallery-image-title {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: var(--light-text);
    font-size: 18px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    font-weight: 600;
}

.gallery-image:hover .gallery-image-title {
    opacity: 1;
    transform: translateY(0);
}

/* Ambiente-Services */
.ambiente-services {
    margin-bottom: 80px;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-item {
    background-color: rgba(10, 10, 10, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(212, 175, 55, 0.2);
    border-color: var(--accent-color);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 24px;
    color: var(--accent-color);
}

.service-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--light-text);
}

.service-content p {
    font-size: 14px;
    color: var(--silver-color);
    margin-bottom: 0;
}

/* Ambiente-Testimonials (falls vorhanden) */
.ambiente-testimonials {
    background-color: rgba(10, 10, 10, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 50px 30px;
    margin-bottom: 80px;
    text-align: center;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slide {
    padding: 0 20px;
}

.testimonial-content {
    font-size: 18px;
    font-style: italic;
    color: var(--silver-color);
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 60px;
    color: var(--accent-color);
    opacity: 0.3;
}

.testimonial-content::after {
    content: '"';
    position: absolute;
    bottom: -40px;
    right: -10px;
    font-size: 60px;
    color: var(--accent-color);
    opacity: 0.3;
}

.testimonial-author {
    margin-top: 30px;
    font-weight: 600;
    color: var(--light-text);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background-color: var(--accent-color);
}

/* VIP Teaser */
.vip-teaser {
    margin-bottom: 80px;
    background-color: rgba(10, 10, 10, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 40px;
    position: relative;
}

.vip-teaser::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: 20px;
    left: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    pointer-events: none;
}

.vip-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.vip-text {
    flex: 1;
    min-width: 300px;
}

.vip-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    height: 400px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--accent-color);
}

.vip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.vip-image:hover img {
    transform: scale(1.05);
}

.vip-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.vip-text h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

.vip-text p {
    margin-bottom: 20px;
    color: var(--silver-color);
}

.vip-text .btn {
    margin-top: 20px;
}

/* Location Section */
.location-section {
    margin-bottom: 80px;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.location-map {
    position: relative;
    height: 400px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.location-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-info {
    background-color: rgba(10, 10, 10, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 30px;
}

.location-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.location-info h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.location-info h4 {
    font-size: 18px;
    margin: 20px 0 10px;
    color: var(--accent-color);
}

.location-info p {
    margin-bottom: 15px;
    color: var(--silver-color);
}

.location-info strong {
    color: var(--light-text);
}

/* Responsive Design */
@media (max-width: 992px) {
    .ambiente-intro {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-list {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .location-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .feature-list {
        grid-template-columns: 1fr;
    }
    
    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .gallery-image {
        height: 250px;
    }
    
    .gallery-tabs {
        flex-wrap: wrap;
    }
    
    .gallery-tab {
        flex: 1 0 auto;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .vip-content {
        flex-direction: column;
    }
    
    .vip-image {
        order: 1;
        height: 300px;
    }
    
    .vip-text {
        order: 2;
    }
}

@media (max-width: 576px) {
    .gallery-container {
        grid-template-columns: 1fr;
    }
    
    .gallery-image {
        height: 300px;
    }
    
    .ambiente-intro-image {
        height: 300px;
    }
    
    .services-list {
        grid-template-columns: 1fr;
    }
}
/* Lightbox-Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    padding-bottom: 40px; /* Platz für Caption */
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    display: block;
    margin: 0 auto;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.8);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content img {
    transform: scale(1);
}

.close-lightbox {
    position: absolute;
    top: -40px;
    right: -10px;
    font-size: 30px;
    color: var(--light-text);
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-lightbox:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

/* Lightbox Navigation */
.lightbox-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
}

.lightbox-prev, .lightbox-next {
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--light-text);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-prev {
    margin-left: 20px;
}

.lightbox-next {
    margin-right: 20px;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background-color: var(--accent-color);
    color: var(--dark-bg);
}

/* Lightbox Thumbnails */
.lightbox-thumbnails {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 15px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    overflow-x: auto;
    white-space: nowrap;
}

.lightbox-thumb {
    width: 60px;
    height: 60px;
    border: 2px solid transparent;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.lightbox-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lightbox-thumb:hover {
    opacity: 0.9;
}

.lightbox-thumb.active {
    border-color: var(--accent-color);
    opacity: 1;
}

/* Lightbox Caption */
.lightbox-caption {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--light-text);
    padding: 10px 20px;
    text-align: center;
    font-size: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.lightbox.active .lightbox-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    .lightbox-thumb {
        width: 40px;
        height: 40px;
    }
    
    .lightbox-thumbnails {
        padding: 10px;
    }
    
    .lightbox-content {
        max-height: calc(90% - 60px);
    }
    
    .lightbox-prev, .lightbox-next {
        width: 40px;
        height: 40px;
    }
}
/**
 * Ergänzungen für die Ambiente-Seite
 */

/* Verbessertes Grid-Layout */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
    animation: fadeIn 0.8s ease forwards;
}

.gallery-image {
    height: 300px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.gallery-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.2);
    border-color: var(--accent-color);
}

.gallery-image a {
    display: block;
    height: 100%;
    width: 100%;
    text-decoration: none;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-image:hover img {
    transform: scale(1.1);
}

.gallery-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-image:hover::before {
    opacity: 1;
}

.gallery-image-title {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: var(--light-text);
    font-size: 18px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    font-weight: 600;
    z-index: 2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.gallery-image:hover .gallery-image-title {
    opacity: 1;
    transform: translateY(0);
}

/* Verbesserte Tab-Navigation */
.gallery-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.gallery-tab {
    padding: 12px 25px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 5px 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    text-decoration: none;
    font-weight: 500;
    text-align: center;
}

.gallery-tab:hover, .gallery-tab.active {
    background-color: var(--accent-color);
    color: var(--dark-bg);
    border-color: var(--accent-color);
}

/* Verbesserte Feature-Liste */
.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    background-color: rgba(10, 10, 10, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-item:nth-child(4) { animation-delay: 0.4s; }
.feature-item:nth-child(5) { animation-delay: 0.5s; }
.feature-item:nth-child(6) { animation-delay: 0.6s; }

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.2);
    border-color: var(--accent-color);
}

/* Verbesserte Header-Section */
.ambiente-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px 0;
    background-color: rgba(10, 10, 10, 0.5);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.ambiente-header h1 {
    font-size: 42px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    color: var(--accent-color);
}

.ambiente-header h1::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.ambiente-header p {
    font-size: 18px;
    color: var(--silver-color);
    max-width: 800px;
    margin: 0 auto;
}

/* Verbesserte Intro-Section */
.ambiente-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.ambiente-intro-text {
    padding: 30px;
    background-color: rgba(10, 10, 10, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.ambiente-intro-text p {
    margin-bottom: 15px;
    color: var(--silver-color);
    line-height: 1.8;
}

.ambiente-intro-text p:last-child {
    margin-bottom: 0;
}

.ambiente-intro-image {
    position: relative;
    height: 500px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.ambiente-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ambiente-intro-image:hover img {
    transform: scale(1.05);
}

.ambiente-intro-image::before {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    border: 1px solid var(--accent-color);
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
}

/* Section Headers */
.ambiente-gallery h2,
.ambiente-features h2,
.location-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.ambiente-gallery h2::after,
.ambiente-features h2::after,
.location-section h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

/* Spezielle Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design Verbesserungen */
@media (max-width: 992px) {
    .ambiente-intro {
        grid-template-columns: 1fr;
    }
    
    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .gallery-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .gallery-tab {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .feature-list {
        gap: 20px;
    }
    
    .feature-item {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .gallery-container {
        grid-template-columns: 1fr;
    }
    
    .gallery-image {
        height: 250px;
    }
    
    .gallery-tab {
        margin-bottom: 5px;
        width: 100%;
    }
    
    .ambiente-intro-image {
        height: 300px;
    }
}