


/*Luminara – Vanilla CSS
========================= */
:root {
    --blue: #3FA9F5;
    --orange: #F15A29;
    --cream: #FFF9F4;
    --ink: #1E293B;
    --soft-ink: #475569;
    --bg: #FFFFFF;
    --radius-xl: 22px;
    --radius-lg: 18px;
    --shadow: 0 14px 40px rgba(15,23,42,.12);
    --shadow-sm: 0 8px 20px rgba(15,23,42,.09);
}

* {
    box-sizing: border-box
}

html, body {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: linear-gradient(180deg, #FDFBFF 0%, #FFF9F4 100%);
    color: var(--ink);
    font-family: "Baloo 2",system-ui,Segoe UI,Roboto,Arial,sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* ---- utilities ---- */
.lk-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px
}

.lk-grid {
    display: grid;
    gap: 28px
}

.lk-hidden {
    display: none
}

@media(min-width:900px) {
    .lk-grid-2 {
        grid-template-columns: 1fr 1fr
    }
}

@media(min-width:1100px) {
    .lk-grid-3 {
        grid-template-columns: repeat(3,1fr)
    }
}

/* ---- playful blobs / waves ---- */
.lk-blob {
    position: absolute;
    filter: blur(0.2px);
    opacity: .12;
    z-index: 0;
    background: radial-gradient(60% 60% at 50% 50%, var(--blue), var(--orange));
    mix-blend-mode: multiply;
    border-radius: 50%;
    animation: blob 14s ease-in-out infinite;
}

.lk-blob--2 {
    animation-duration: 18s;
    background: radial-gradient(60% 60%, var(--orange), var(--blue))
}

@keyframes blob {
    0% {
        transform: translate(0,0) scale(1)
    }

    50% {
        transform: translate(20px,-30px) scale(1.15)
    }

    100% {
        transform: translate(0,0) scale(1)
    }
}

.lk-wave {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg,#E6F5FF 0%, var(--cream) 70%, #fff 100%);
}

    .lk-wave:after {
        content: "";
        position: absolute;
        left: -10%;
        right: -10%;
        bottom: -40px;
        height: 120px;
        background: radial-gradient(60% 100% at 50% 0,#fff 0%, rgba(255,255,255,0) 80%);
    }

/* ---- navbar ---- */
.lk-nav-wrap {
    position: sticky;
    top: 5px;
    z-index: 40;
    background: transparent
}

@media (max-width: 768px) {
    .lk-nav-wrap {
        margin: 0px 15px;
    }
}


.lk-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
    margin: 12px auto;
    max-width: 1300px;
    background: rgba(255,255,255,.8);
    backdrop-filter: blur(10px);
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
}

.lk-brand {
    display: flex;
    align-items: center;
    gap: 10px
}

    .lk-brand img {
        height: 40px
    }

@media (max-width: 768px) {
    .lk-brand img {
        height: 22px
    }
}

.lk-menu a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 12px
}

    .lk-menu a:hover {
        background: #f3f6ff !important;
    }

.lk-cta {
    background: var(--orange);
    color: #fff !important;
    border-radius: 999px;
    padding: 10px 18px;
}

    .lk-cta:hover {
        filter: saturate(1.08);
        color: var(--ink) !important;
    }

/* ---- hero ---- */
.lk-hero {
    position: relative;
    padding: 64px 0 40px;
    isolation: isolate;
}

    .lk-hero h1 {
        font-size: 40px;
        line-height: 1.12;
        margin: 0 0 14px
    }

    .lk-hero p {
        color: var(--soft-ink);
        font-size: 18px;
        margin: 0 0 22px
    }

.lk-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    background: var(--blue);
    color: #fff;
    padding: 14px 18px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    font-weight: 700;
    transition: .18s transform ease, .18s filter ease;
}

    .lk-button:hover {
        transform: translateY(-2px);
        filter: saturate(1.06)
    }

.lk-button--ghost {
    background: #fff;
    color: var(--ink);
    border: 2px solid #e8eef7
}

.lk-hero-img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    aspect-ratio: 16/11;
    object-fit: cover
}

/* ---- badges ---- */
.lk-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px
}

.lk-badge {
    background: #fff;
    border: 1px dashed #d7e5ff;
    color: #40607f;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
}

