/* Köfteci Şef Musti Page 1 */

.ksm-page1-wrapper {
    width: 100vw;
    min-height: 100vh;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    position: relative;
    overflow: hidden;
    background: rgb(8, 8, 8);
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}

.ksm-page1-wrapper * {
    box-sizing: border-box;
}

.ksm-page1-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255, 108, 0, 0.22), transparent 34%),
        radial-gradient(circle at bottom right, rgba(255, 108, 0, 0.16), transparent 32%),
        linear-gradient(135deg, rgb(5, 5, 5), rgb(18, 18, 18) 55%, rgb(0, 0, 0));
    z-index: 1;
}

.ksm-page1-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 46px 46px;
    opacity: 0.18;
}

.ksm-page1-container {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 100vh;
    padding: 34px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ksm-page1-card {
    width: 100%;
    max-width: 620px;
    min-height: calc(100vh - 68px);
    background: rgba(10, 10, 10, 0.88);
    border: 1px solid rgba(255, 108, 0, 0.45);
    border-radius: 30px;
    padding: 34px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(16px);
}

.ksm-page1-top {
    text-align: center;
}

.ksm-page1-label {
    display: inline-flex;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255, 108, 0, 0.14);
    border: 1px solid rgba(255, 108, 0, 0.55);
    color: rgb(255, 132, 35);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.ksm-page1-top h1 {
    margin: 18px 0 10px;
    font-size: clamp(32px, 6vw, 54px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -1.5px;
    color: #ffffff;
}

.ksm-page1-date {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.66);
}

.ksm-page1-date strong {
    color: rgb(255, 132, 35);
}

.ksm-page1-divider {
    width: 100%;
    height: 1px;
    margin: 28px 0;
    background: linear-gradient(90deg, transparent, rgba(255, 108, 0, 0.85), transparent);
}

.ksm-page1-info {
    text-align: center;
}

.ksm-page1-info h2 {
    margin: 0 0 16px;
    color: rgb(255, 132, 35);
    font-size: 26px;
    font-weight: 800;
}

.ksm-page1-info p {
    margin: 9px 0;
    font-size: 17px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.88);
}

.ksm-page1-location {
    margin-top: 20px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 108, 0, 0.10);
    border: 1px solid rgba(255, 108, 0, 0.35);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ksm-page1-location span {
    font-size: 15px;
    color: rgba(255,255,255,0.76);
}

.ksm-page1-location a {
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
    text-decoration: none;
}

.ksm-page1-buttons {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.ksm-page1-btn {
    width: 100%;
    min-height: 56px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px 18px;
    font-size: 16px;
    font-weight: 800;
    transition: all 0.25s ease;
}

.ksm-page1-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 108, 0, 0.8);
    background: rgba(255, 108, 0, 0.15);
}

.ksm-page1-btn.primary {
    background: linear-gradient(135deg, rgb(255, 108, 0), rgb(198, 70, 0));
    border-color: rgba(255, 132, 35, 0.9);
    color: #ffffff;
    box-shadow: 0 12px 34px rgba(255, 108, 0, 0.22);
}

.ksm-page1-agency {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.58);
    text-decoration: none;
    text-align: center;
    font-size: 12px;
    line-height: 1.55;
    transition: color 0.25s ease;
}

.ksm-page1-agency:hover {
    color: rgb(255, 132, 35);
}

@media (max-width: 768px) {
    .ksm-page1-container {
        padding: 18px 12px;
    }

    .ksm-page1-card {
        min-height: calc(100vh - 36px);
        border-radius: 24px;
        padding: 28px 18px;
    }

    .ksm-page1-top h1 {
        font-size: 36px;
    }

    .ksm-page1-info p {
        font-size: 16px;
    }

    .ksm-page1-location a {
        font-size: 22px;
    }

    .ksm-page1-btn {
        min-height: 54px;
        font-size: 15px;
    }
}

@media (max-width: 390px) {
    .ksm-page1-top h1 {
        font-size: 31px;
    }

    .ksm-page1-card {
        padding: 24px 15px;
    }
}