.hero {
    height: 80dvh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(79, 78, 78, 0.177), rgba(28, 27, 27, 0.582)), url('../images/hero-bg.jpg') center/cover no-repeat;
    color: var(--clr-white);
    padding: 0 1.5rem;
    overflow: hidden;
}

.logo img {
    opacity: 0;
    animation: fadeIn 1.5s ease forwards 0.5s;
}


.hero-content {
    max-width: 1100px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--clr-white);
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 10px rgb(0, 0, 0);
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.hero p {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 5px rgb(0, 0, 0);
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.hero-buttons .btn-secondary {
    border-color: var(--clr-white);
    color: var(--clr-white);
}

.hero-buttons .btn-secondary:hover {
    background-color: var(--clr-white);
    color: var(--clr-dark);
}

/* Photo Gallery */
.photo-gallery {
    padding: 5rem 1.5rem;
    background-color: var(--clr-white);
}

.gallery-wrapper {
    background-color: rgba(212, 190, 228, 0.2);
    border-radius: 40px;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.gallery-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.gallery-container img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover img {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery-label {
    margin-top: 1.2rem;
    font-family: var(--ff-heading);
    font-size: 1.8rem;
    color: var(--clr-lilac-dark);
    font-weight: 600;
    transition: var(--transition);
}

.gallery-item:hover .gallery-label {
    color: var(--clr-blue);
    transform: translateY(-3px);
}

/* Hover Swap Effect */
.hover-swap {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    width: 100%;
}

.hover-swap img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: var(--transition);
}

.hover-swap .img-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.hover-swap:hover .img-default {
    opacity: 0;
}

.hover-swap:hover .img-hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Video Section */
.video-section {
    padding: 5rem 1.5rem;
    background-color: var(--clr-neutral);
    text-align: center;
}

.video-container {
    max-width: 1000px;
    margin: 0 auto;
}

.video-section h2 {
    font-family: var(--ff-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.8rem;
    color: var(--clr-dark-footer);
}

.video-section p {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsiveness adjustments */
@media (max-width: 768px) {
    .hero {
        height: auto;
        padding: 8rem 1.5rem 5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

/* Price Info Section */
.price-info {
    padding: 6rem 1.5rem;
    background: url('../pricebackground.png') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.price-info-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.price-header {
    text-align: center;
    margin-bottom: 2rem;
}

.price-header .badge {
    display: inline-block;
    background-color: var(--clr-white);
    padding: 0.6rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--clr-lilac-dark);
    letter-spacing: 1.1px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(142, 110, 153, 0.1);
}

.price-logo img {
    height: 8rem;
    margin: 0 auto 1rem;
    display: block;
}

.price-header .subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--clr-dark-footer);
    font-family: var(--ff-heading);
    font-weight: 500;
}

.price-cards {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
}

.price-card {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border-radius: 40px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    flex-direction: column;
}

.card-spielbeitrag {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.6) 100%);
}

.price-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.price-card .card-header h3 {
    font-size: 2rem;
    margin: 0;
    color: var(--clr-dark-footer);
}

.price-card .pill {
    background: rgba(255, 255, 255, 0.5);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--clr-lilac-deep);
    border: 1px solid rgba(113, 66, 136, 0.1);
}

.price-card .pill-icon {
    color: var(--clr-pumpkin);
}

.price-display {
    margin-bottom: 2.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
}

.price-display .amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--clr-dark-footer);
    line-height: 1;
}

.price-display .per {
    font-size: 1.4rem;
    color: var(--clr-text-muted);
    font-weight: 500;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    padding: 0;
}

.info-list li {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-list .bullet {
    width: 28px;
    height: 28px;
    background: radial-gradient(circle at 30% 30%, #FFB64D, #F5A623);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.2rem;
    box-shadow: 0 4px 10px rgba(245, 166, 35, 0.4);
}

.info-list .list-text strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 0.4rem;
    color: var(--clr-dark-footer);
    font-family: var(--ff-body);
}

.info-list .list-text p {
    font-size: 1rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
}

/* Card Opening Styles */
.card-opening {
    text-align: center;
}

.hours-display {
    margin-bottom: 3rem;
}

.days-time {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-dark-footer);
    margin-bottom: 0.8rem;
    display: flex;
    flex-direction: column;
}

.days-time span {
    font-size: 2.5rem;
    line-height: 1.1;
}

.service-note {
    color: var(--clr-text-muted);
    font-size: 1.2rem;
    font-weight: 500;
}

.tipp-box {
    background-color: rgba(255, 225, 180, 0.3);
    padding: 2rem;
    border-radius: 25px;
    margin-top: auto;
    margin-bottom: 2.5rem;
    position: relative;
    text-align: left;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.02);
}

.tipp-content {
    font-size: 1.1rem;
    color: var(--clr-dark-footer);
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

.tipp-content strong {
    color: #D68A00;
}


.card-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.btn-reservieren {
    padding: 1.1rem 2rem;
    border-radius: 50px;
    text-align: center;
    font-weight: 700;
    font-size: 1.05rem;
    transition: var(--transition);
}

.btn-reservieren {
    background-color: var(--clr-header-btn);
    color: var(--clr-white);
    box-shadow: 0 8px 20px rgba(113, 66, 136, 0.2);
}

.btn-reservieren:hover {
    background-color: var(--clr-lilac-deep);
    color: var(--clr-white);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(113, 66, 136, 0.3);
}

/* Responsiveness */
@media (max-width: 992px) {
    .price-cards {
        grid-template-columns: 1fr;
        max-width: 650px;
        margin: 0 auto;
    }

    .price-info {
        padding: 4rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .price-card {
        padding: 2rem;
    }

    .price-display .amount {
        font-size: 3rem;
    }

    .days-time span {
        font-size: 2.8rem;
    }
}


/* Price Card Stagger */
.price-card.reveal-up:nth-child(1) {
    transition-delay: 0.1s;
}

.price-card.reveal-up:nth-child(2) {
    transition-delay: 0.3s;
}