@import url('https://fonts.googleapis.com/css2?family=MedievalSharp&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "MedievalSharp", cursive;

}

.page{
    width: 100%;
    height: 100vh;
}

/* BAŞLIK */
.header{
    width: 100%;
    display: flex;
    position: relative;
}
.header .logo{
    width: 30%;
    padding: 10px 40px 10px 10px;
}
.logo a{
    display: flex;
    align-items: center;
    text-decoration: none;
    color: black;
}
.logo img{
    width: 30px;
    margin-right: 10px;
}
.logo h2{
    font-family: "MedievalSharp", cursive;
}
.header .navbar{
    width: 70%;
}
.navbar ul{
    width: 100%;
    height: 100%;
    list-style: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.navbar ul li a{
    text-decoration: none;
    font-size: 20px;
    font-family: "MedievalSharp", cursive;
    color: black;
    font-weight: 500;
}

.header .bars{
    position: absolute;
    right: 10px;
    height: 100%;
    display: none;
    align-items: center;
    font-size: 28px;
    cursor: pointer;
}
/* SideBAr */
.sidebar{
    width: 100%;
    overflow: hidden;
    max-height: 0;
    display: flex;
    justify-content: center;
    transition: 1s ease-in-out;
}
.sidebar.active{
    max-height: 300px;
}

.sidebar ul{
    list-style: none;
}
.sidebar ul li{
    padding: 10px 0;
    text-align: center;
}

.sidebar ul li a{
    text-decoration: none;
    color: black;
    font-size: 25px;

}
/* İÇERİK */
.content{
    width: 100%;
}

.hero {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    color: #fff;
    padding: 80px 40px;
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,.18);
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.hero-text {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: .95;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.promo-video {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 20px;
}

.promo-video video {
    width: 100%;
    border-radius: 16px;
    background: #000;
    object-fit: cover;
}

.btn {
    padding: 14px 28px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    transition: .25s ease;
    display: inline-block;
}

.btn.primary {
    background: #22c55e;
    color: #052e16;
    box-shadow: 0 10px 25px rgba(34,197,94,.35);
}

.btn.primary:hover {
    transform: translateY(-3px);
    background: #16a34a;
}

.btn.secondary {
    background: rgba(255,255,255,.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,.3);
}

.btn.secondary:hover {
    background: rgba(255,255,255,.25);
}


.features {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.feature-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .25s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    color: #4b5563;
}

/*ekran görüntüleri */

.screenshots {
    margin-top: 90px;
    text-align: center;
}

.screenshots h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

.screenshots p {
    color: #6b7280;
    margin-bottom: 35px;
}

.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}

.shot {
    position: relative;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    margin: 10px;
    cursor: zoom-in;

}

.shot .image img{
    width: 100%;
}
.imageszoom img {
    position: fixed;
    top: 50%;
    left: 50%;
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 9999;
    box-shadow: 0 30px 90px rgba(0,0,0,.7);
    cursor: zoom-out;
    background: #fff;
}

.who {
    margin-top: 90px;
    background: #fff;
    padding: 50px 40px;
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.who h2 {
    font-size: 28px;
    margin-bottom: 24px;
}

.who ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.who li {
    font-size: 16px;
}


.steps {
    margin-top: 90px;
    text-align: center;
}

.steps h2 {
    font-size: 30px;
    margin-bottom: 30px;
}

.step-list {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.step {
    background: #fff;
    padding: 28px;
    width: 260px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.step span {
    width: 42px;
    height: 42px;
    background: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 14px;
}

/* =========================
   LICENSE
========================= */

.license {
    margin-top: 90px;
    text-align: center;
}

.license h2 {
    font-size: 30px;
    margin-bottom: 30px;
}

.license-box {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    width: 300px;
    display: inline-block;
    margin: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.license-box h3 {
    margin-bottom: 16px;
}

.license-box ul {
    list-style: none;
}

.license-box li {
    margin-bottom: 8px;
    color: #374151;
}

/* =========================
   DOWNLOAD
========================= */

.download {
    margin-top: 100px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    padding: 70px 40px;
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(34,197,94,.35);
}

.download h2 {
    font-size: 34px;
    margin-bottom: 12px;
}

.download p {
    font-size: 17px;
    margin-bottom: 26px;
}
/* SEO TEXT */
.seo-text {
    max-width: 1100px;
    margin: 80px auto 40px;
    padding: 40px 30px;
    background: #0f172a; /* koyu ama soft */
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.seo-text h2 {
    font-size: 1.8rem;
    color: #22c55e; /* yeşil vurgu */
    margin-bottom: 16px;
    line-height: 1.3;
}

.seo-text p {
    font-size: 1rem;
    line-height: 1.75;
    color: #e5e7eb;
    max-width: 900px;
}

.seo-text strong {
    color: #22c55e;
    font-weight: 600;
}




/* =========================
   FOOTER INFO
========================= */

.footer-info {
    margin-top: 80px;
    text-align: center;
    color: #6b7280;
    font-size: 14px;
}

.footer-info p {
    margin-bottom: 8px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .download h2 {
        font-size: 28px;
    }
      .seo-text {
        padding: 30px 20px;
        margin: 60px 15px 30px;
    }

    .seo-text h2 {
        font-size: 1.4rem;
    }

    .seo-text p {
        font-size: 0.95rem;
    }
}


/* FOOTER */
.footer{
    width: 100%;
    height: 20vh;
    background-color: rgb(16, 47, 109);
}


@media (max-width: 768px) {
    .header{
        flex-direction: column;
        align-items: center;
    }
    .header .navbar{
        display: none;
    }
    .header .logo{
        width: 100%;
    }
    .logo a{
        display: flex;
        justify-content: center;
    }
    .header .bars{
        display: flex;
    }
    
}