* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0c0c0c;
    --text: #fbebcc;
    --accent: #ecc87c;
    --accent-strong: #f29a63;
    --panel: rgba(12, 12, 12, 0.78);
    --panel-border: rgba(236, 200, 124, 0.2);
}

html,
body {
    height: 100%;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background-image:
        radial-gradient(
            circle at top left,
            rgba(236, 200, 124, 0.08),
            rgba(12, 12, 12, 0.6) 60%
        ),
        linear-gradient(180deg, rgba(12, 12, 12, 0.25), rgba(12, 12, 12, 0.6)),
        url("../images/slbg3.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 40px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(
    180deg,
    rgba(12, 12, 12, 0.6) 0%,
    rgba(12, 12, 12, 0) 100%
  );
  transition: transform 0.25s ease;
}

.menu-toggle {
    display: none;
    border: 1px solid rgba(236, 200, 124, 0.4);
    background: rgba(12, 12, 12, 0.6);
    color: var(--text);
    width: 42px;
    height: 38px;
    border-radius: 8px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text);
    border-radius: 999px;
}

.section,
footer {
    position: relative;
    z-index: 1;
    background: transparent;
}
.logo {
    font-family: "Paytone One", cursive;
    font-size: 35px;
    color: var(--text);
    text-decoration: none;
}

nav {
    display: flex;
    gap: 58px;
    align-items: center;
}

nav a {
    color: var(--text);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
}

nav a:hover {
    color: var(--accent);
}

.section {
    position: relative;
    padding: 160px 60px 120px;
    overflow: hidden;
}

.section::before,
.section::after {
    content: none;
}

.section-inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    gap: 24px;
}

.eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
}

.section h1,
.section h2 {
    font-family: "Paytone One", cursive;
    font-size: clamp(32px, 6vw, 52px);
    color: var(--accent-strong);
}

.lead {
    font-size: 18px;
    line-height: 1.7;
    max-width: 760px;
}

.hero-cards,
.info-grid,
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.card,
.info-card {
    background: var(--panel);
    border: 1px solid var(--panel-border);
    padding: 18px 20px;
    border-radius: 10px;
    backdrop-filter: blur(6px);
    display: grid;
    gap: 10px;
}

.card h3,
.info-card h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
}

.card p,
.info-card p {
    font-size: 15px;
    line-height: 1.6;
}

.team-card {
    gap: 12px;
}

.team-photo {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--panel-border);
    object-fit: cover;
    height: 240px;
}

@media (max-width: 600px) {
  body {
    position: relative;
    background-attachment: scroll;
    background-size: cover;
    background-position: center;
  }
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    background-image:
        radial-gradient(
            circle at top left,
            rgba(236, 200, 124, 0.08),
            rgba(12, 12, 12, 0.6) 60%
        ),
        linear-gradient(180deg, rgba(12, 12, 12, 0.25), rgba(12, 12, 12, 0.6)),
        url("../images/slbg3.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: translateZ(0);
  }
    .team-photo.shift-down {
        object-position: center 5%;
    }

    .team-photo.shift-kursat {
        object-position: center 20%;
    }
}

.icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid var(--panel-border);
    border-radius: 50%;
    color: var(--accent);
    text-decoration: none;
    margin-right: 10px;
    font-weight: 700;
    font-size: 12px;
}

.icon-link:hover {
    border-color: var(--accent);
    color: var(--accent-strong);
}

.mail-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
}

.mail-link:hover {
    color: var(--accent-strong);
}

.icon {
    letter-spacing: 0.5px;
}

.info-card ul,
.feature-text ul {
    list-style: none;
    display: grid;
    gap: 8px;
    font-size: 15px;
    line-height: 1.6;
}

.info-card li,
.feature-text li {
    display: flex;
    gap: 10px;
}

.info-card li::before,
.feature-text li::before {
    content: "*";
    color: var(--accent);
    font-size: 12px;
    line-height: 1.8;
}

.feature {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    align-items: center;
    margin-top: 30px;
}

.feature-media {
    display: flex;
    justify-content: center;
}

.carousel-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(90vw, 420px);
}

.feature.reverse {
    direction: rtl;
}

.feature.reverse > * {
    direction: ltr;
}

.feature-text h3 {
    font-size: 20px;
    color: var(--text);
    margin-bottom: 8px;
}

.feature-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.mini-carousel {
    position: relative;
    width: min(90vw, 420px);
    aspect-ratio: 10 / 16;
    border: none;
    border-radius: 0;
    overflow: hidden;
    background: transparent;
}

.mini-carousel img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.mini-carousel img.active {
    opacity: 1;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 8px;
    margin-top: 10px;
    z-index: 3;
}

.carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid rgba(236, 200, 124, 0.6);
    background: rgba(12, 12, 12, 0.6);
    cursor: pointer;
    padding: 0;
}

.carousel-dots .dot.active {
    background: var(--accent);
    border-color: var(--accent);
}

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

.step {
    background: var(--panel);
    border: 1px solid var(--panel-border);
    padding: 18px;
    border-radius: 10px;
    display: grid;
    gap: 10px;
}

.step span {
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 2px;
}

.funding {
    margin-top: 20px;
    background: var(--panel);
    border: 1px solid var(--panel-border);
    padding: 18px;
    border-radius: 10px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    padding: 30px 60px 10px;
}

footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(236, 200, 124, 0.15);
}

footer strong {
    color: var(--accent);
}

footer p {
    font-size: 13px;
    line-height: 1.6;
}

footer .copyright {
    text-align: center;
    padding: 10px 0 30px;
    color: rgba(251, 235, 204, 0.7);
    font-size: 12px;
}

@media (max-width: 900px) {
    header {
        padding: 32px 30px;
    }

    .section {
        padding: 140px 30px 100px;
    }
}

@media (max-width: 600px) {
    nav {
        position: absolute;
        top: 100%;
        right: 20px;
        background: rgba(12, 12, 12, 0.92);
        border: 1px solid rgba(236, 200, 124, 0.2);
        border-radius: 12px;
        padding: 12px 14px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        min-width: 180px;
    }

    .lead {
        font-size: 16px;
    }

    header {
        position: fixed;
        top: 0;
        padding: 22px 20px;
        flex-direction: row;
        align-items: center;
        gap: 10px;
        background: linear-gradient(
            180deg,
            rgba(12, 12, 12, 0.6) 0%,
            rgba(12, 12, 12, 0) 100%
        );
    }

    .logo {
        font-size: 22px;
    }

    nav a {
        font-size: 12px;
        padding: 4px 0;
    }

    .section {
        padding-top: 110px;
    }

    .menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    nav.open {
        display: flex;
    }
}
.hidden {
  transform: translateY(-120%);
}
