/* Temel CSS dosyası. Detaylar adım adım eklenecek. */
html, body {
  width: 100vw;
  max-width: 100vw;
  overflow-x: hidden;
}
/* Tema değişkenleri: varsayılanı koyu (mevcut tasarım) */
:root {
  --bg: #000a20;
  --surface: #111827;
  --card: #1a1a2e;
  --primary-500: #0b294a;
  --primary-500-90: rgba(11, 41, 74, 0.90);
  --text: #ffffff;
  --muted: #cccccc;
  --border: #292f3d;
  --input-bg: #1a212f;
  --input-border: #292f3d;
  --follow-bg: #23262F;
  --hero-overlay: rgba(10, 20, 40, 0.60);
  --accent: #00d4ff;
  --accent-2: #0099cc;
}

.theme-dark {
  color-scheme: dark;
}

.theme-light {
  /* Açık tema: beyaz, gri, mavi tonları */
  --bg: #f7f9fc;
  --surface: #ffffff;
  --card: #ffffff;
  --primary-500: #e8f0fe;
  --primary-500-90: rgba(232, 240, 254, 0.90);
  --text: #0b1220;
  --muted: #4b5563;
  --border: #d1d5db;
  --input-bg: #ffffff;
  --input-border: #cbd5e1;
  --follow-bg: #eef2ff;
  --hero-overlay: rgba(10, 20, 40, 0.60);
  --accent: #2563eb;
  --accent-2: #1d4ed8;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Raleway', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  padding-top: 72px !important;
}

/* Navbar Stilleri */
.navbar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--primary-500);
    /* DarkThemeColors.primary500 */
    padding: 0 32px;
    height: 72px;
    box-sizing: border-box;
    position: sticky;
    top: 0;
    z-index: 100;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    z-index: 999 !important;
    background: var(--primary-500-90) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.navbar-left {
    display: flex;
    align-items: center;
}

.navbar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text);
    font-family: 'Space Grotesk', Arial, sans-serif;
    font-size: 1.3rem;
    font-weight: bold;
    gap: 10px;
}

/* Açık tema: navbar marka yazısı lacivert (#1d4ed8) */
.theme-light .navbar-logo {
    color: #1d4ed8;
}

.navbar-logo img {
    height: 40px;
    width: auto;
}

.navbar-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.navbar-menu {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: var(--text);
    font-family: 'Space Grotesk', Arial, sans-serif;
    font-size: 1.1rem;
    padding: 8px 0;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}

.nav-link::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%);
    /* DarkThemeColors.turquoiseGradient */
    border-radius: 2px;
    transition: width 0.3s;
}

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