/* ---- feature cards ---- */
.lk-card {
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    padding: 22px;
    position: relative;
    overflow: hidden;
}

    .lk-card .lk-icon {
        width: 54px;
        height: 54px;
        border-radius: 14px;
        display: grid;
        place-items: center;
        background: linear-gradient(135deg,var(--blue),#8fd1ff);
        color: #fff;
        font-size: 24px;
        box-shadow: 0 10px 20px rgba(63,169,245,.35);
    }

    .lk-card h3 {
        margin: 14px 0 6px
    }

    .lk-card p {
        color: var(--soft-ink)
    }

/* ---- zebra sections ---- */
.lk-section {
    padding: 64px 0
}

    .lk-section.alt {
        background: linear-gradient(180deg,#fff, #f8fbff);
        border-radius: var(--radius-xl);
    }

/* ---- gallery ---- */
.lk-gallery {
    display: grid;
    gap: 14px
}

@media(min-width:700px) {
    .lk-gallery {
        grid-template-columns: repeat(3,1fr)
    }
}

.lk-gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: .2s transform
}

    .lk-gallery img:hover {
        transform: translateY(-4px)
    }

/* ---- footer ---- */
.lk-footer {
    background: linear-gradient(180deg, #f7fbff, #fff);
    padding: 50px 0 40px;
    margin-top: 20px;
    border-top: 1px solid #eef2f7
}

.lk-foot a {
    text-decoration: none;
    color: var(--ink)
}

    .lk-foot a:hover {
        color: var(--orange)
    }

/* ---- responsive ---- */
@media(min-width:1000px) {
    .lk-hero h1 {
        font-size: 56px
    }
}

@media(prefers-reduced-motion: reduce) {
    .lk-blob, .lk-blob--2 {
        animation: none
    }
}


.lk-blob-soft {
    position: absolute;
    left: -72px;
    bottom: -24px;
    width: 22rem;
    height: 22rem;
    border-radius: 9999px;
    pointer-events: none;
    z-index: -1;
    background: radial-gradient(60% 60% at 50% 50%, #AEE2FF, #E1F2FF);
    filter: blur(28px);
    opacity: .55;
}

@media (max-width: 768px) {
    .lk-blob-soft {
        left: -28px;
        bottom: -14px;
        width: 7rem;
        height: 7rem;
        filter: blur(22px);
    }


}



/*Fun Cards*/

.lk-card-fun {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 6px 16px rgba(0,0,0,0.05);
    transition: transform .3s ease, box-shadow .3s ease;
}

    .lk-card-fun:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 24px rgba(0,0,0,0.12);
    }

    .lk-card-fun .icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }

.fun-blue .icon {
    color: #1da1f2;
}

.fun-orange .icon {
    color: #ff7a45;
}

.fun-green .icon {
    color: #52c41a;
}

a{
    text-decoration:none;
}


.lk-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: transform .3s ease, box-shadow .3s ease;
}

    .lk-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 28px rgba(0,0,0,0.1);
    }




/* ===== Dots-only Preloader (isolated) ===== */
:root {
    --lk-primary: #3FA9F5;
    --lk-accent: #F15A29;
    --lk-success: #58C27D;
}

/* container: yumuşak fade in/out */
.lk-dots {
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .6s ease;
}

    .lk-dots.is-active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .lk-dots.is-leaving {
        opacity: 0; /* transitionend sonrası JS kaldırır */
    }

/* arka plan çok hafif */
.lk-dots__backdrop {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,#ffffff 0,#fff7ef 100%);
}

/* merkezde 3 dot */
.lk-dots__wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    display: inline-flex;
    gap: 10px;
}

    .lk-dots__wrap span {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        display: block;
        background: var(--lk-primary);
        animation: lk-dot 1.1s infinite ease-in-out;
        box-shadow: 0 2px 10px rgba(2,8,23,.12);
    }

        .lk-dots__wrap span:nth-child(2) {
            background: var(--lk-accent);
            animation-delay: .15s;
        }

        .lk-dots__wrap span:nth-child(3) {
            background: var(--lk-success);
            animation-delay: .3s;
        }

/* scale + fade */
@keyframes lk-dot {
    0%,80%,100% {
        transform: scale(0.8);
        opacity: .7;
    }

    40% {
        transform: scale(1.15);
        opacity: 1;
    }
}

/* Erişilebilirlik: motion azalt */
@media (prefers-reduced-motion: reduce) {
    .lk-dots__wrap span {
        animation: none;
    }
}
