﻿.entertainment-hero {
    position: relative;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 70px;
    background: url('/Images/Headerfotos/Entertainment/Boot.webp') center 62% / cover no-repeat;
    overflow: hidden;
}
body {
    margin: -120px 0 0 0;
    padding: 0;
    overflow-x: hidden;
    background: radial-gradient(circle at top, rgba(196, 156, 96, 0.22), transparent 34%), linear-gradient(180deg, #f2e8d2 0%, #e9d7b6 52%, #dcc39d 100%);
    color: var(--tk-ink);
    font-family: "Segoe UI", "Georgia", serif;
    line-height: 1.7;
}
.entertainment-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(49, 33, 19, 0.38), rgba(49, 33, 19, 0.58));
}

.entertainment-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    color: #fff7ea;
}

.entertainment-hero-label {
    display: inline-block;
    margin-bottom: 12px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 248, 236, 0.18);
    border: 1px solid rgba(255, 248, 236, 0.22);
    font-weight: 700;
    letter-spacing: 0.2px;
}

.entertainment-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.05;
}

.entertainment-hero p {
    margin: 0 auto;
    max-width: 720px;
    font-size: 1.08rem;
    line-height: 1.7;
}

.entertainment-page-wrapper {
    width: min(100%, 1100px);
    margin: 0 auto;
    padding: 30px 16px 50px;
}

.entertainment-intro-card,
.entertainment-card {
    background: linear-gradient(180deg, rgba(250, 242, 228, 0.98), rgba(241, 227, 199, 0.95));
    border: 1px solid rgba(201, 167, 116, 0.16);
    border-radius: 28px;
    box-shadow: 0 10px 36px rgba(62, 43, 22, 0.08);
}

.entertainment-intro-card {
    padding: 28px;
    margin-bottom: 24px;
}

    .entertainment-intro-card h2 {
        margin: 0 0 10px;
        color: #3f2c1d;
    }

    .entertainment-intro-card p {
        margin: 0;
        color: #5a4330;
        line-height: 1.7;
    }

.entertainment-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.entertainment-card {
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.entertainment-card-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(185, 130, 77, 0.95), rgba(146, 98, 55, 0.95));
    color: #fff9f1;
    font-size: 1.3rem;
    box-shadow: 0 10px 24px rgba(62, 43, 22, 0.14);
}

.entertainment-card h3 {
    margin: 0 0 12px;
    color: #3f2c1d;
    font-size: 1.3rem;
}

.entertainment-card p {
    margin: 0 0 20px;
    color: #5a4330;
    line-height: 1.7;
    flex-grow: 1;
}

.entertainment-card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(185, 130, 77, 0.96), rgba(146, 98, 55, 0.96));
    color: #fff9f1;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 14px 34px rgba(62, 43, 22, 0.14);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

    .entertainment-card-button:hover {
        color: #fff9f1;
        transform: translateY(-1px);
        box-shadow: 0 18px 44px rgba(62, 43, 22, 0.18);
    }

    .entertainment-card-button.is-disabled {
        background: rgba(255, 248, 236, 0.88);
        color: #7a5a3d;
        border: 1px solid rgba(127, 92, 52, 0.16);
        box-shadow: none;
        cursor: default;
        pointer-events: none;
    }

@media (max-width: 991px) {
    .entertainment-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .entertainment-hero {
        min-height: 220px;
        padding: 120px 16px 50px;
    }

    .entertainment-page-wrapper {
        padding: 20px 10px 40px;
    }

    .entertainment-intro-card,
    .entertainment-card {
        border-radius: 22px;
    }

    .entertainment-intro-card {
        padding: 20px 16px;
    }

    .entertainment-card {
        padding: 20px 16px;
    }
}