.navbar-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* Tema toggle (animasyonlu ikon) */
.theme-toggle {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(26, 47, 73, 0.6);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.theme-toggle:hover { background: rgba(255,255,255,0.06); }
.theme-toggle__icon { width: 22px; height: 22px; stroke: currentColor; stroke-width: 2; fill: none; transition: transform 0.45s ease; }
.theme-toggle__icon .sun { fill: currentColor; transform-origin: center center; transition: transform 0.45s ease, r 0.45s ease; }
.theme-toggle__icon .sun-beams { stroke: currentColor; transform-origin: center center; transition: opacity 0.45s ease, transform 0.45s ease; }
.theme-toggle__icon .moon { fill: currentColor; transform-origin: center center; opacity: 0; transition: opacity 0.45s ease, transform 0.45s ease; }
.theme-toggle__icon [id^="theme-toggle__mask"] circle { transition: r 0.45s ease, transform 0.45s ease; }
.theme-dark .theme-toggle__icon { transform: rotate(-40deg); }
.theme-dark .theme-toggle__icon .sun-beams { opacity: 1; transform: scale(1); }
.theme-dark .theme-toggle__icon .moon { opacity: 0; transform: scale(0.9); }

/* Açık tema: ay efekti için güneşi maske ile hilale çevir, ışınları gizle; gerçek .moon'u gizle */
.theme-light .theme-toggle__icon .sun-beams { opacity: 0; transform: scale(0.8); }
.theme-light .theme-toggle__icon .moon { opacity: 0; transform: scale(0.9); }

/* Mask ayarı: Açık temada maskeyi sıfırla ki güneş tam daire görünsün;
   Koyu temada maske aktif kalsın (hilal efekti) */
.theme-light [id^="theme-toggle__mask"] circle { r: 6; }
.theme-dark [id^="theme-toggle__mask"] circle { r: 0; }

.navbar-social {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 28px;
    height: 28px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.social-icon:hover {
    opacity: 1;
}

.social-icon.linkedin {
    background-image: url('data:image/svg+xml;utf8,<svg fill="white" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 0h-14c-2.761 0-5 2.239-5 5v14c0 2.761 2.239 5 5 5h14c2.762 0 5-2.239 5-5v-14c0-2.761-2.238-5-5-5zm-11 19h-3v-10h3v10zm-1.5-11.268c-.966 0-1.75-.784-1.75-1.75s.784-1.75 1.75-1.75 1.75.784 1.75 1.75-.784 1.75-1.75 1.75zm13.5 11.268h-3v-5.604c0-1.337-.025-3.063-1.868-3.063-1.868 0-2.154 1.459-2.154 2.967v5.7h-3v-10h2.881v1.367h.041c.401-.761 1.381-1.563 2.844-1.563 3.043 0 3.604 2.004 3.604 4.609v5.587z"/></svg>');
}

.social-icon.instagram {
    background-image: url('data:image/svg+xml;utf8,<svg fill="white" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2.163c3.204 0 3.584.012 4.85.07 1.366.062 2.633.334 3.608 1.308.974.974 1.246 2.242 1.308 3.608.058 1.266.07 1.646.07 4.85s-.012 3.584-.07 4.85c-.062 1.366-.334 2.633-1.308 3.608-.974.974-2.242 1.246-3.608 1.308-1.266.058-1.646.07-4.85.07s-3.584-.012-4.85-.07c-1.366-.062-2.633-.334-3.608-1.308-.974-.974-1.246-2.242-1.308-3.608-.058-1.266-.07-1.646-.07-4.85s.012-3.584.07-4.85c.062-1.366.334-2.633 1.308-3.608.974-.974 2.242-1.246 3.608-1.308 1.266-.058 1.646-.07 4.85-.07zm0-2.163c-3.259 0-3.667.012-4.947.07-1.276.058-2.687.334-3.678 1.325-.991.991-1.267 2.402-1.325 3.678-.058 1.28-.07 1.688-.07 4.947s.012 3.667.07 4.947c.058 1.276.334 2.687 1.325 3.678.991.991 2.402 1.267 3.678 1.325 1.28.058 1.688.07 4.947.07s3.667-.012 4.947-.07c1.276-.058 2.687-.334 3.678-1.325.991-.991 1.267-2.402 1.325-3.678.058-1.28.07-1.688.07-4.947s-.012-3.667-.07-4.947c-.058-1.276-.334-2.687-1.325-3.678-.991-.991-2.402-1.267-3.678-1.325-1.28-.058-1.688-.07-4.947-.07z"/><circle cx="12" cy="12" r="3.5"/><circle cx="18.406" cy="5.594" r="1.44"/></svg>');
}

.social-icon.x {
    background-image: url('data:image/svg+xml;utf8,<svg fill="white" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.53 2.47a.75.75 0 0 1 1.06 1.06l-5.47 5.47 5.47 5.47a.75.75 0 0 1-1.06 1.06l-5.47-5.47-5.47 5.47a.75.75 0 0 1-1.06-1.06l5.47-5.47-5.47-5.47a.75.75 0 0 1 1.06-1.06l5.47 5.47 5.47-5.47z"/></svg>');
}

.navbar-lang select, .navbar-theme select {
    background: var(--primary-500);
    border: 1px solid rgba(26, 47, 73, 0.6);
    color: var(--text);
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 1rem;
    font-family: 'Raleway', Arial, sans-serif;
    outline: none;
    cursor: pointer;
    box-shadow: none;
}

/* Hamburger Menü */
.navbar-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 120;
  margin-left: 12px;
}
.navbar-hamburger span {
  display: block;
  width: 28px;
  height: 4px;
  background: var(--text);
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.3s;
}

.navbar-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 70vw;
  max-width: 320px;
  height: 100vh;
  background: var(--primary-500);
  box-shadow: -2px 0 16px 0 rgba(0,0,0,0.18);
  z-index: 200;
  padding-top: 80px;
  transition: transform 0.3s;
  transform: translateX(100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.navbar-mobile-menu.open {
  display: block;
  transform: translateX(0);
}
.navbar-mobile-menu ul {
  list-style: none;
  padding: 0 24px;
}
.navbar-mobile-menu li {
  margin-bottom: 28px;
}
.navbar-mobile-menu .nav-link {
  font-size: 1.2rem;
  color: var(--text);
  text-decoration: none;
  display: block;
  padding: 8px 0;
}

.navbar-mobile-social {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  justify-content: center;
}

.navbar-mobile-social img {
  width: 32px;
  height: 32px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.navbar-mobile-social img:hover {
  opacity: 1;
}

.navbar-mobile-lang {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.navbar-mobile-theme {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.navbar-mobile-lang select, .navbar-mobile-theme select {
  background: var(--primary-500);
  color: var(--text);
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 1rem;
  font-family: 'Raleway', Arial, sans-serif;
  outline: none;
  cursor: pointer;
  min-width: 120px;
}

/* Footer Stilleri */
.footer {
    background: var(--card);
    /* DarkThemeColors.cardBackground */
    color: var(--text);
    padding: 32px 0 0 0;
    font-family: 'Raleway', Arial, sans-serif;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    flex-wrap: wrap;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer-logo {
    width: 48px;
    height: auto;
    margin-bottom: 4px;
}

.footer-brand {
    font-family: 'Space Grotesk', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 4px;
}

.footer-privacy {
    color: var(--text);
    text-decoration: underline;
    font-size: 0.95rem;
    margin-top: 8px;
    cursor: pointer;
    transition: color 0.2s;
}

.footer-privacy:hover {
    color: var(--accent);
}

.footer-info {
    display: flex;
    gap: 48px;
}

.footer-title {
    font-family: 'Space Grotesk', Arial, sans-serif;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 4px;
}

.footer-location,
.footer-contact {
    font-size: 0.98rem;
    line-height: 1.5;
}

.footer-bottom {
    margin-top: 24px;
    text-align: center;
}

.footer-bottom hr {
    border: none;
    border-top: 1px solid #333;
    margin-bottom: 12px;
}

.footer-copyright {
    font-size: 0.95rem;
    color: #aaa;
    padding-bottom: 8px;
}

@media (max-width: 800px) {
    .footer-content {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .footer-info {
        gap: 24px;
    }
}

/* Contact Us Stilleri */
.contact-section {
    background: var(--bg);
    padding: 48px 0 32px 0;
    display: flex;
    justify-content: center;
}

.contact-container {
    display: flex;
    gap: 48px;
    max-width: 900px;
    width: 100%;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 0 24px;
}

.contact-left {
    flex: 1 1 260px;
    min-width: 220px;
}

.contact-left h2 {
    font-family: 'Space Grotesk', Arial, sans-serif;
    font-size: 2rem;
    margin-bottom: 12px;
}

.contact-left p {
    font-size: 1.05rem;
    color: var(--muted);
}

.contact-form {
    flex: 2 1 340px;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: var(--surface);
    padding: 24px 20px;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.08);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-row {
    display: flex;
    gap: 12px;
}

.contact-form input,
.contact-form textarea {
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 6px;
    padding: 10px 12px;
    color: var(--text);
    font-size: 1rem;
    font-family: 'Raleway', Arial, sans-serif;
    outline: none;
    resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
}

.contact-form textarea {
    min-height: 80px;
    max-width: 100%;
}

.contact-form label {
    font-size: 0.98rem;
    color: var(--muted);
    font-family: 'Space Grotesk', Arial, sans-serif;
}

.btn {
    font-family: 'Space Grotesk', Arial, sans-serif;
    font-size: 1.05rem;
    padding: 10px 0;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    min-width: 120px;
    margin-top: 8px;
    transition: background 0.2s, color 0.2s, border 0.2s;
}

.btn-primary {
    background: #ffffff;
    color: #0b294a;
    border: none;
}

.btn-primary:hover {
    background: #f3f4f6;
}

/* Açık temada butonları daha belirgin yap */
.theme-light .btn-primary { background: var(--accent); color: #ffffff; }
.theme-light .btn-primary:hover { background: var(--accent-2); }

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.45);
}

.theme-light .btn-secondary { color: var(--accent); border-color: var(--accent); }
.theme-light .btn-secondary:hover { background: rgba(37, 99, 235, 0.10); border-color: var(--accent-2); }

@media (max-width: 800px) {
    .contact-container {
        flex-direction: column;
        gap: 24px;
        align-items: stretch;
    }

    .contact-form {
        padding: 18px 8px;
    }
}

/* Hero Bölümü */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 0 32px 0;
    background: url('webImages/pexels-sean-whang-25006-804269.jpg') center center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
    will-change: transform;
}

.hero-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: var(--hero-overlay);
    z-index: 1;
    border-radius: 0;
}

.hero-section>* {
    position: relative;
    z-index: 2;
}

.hero-logo {
    width: 280px;
    height: auto;
    margin-bottom: 18px;
}

.hero-slogan {
    font-family: 'Space Grotesk', Arial, sans-serif;
    font-size: 2.8rem;
    font-weight: bold;
    color: var(--text);
    text-align: center;
    margin: 100px;
}

/* Açık tema: kahraman başlığını beyaz yap */
.theme-light .hero-slogan { color: #ffffff; }

/* Açık tema: etiket stilleri */
.theme-light .tag {
    background: #f1f5f9;
    color: #1e293b;
    border-color: #cbd5e1;
}

.theme-light .tag:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

/* Koyu tema: etiket stilleri */
.theme-dark .tag {
    background: #1e293b;
    color: #e2e8f0;
    border-color: #475569;
}

.theme-dark .tag:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

/* About Bölümü */
.about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 48px 0;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.about-img img {
    width: 600px;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.10);
    margin-top: 50px;
}

.about-content {
    max-width: 420px;
}

.about-content h2 {
    font-family: 'Space Grotesk', Arial, sans-serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.about-content p {
    font-size: 1.05rem;
    color: var(--muted);
    margin-bottom: 18px;
}

/* Our Productions */
.productions-section {
    background: var(--bg);
    padding: 48px 0;
    text-align: center;
}

.productions-section h2 {
    font-family: 'Space Grotesk', Arial, sans-serif;
    font-size: 1.5rem;
    margin-bottom: 32px;
}

.productions-cards {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.production-card {
    background: var(--card);
    border-radius: 14px;
    box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.08);
    padding: 0 0 24px 0;
    width: 320px;
    height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    cursor: pointer;
}

.production-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.production-card-image {
    width: 100%;
    height: 40%;
    min-height: 140px;
    max-height: 180px;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.production-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    margin: 0;
    display: block;
    transition: transform 0.3s ease;
}

.production-card:hover .production-card-image img {
    transform: scale(1.1);
}

.production-card h3 {
    font-family: 'Space Grotesk', Arial, sans-serif;
    font-size: 1.2rem;
    margin: 18px 0 8px 0;
}

.production-card p {
    font-size: 1.05rem;
    color: var(--muted);
    margin-bottom: 12px;
    margin-top: 0;
    padding: 0 18px;
}

/* Sadece Axolo-AI kartında metni kısalt ve sabit yükseklik uygula */
.card-axoloai p {
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    min-height: 96px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 12px 18px;
    justify-content: center;
}

.tag {
    background: var(--surface);
    color: var(--text);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.tag:hover {
    background: var(--accent);
    color: var(--text);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.production-card .btn {
    margin-top: auto;
}

/* Follow us on social */
.follow-section {
    background: var(--follow-bg);
    padding: 24px 0 16px 0;
    text-align: center;
    font-size: 1.05rem;
    color: var(--text);
}

.follow-section .navbar-social {
    justify-content: center;
    margin-top: 8px;
}

@media (max-width: 900px) {
    .about-section {
        flex-direction: column;
        gap: 24px;
        padding: 32px 0;
    }

    .productions-cards {
        gap: 18px;
    }
    .production-card {
        width: 95vw;
        min-width: 220px;
        max-width: 98vw;
        height: auto;
        min-height: 450px;
    }
    .production-card-image {
        min-height: 100px;
        max-height: 140px;
    }
    
    .project-tags {
        margin: 8px 12px;
    }
    
    .tag {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
    }
    
    /* Mobil cihazlarda etiket hover efektlerini basitleştir */
    .tag:hover {
        transform: none;
        box-shadow: none;
    }
    
    /* Mobil cihazlarda production card hover efektlerini basitleştir */
    .production-card:hover {
        transform: none;
        box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.08);
    }
    
    .production-card:hover .production-card-image img {
        transform: none;
    }
    
    /* Mobil cihazlarda parallax efektini devre dışı bırak */
    .hero-section,
    .fitai-hero-section,
    .aboutwho-section {
        background-attachment: scroll;
        will-change: auto;
    }
}

/* Fit-AI Sayfası */
.fitai-hero-section {
    background: url('webImages/pexels-goumbik-669578.jpg') center center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
    padding-bottom: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    will-change: transform;
}

.fitai-hero-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: var(--hero-overlay);
    z-index: 1;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* Koyu temada Fit-AI ve About sayfalarında karartma, açık temada hafif aydınlatma */
.theme-dark .fitai-hero-section::before { background: rgba(10, 20, 40, 0.60); }
.theme-dark .aboutwho-section::before { background: rgba(10, 20, 40, 0.60); }

.fitai-hero-section > * {
    position: relative;
    z-index: 2;
}

.fitai-title {
    font-family: 'Space Grotesk', Arial, sans-serif;
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 24px;
}

.fitai-screenshots {
    display: flex;
    gap: 48px;
    margin-bottom: 18px;
    flex-wrap: wrap;
    justify-content: center;
}

.fitai-screenshots img {
    width: 210px;
    height: 420px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.10);
}

.fitai-desc {
    font-size: 1.05rem;
    color: #ccc;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 18px auto;
}

.fitai-download {
    display: block;
    width: 220px;
    margin: 0 auto;
}

.fitai-download img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.10);
}

@media (max-width: 700px) {
    .fitai-screenshots {
        gap: 10px;
    }

    .fitai-screenshots img {
        width: 90px;
        height: 180px;
    }

    .fitai-download {
        width: 140px;
    }
}

/* About - Who we are Bölümü */
.aboutwho-section {
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
    position: relative;
    background: url('webImages/pexels-sean-whang-25006-804269.jpg') center center/cover no-repeat;
    background-attachment: fixed;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    will-change: transform;
}

.aboutwho-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 64px 0 48px 0;
    max-width: 1100px;
    width: 100%;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
    margin: 16px;
}

.aboutwho-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: var(--hero-overlay);
    z-index: 2;
    border-radius: 0;
}

.aboutwho-section > *:not(.aboutwho-inner) {
    position: relative;
    z-index: 3;
}

.aboutwho-content {
    flex: 1 1 320px;
    min-width: 220px;
    margin-top: 140px;
    margin-bottom: 140px;
}

.aboutwho-content h2 {
    font-family: 'Space Grotesk', Arial, sans-serif;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

/* Açık tema: "Biz Kimiz" başlığını beyaz yap */
.theme-light .aboutwho-content h2 { color: #ffffff; }

.aboutwho-content p {
    font-size: 1.05rem;
    color: #ccc;
}

.aboutwho-img {
    flex: 1 1 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aboutwho-img img {
    width: 600px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.10);
}

@media (max-width: 900px) {
    .aboutwho-section {
        flex-direction: column;
        gap: 24px;
        padding: 32px 0 18px 0;
    }
}

.social-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    display: inline-block;
    margin: 0 12px;
    transition: filter 0.2s, transform 0.2s;
    vertical-align: middle;
}

.social-img:hover { filter: brightness(1.2) drop-shadow(0 0 6px var(--accent)); transform: scale(1.08); }

.social-img-navbar {
    width: 26px;
    height: 26px;
    object-fit: contain;
    display: inline-block;
    margin: 0 2px;
    transition: filter 0.2s, transform 0.2s;
    vertical-align: middle;
}

.social-img-navbar:hover { filter: brightness(1.2) drop-shadow(0 0 6px var(--accent)); transform: scale(1.08); }

/* Açık tema: sosyal medya ikonlarında 'light' görselleri kullan */
.theme-light img.social-img-navbar[alt="Instagram"],
.theme-light .navbar-mobile-social img[alt="Instagram"],
.theme-light img.social-img[alt="Instagram"] {
  content: url('webImages/wired-outline-2542-logo-instagram-hover-pinch-light.png');
}

.theme-light img.social-img-navbar[alt="LinkedIn"],
.theme-light .navbar-mobile-social img[alt="LinkedIn"],
.theme-light img.social-img[alt="LinkedIn"] {
  content: url('webImages/wired-outline-2677-logo-square-linkedin-hover-pinch-light.png');
}

.theme-light img.social-img-navbar[alt="X"],
.theme-light .navbar-mobile-social img[alt="X"],
.theme-light img.social-img[alt="X"] {
  content: url('webImages/wired-outline-2728-logo-square-x-hover-pinch-light.png');
}

a.btn,
a.btn-secondary {
    text-decoration: none;
    display: inline-block;
    padding: 10px 0;
    border-radius: 6px;
    font-family: 'Space Grotesk', Arial, sans-serif;
    font-size: 1.05rem;
    min-width: 120px;
    text-align: center;
    margin-top: 8px;
    transition: background 0.2s, color 0.2s, border 0.2s;
}

a.btn-primary {
    text-decoration: none;
    display: inline-block;
    padding: 10px 0;
    border-radius: 6px;
    border: none;
    font-family: 'Space Grotesk', Arial, sans-serif;
    font-size: 1.05rem;
    min-width: 120px;
    text-align: center;
    margin-top: 8px;
    transition: background 0.2s, color 0.2s, border 0.2s;
}

@media (max-width: 900px) {
  .navbar-center {
    justify-content: flex-end;
  }
  .navbar-menu {
    display: none;
  }
  .navbar-hamburger {
    display: flex;
  }
  .navbar-mobile-menu {
    display: block;
  }
  .navbar-right {
    display: none;
  }
}

@media (max-width: 700px) {
  .about-section {
    max-width: 90vw !important;
    margin: 0 auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .about-content, .about-img img {
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .productions-cards {
    max-width: 90vw !important;
    margin: 0 auto !important;
  }
  .production-card {
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .contact-section, .contact-container {
    max-width: 90vw !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .form-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
  }
  .form-row input {
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }
  .aboutwho-content {
    max-width: 90vw !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .aboutwho-img img {
    max-width: 90vw !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
  }
  .aboutwho-section, .aboutwho-inner {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .production-card {
    width: 98vw !important;
    min-width: 0 !important;
    max-width: 100vw !important;
    height: auto !important;
    margin-bottom: 16px !important;
  }
  .production-card-image {
    min-height: 90px !important;
    max-height: 120px !important;
  }
  .fitai-title {
    font-size: 2rem !important;
  }
  .fitai-screenshots img {
    width: 90vw !important;
    height: auto !important;
    max-width: 320px !important;
    margin: 0 auto !important;
  }
  .fitai-download {
    width: 90vw !important;
    max-width: 220px !important;
  }
  .footer-content {
    flex-direction: column !important;
    gap: 16px !important;
    padding: 0 8px !important;
  }
  .footer-info {
    gap: 12px !important;
  }
  .footer-logo {
    width: 38px !important;
  }
}

/* Fit-AI Video Bölümü */
.fitai-video-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 48px 0 32px 0;
}
.fitai-video-title {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 16px auto;
  text-align: left;
  padding-left: 24px;
  box-sizing: border-box;
}
.fitai-video-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media (max-width: 900px) {
  .fitai-video-title, .fitai-video-container {
    max-width: 90vw;
    padding-left: 4vw;
    padding-right: 4vw;
  }
  .fitai-video-title {
    font-size: 1.2rem;
  }
  .fitai-video-container iframe {
    height: 220px;
  }
}