:root {
    --bg-main: #050814;
    --bg-elevated: rgba(8, 12, 30, 0.9);
    --primary: #7CFF4F;
    --primary-soft: rgba(124,255,79,0.16);
    --accent: #ff784a;
    --text-main: #f7f7ff;
    --text-muted: #9ca3af;
    --border-soft: rgba(148,163,184,0.25);
    --radius-lg: 18px;
    --shadow-soft: 0 18px 45px rgba(0,0,0,0.65);
    --max-width: 1120px;
}

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

body {
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: radial-gradient(circle at top, #111827 0, #020617 45%, #000 100%);
    color: var(--text-main);
    line-height: 1.6;
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* HEADER */

header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(20px);
    background: linear-gradient(to bottom, rgba(2,6,23,0.95), rgba(2,6,23,0.75), transparent);
    border-bottom: 1px solid rgba(148,163,184,0.25);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-mark {
    display: flex;
    align-items: center;
}

.logo-mark img {
    height: 40px;
    width: auto;
    display: block;
}

.logo-text-main {
    font-weight: 600;
    letter-spacing: 0.08em;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.logo-text-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.85rem;
}

.nav-links a {
    position: relative;
    padding-bottom: 0.1rem;
    color: var(--text-muted);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-main);
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.25rem;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: nowrap;
}

.nav-phone {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.nav-phone strong {
    color: var(--primary);
}

/* Sosyal ikonlar */

.nav-social {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-left: 0.3rem;
}

.nav-social a {
    color: var(--text-muted);
    font-size: 1rem;
    transition: color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-social a:hover {
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 0 10px rgba(124,255,79,0.4);
}

/* BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 500;
    border: 1px solid transparent;
    cursor: pointer;
    background: transparent;
    color: var(--text-main);
    transition: all 0.18s ease-out;
    gap: 0.35rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #22c55e);
    color: #020617;
    box-shadow: 0 0 0 1px rgba(34,197,94,0.3), 0 10px 30px rgba(34,197,94,0.35);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 40px rgba(34,197,94,0.45);
}

.btn-ghost {
    border-color: rgba(148,163,184,0.4);
    background: rgba(15,23,42,0.9);
}

.btn-ghost:hover {
    border-color: rgba(148,163,184,0.8);
    background: rgba(15,23,42,1);
}

.nav-toggle {
    display: none;
    border: none;
    background: transparent;
    color: var(--text-main);
    font-size: 1.25rem;
}

/* HERO */

.hero {
    min-height: 86vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 2.5rem 0 4rem;
}

.hero::before {
    content: "";
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(circle at 10% 0, rgba(124,255,79,0.18), transparent 55%),
        radial-gradient(circle at 80% 10%, rgba(56,189,248,0.18), transparent 55%),
        radial-gradient(circle at 50% 90%, rgba(239,68,68,0.14), transparent 60%);
    opacity: 0.9;
    z-index: -2;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.15fr);
    gap: 2.5rem;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: rgba(15,23,42,0.9);
    border: 1px solid rgba(148,163,184,0.5);
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--primary);
    box-shadow: 0 0 12px rgba(124,255,79,0.85);
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-title span {
    background: linear-gradient(120deg, var(--primary), #a3e635, #4ade80);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 30rem;
    margin-bottom: 1.75rem;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.badge-soft {
    font-size: 0.75rem;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    background: rgba(15,23,42,0.92);
    border: 1px solid rgba(148,163,184,0.3);
    color: var(--text-muted);
}

.badge-soft strong {
    color: var(--primary);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.hero-microcopy {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.hero-microcopy strong {
    color: var(--primary);
}

.hero-right {
    position: relative;
}

.hero-card {
    border-radius: 32px;
    padding: 1.4rem;
    background: radial-gradient(circle at top, rgba(15,23,42,0.85), rgba(3,7,18,0.98));
    border: 1px solid rgba(148,163,184,0.4);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.hero-img {
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(148,163,184,0.35);
    margin-bottom: 1rem;
    aspect-ratio: 4 / 5;
    background: radial-gradient(circle at center, #1f2937, #020617);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4b5563;
    font-size: 0.8rem;
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-metrics {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.78rem;
    flex-wrap: wrap;
}

.metric-item strong {
    display: block;
    font-size: 1.1rem;
}

.metric-pill {
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: var(--primary-soft);
    font-size: 0.72rem;
    color: var(--primary);
    border: 1px solid rgba(124,255,79,0.5);
}
.hero-glow {
    position: fixed;
    inset: 0;
    background: conic-gradient(from 180deg at 50% 50%,
        rgba(124,255,79,0.15),
        rgba(56,189,248,0.1),
        rgba(239,68,68,0.1),
        transparent 80%);
    opacity: 0.5;
    mix-blend-mode: screen;
    animation: glow-rotate 30s linear infinite;
    filter: blur(50px);
    pointer-events: none;
    z-index: -1;
}

@keyframes glow-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}



/* SECTIONS */

section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    max-width: 36rem;
    margin: 0 auto 2.5rem;
}

.section-header-left {
    margin-bottom: 1.5rem;
    text-align: left;
}

.section-kicker {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.4rem;
}

.section-title {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.section-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.grid-2 {
    display: grid;
    grid-template-columns: minmax(0,1.1fr) minmax(0,1fr);
    gap: 2rem;
}

.card {
    background: var(--bg-elevated);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    padding: 1.5rem;
}

.card-title {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.card-text {
    font-size: 0.86rem;
    color: var(--text-muted);
}

.list-check {
    list-style: none;
    font-size: 0.86rem;
    color: var(--text-muted);
    display: grid;
    gap: 0.4rem;
    margin-top: 1.25rem;
}

.list-check li::before {
    content: "✔";
    color: var(--primary);
    margin-right: 0.5rem;
}

/* HİZMETLER */

.services-grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 1.25rem;
}

.service-card {
    background: rgba(15,23,42,0.98);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    padding: 1.35rem;
    font-size: 0.85rem;
}

.service-chip {
    font-size: 0.7rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    background: rgba(15,23,42,1);
    border: 1px solid rgba(148,163,184,0.5);
    color: var(--text-muted);
    margin-bottom: 0.7rem;
}

.service-title {
    font-size: 0.98rem;
    margin-bottom: 0.25rem;
}

/* ANTRENÖRLER */

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

.coach-card {
    position: relative;
    border-radius: 18px;
    padding: 1.4rem 1.2rem 1.5rem;
    background: radial-gradient(circle at top, rgba(15,23,42,0.92), rgba(15,23,42,0.98));
    border: 1px solid rgba(148,163,184,0.35);
    box-shadow: 0 16px 40px rgba(0,0,0,0.55);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Yuvarlak avatar alanı */
.coach-img {
    width: 200px;
    height: 200px;
    border-radius: 999px;
    padding: 3px;
    background: radial-gradient(circle at 25% 0, #7CFF4F, #22c55e 35%, #0f172a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.9rem;
}

/* Fotoğraf – dikey de olsa ortadan kırp */
.coach-img img {
    width: 100%;
    height: 100%;
    border-radius: 999px;
    object-fit: cover;
    display: block;
}

.coach-body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.coach-name {
    font-weight: 600;
    font-size: 1rem;
}

.coach-role {
    font-size: 0.78rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.coach-card .card-text {
    font-size: 0.86rem;
    color: #cbd5f5;
    margin-top: 0.4rem;
}

/* FİYATLANDIRMA */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 1.3rem;
}

.pricing-card {
    background: rgba(15,23,42,0.96);
    border-radius: 22px;
    padding: 1.6rem 1.4rem;
    border: 1px solid var(--border-soft);
    position: relative;
}

.pricing-card--highlight {
    border-color: rgba(124,255,79,0.8);
    box-shadow: 0 18px 40px rgba(34,197,94,0.25);
}

.pricing-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}

.pricing-name {
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.pricing-price {
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
}

.pricing-price span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.pricing-list {
    list-style: none;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0.7rem 0 1.1rem;
    display: grid;
    gap: 0.35rem;
}

.pricing-list li::before {
    content: "•";
    color: var(--primary);
    margin-right: 0.45rem;
}
/* GALERİ – thumbnail grid */
.gallery-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.1rem;
    margin-top: 1.5rem;
}

.gallery-thumb {
    position: relative;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.gallery-thumb-inner {
    position: relative;
    width: 100%;
    padding-bottom: 70%;
}

.gallery-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent 55%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0.6rem 0.7rem;
    transition: opacity 0.25s ease;
}

.gallery-thumb-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 0 0 2px rgba(148, 163, 184, 0.5);
}

.gallery-thumb:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.gallery-thumb:hover img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.gallery-thumb:hover .gallery-thumb-overlay {
    opacity: 1;
}

/* 8'den sonraki thumb'lar gizli (sadece lightbox için) */
.gallery-thumb--hidden {
    display: none;
}

.gallery-more-row {
    margin-top: 1.2rem;
    text-align: center;
}

.gallery-empty {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #9ca3af;
}

/* LIGHTBOX */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.gallery-lightbox.is-open {
    display: block;
}

.gallery-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
}

.gallery-lightbox-dialog {
    position: relative;
    max-width: 1024px;
    margin: 0 auto;
    height: 100%;
    padding: 4rem 1rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox-image-wrapper {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.9);
    background: #020617;
}

.gallery-lightbox-image-wrapper img {
    display: block;
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

.gallery-lightbox-caption {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: #e5e7eb;
    text-align: center;
}

.gallery-lightbox-counter {
    margin-top: 0.15rem;
    font-size: 0.78rem;
    color: #9ca3af;
}

/* BUTONLAR – sabit, kaymayan */
.gallery-lightbox-close,
.gallery-lightbox-prev,
.gallery-lightbox-next {
    position: fixed;
    border: 0;
    background: rgba(15, 23, 42, 0.9);
    color: #e5e7eb;
    cursor: pointer;
    border-radius: 999px;
    width: 2.4rem;
    height: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 0 0 2px rgba(148, 163, 184, 0.5);
    transition: background 0.2s ease;
    z-index: 10010;
}

/* Konumlar */
.gallery-lightbox-close {
    top: 1.6rem;
    right: 1.4rem;
}

.gallery-lightbox-prev {
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.gallery-lightbox-next {
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover,
.gallery-lightbox-close:hover {
    background: rgba(15, 23, 42, 1);
}

/* Mobilde düzgün görünüm */
@media (max-width: 768px) {
    .gallery-lightbox-prev,
    .gallery-lightbox-next {
        width: 2.3rem;
        height: 2.3rem;
        font-size: 1.3rem;
    }

    .gallery-lightbox-prev {
        left: 0.6rem;
    }

    .gallery-lightbox-next {
        right: 0.6rem;
    }
}


/* FAQ */

.faq-grid {
    display: grid;
    grid-template-columns: minmax(0,1.1fr) minmax(0,1fr);
    gap: 2rem;
}

.faq-item {
    padding: 0.85rem 0;
    border-bottom: 1px dashed rgba(55,65,81,0.7);
}

.faq-q {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.faq-a {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* İLETİŞİM */

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0,1.2fr) minmax(0,1.1fr);
    gap: 1.8rem;
}

.contact-form {
    display: grid;
    gap: 0.9rem;
}

.field {
    display: grid;
    gap: 0.25rem;
}

.field label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.field input,
.field textarea,
.field select {
    background: rgba(15,23,42,0.95);
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    padding: 0.6rem 0.9rem;
    font-size: 0.85rem;
    color: var(--text-main);
    outline: none;
}

.field textarea {
    border-radius: 16px;
    min-height: 120px;
    resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px rgba(124,255,79,0.35);
}

.form-note {
    margin-top: 0.5rem;
}

.contact-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: grid;
    gap: 0.75rem;
}

.contact-meta strong {
    color: var(--text-main);
}

.map-shell {
    margin-top: 0.75rem;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    background: #020617;
    height: 230px;
}

.map-shell iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* FOOTER */

footer {
    border-top: 1px solid rgba(31,41,55,0.9);
    padding: 1.8rem 0 2.2rem;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.footer-row {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
}

.footer-credit {
    font-size: 0.9rem;
    color: #aaa;
}
.footer-credit a {
    color: #fd3838;
    font-weight: 500;
    text-decoration: none;
}
.footer-credit a:hover {
    text-decoration: underline;
}

/* WHATSAPP FLOAT – düzeltilmiş */

.whatsapp-float {
    position: fixed;
    right: 1.2rem;
    bottom: 1.2rem;
    z-index: 60;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.whatsapp-float.is-hidden {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    background: rgba(15,23,42,0.96);
    color: #e5e7eb;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 0 12px 32px rgba(0,0,0,0.65);
    border: 1px solid rgba(34,197,94,0.75);
    cursor: pointer;
    white-space: nowrap;
}

.whatsapp-btn:hover {
    background: rgba(15,23,42,1);
    box-shadow: 0 16px 40px rgba(0,0,0,0.8);
    transform: translateY(-1px);
}

.whatsapp-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34,197,94,0.8);
}


/* RESPONSIVE */

@media (max-width: 960px) {
    .hero-grid,
    .grid-2,
    .faq-grid,
    .contact-grid {
        grid-template-columns: minmax(0,1fr);
    }

    .hero {
        padding-top: 2rem;
    }

    .hero-right {
        order: -1;
    }

    .services-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .coaches-grid,
    .pricing-grid,
    .gallery-grid-modern {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
}

@media (max-width: 768px) {
    .gallery-grid-modern {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.9rem;
    }

    .gallery-thumb-inner {
        padding-bottom: 80%;
    }

    .gallery-lightbox-dialog {
        padding: 3rem 0.5rem 1.5rem;
    }

    .gallery-lightbox-close {
        top: 1rem;
        right: 0.8rem;
    }

    .gallery-lightbox-prev,
    .gallery-lightbox-next {
        width: 2.1rem;
        height: 2.1rem;
        font-size: 1.3rem;
    }
}

@media (max-width: 720px) {
    .nav-links {
        position: absolute;
        inset: 100% 0 auto 0;
        padding: 0.75rem 1.25rem 0.9rem;
        background: radial-gradient(circle at top, rgba(15,23,42,0.96), rgba(2,6,23,0.98));
        border-bottom: 1px solid rgba(51,65,85,0.85);
        display: none;
        flex-direction: column;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .services-grid,
    .coaches-grid,
    .pricing-grid,
    .gallery-grid-modern {
        grid-template-columns: minmax(0,1fr);
    }

    .hero-title {
        font-size: 2rem;
    }
}
@media (max-width: 720px) {
    /* Logo biraz sağda, menü butonu biraz solda */
    .logo-mark img {
        margin-left: 0.6rem;
    }

    .nav-toggle {
        margin-right: 0.6rem;
    }

    /* Menüden tıklanınca başlık tepeye yapışmasın */
    section {
        scroll-margin-top: 85px;
    }
}
