* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --yellow: #ffb020;
    --pink: #ff5b6b;
    --blue: #6ec1ff;
    --text-light: #f5f5f5;
}

body {
    font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-light);
    background: #000000F2 center center/cover fixed no-repeat;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Grid çizgisi efekti için hafif overlay */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
}

/* Navbar */
header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(16px);
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0.4),
            transparent);
}

.nav {
    max-width: 1120px;
    margin: 0 auto;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-img {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    object-fit: cover;
}

.nav-brand {
    letter-spacing: 0.45em;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--yellow);
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
    font-size: 0.95rem;
}

.nav-menu a {
    color: #ffbe26;
    text-decoration: none;
    position: relative;
    padding-bottom: 3px;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: width 0.25s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 8px 14px;
    font-size: 0.85rem;
    text-decoration: none;
    color: #f9fafb;
    background: rgba(0, 0, 0, 0.4);
}

.nav-login-icon {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    border: 2px solid #f97373;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

/* Hamburger (mobil) */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    margin-left: auto;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: #e5e7eb;
}

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        inset-inline: 0;
        top: 60px;
        margin-left: 0;
        flex-direction: column;
        padding: 12px 20px 16px;
        background: rgba(0, 0, 0, 0.95);
        border-bottom: 1px solid rgba(148, 163, 184, 0.2);
        transform-origin: top;
        transform: scaleY(0);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.18s ease-out, opacity 0.18s ease-out;
    }

    .nav-menu.open {
        transform: scaleY(1);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-login {
        margin-top: 4px;
        align-self: flex-start;
    }

    .nav-toggle {
        display: flex;
    }
}

main {
    max-width: 1120px;
    margin: 0 auto;
    padding: 72px 20px 96px;
    position: relative;
    z-index: 1;
}

section {
    padding-block: 48px;
}

/* HERO */
.hero {
    min-height: 68vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    text-align: center;
    align-items: center;
}

.hero-kicker {
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--yellow);
    font-weight: 700;
    font-size: 1rem;
}

.hero-title {
    font-size: clamp(2.6rem, 5vw, 3.4rem);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--yellow);
}

.hero-subtitle {
    font-size: clamp(2.1rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--pink);
    line-height: 1.15;
}

.hero-subtitle span {
    display: block;
}

.hero-text {
    margin-top: 16px;
    max-width: 520px;
    color: #e5e7eb;
    line-height: 1.6;
    font-weight: 300;
    font-size: 0.98rem;
}

.hero-cta {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn-primary {
    background: var(--yellow);
    color: #111827;
    padding: 12px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary {
    background: transparent;
    border-radius: 999px;
    padding: 11px 22px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    text-decoration: none;
    color: #e5e7eb;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary::before {
    content: "▶";
    font-size: 0.75rem;
}

/* OUR STORY */
.section-title-kicker {
    letter-spacing: 0.35em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--blue);
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.section-title-main {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 24px;
}

.story-text {
    max-width: 620px;
    line-height: 1.7;
    font-size: 0.98rem;
    font-weight: 300;
    color: #d1d5db;
}

.story-text p+p {
    margin-top: 14px;
}

.story-cta {
    margin-top: 28px;
}

.story-cta a {
    border-radius: 999px;
    border: 1px solid var(--blue);
    padding: 10px 22px;
    text-decoration: none;
    color: var(--blue);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    font-weight: 600;
    background: rgba(15, 23, 42, 0.8);
}

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: 48px;
    margin-top: 24px;
}

@media (max-width: 800px) {
    .contact-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.contact-block {
    margin-bottom: 24px;
}

.contact-label {
    font-size: 0.8rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: #d1d5db;
    margin-bottom: 4px;
}

.contact-value {
    font-size: 1rem;
    font-weight: 400;
    color: #f9fafb;
    white-space: pre-line;
}

.contact-value a {
    color: var(--pink);
    text-decoration: none;
}

.contact-value a:hover {
    text-decoration: underline;
}

.contact-links-title {
    font-size: 1.05rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: #f9fafb;
}

.contact-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.95rem;
}

.contact-links-list a {
    color: #e5e7eb;
    text-decoration: none;
}

.contact-links-list a span {
    color: var(--pink);
}

.contact-links-list a:hover {
    text-decoration: underline;
}

/* FOOTER */
footer {
    border-top: 1px solid rgba(148, 163, 184, 0.35);
    padding: 18px 20px 26px;
    font-size: 0.8rem;
    color: #9ca3af;
    text-align: center;
    background: radial-gradient(circle at 0 0, rgba(148, 163, 184, 0.18), transparent 55%);
}

footer span {
    color: var(--yellow);
    font-weight: 600;
}