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

:root {
  --bg-dark: #0b0b0f;
  --text-light: #f5f3ee;
  --accent: #f2c46d;
  --muted: #b3a89a;
  --card-bg: rgba(10, 10, 15, 0.85);
  --font-title: "Playfair Display", serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  cursor: none; /* custom cursor için */
}

/* Mouse */

.custom-cursor {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 99999;
  background: url("../images/mouse.jpeg") center/cover no-repeat;
  mix-blend-mode: difference;
}

/* HERO */

.hero {
  position: relative;
  min-height: 100vh;
  background-image: url('../images/IMG_7495.JPG');
  backdrop-filter: brightness(1);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  background-attachment: fixed;
}

.hero-image {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.85));
}

/* NAV */

.nav {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 7vw;
}

.logo {
  letter-spacing: 0.2em;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.nav nav a {
  margin-left: 24px;
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  position: relative;
}

.nav nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background-color: var(--accent);
  transition: width 0.25s ease;
}

.nav nav a:hover::after {
  width: 100%;
}

/* HERO CONTENT */

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 7vw 10vh;
  margin-top: 185px;
}
.hero-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% -180%;
  transform: scale(1.55) translateX(70px); /* sola kaydırma */
  transition: transform 0.35s ease;
  border: 4px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  background: rgba(0,0,0,0.10);
}

.hero-image:hover {
  transform: scale(2.45) translateX(20px); /* hover’da büyür ama kayma bozulmaz */
}




.hero-text {
  max-width: 720px;
  padding: 48px 52px;
  border-radius: 22px;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background-color: rgba(0, 0, 0, 0.15);
}

.hero-text h1 {
  font-family: var(--font-title);
  font-size: clamp(3.4rem, 5vw, 4rem);
  line-height: 1.02;
  margin-bottom: 24px;
  letter-spacing: 0.09em;
  font-weight: 700;
}

.hero-text p {
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.75;
  max-width: 650px;
  margin-bottom: 32px;
  opacity: 0.92;
}

.hero-text button {
  padding: 14px 34px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: var(--accent);
  color: #1b1307;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.hero-text button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
  background: #ffd27f;
}

/* TABLE OF CONTENTS */
.hero-right {
  position: absolute;
  top: 54%;
  right: 150px;
  transform: translateY(-50%);
  width: 240px;
}

/* Daha eski kitap stili */
.toc h2 {
  text-align: left;
  margin-bottom: 14px;
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: normal;
  color: whitesmoke;
  font-size: 18px;
  letter-spacing: 0.3px;
  opacity: 0.85;
}

.toc-item {
  display: flex;
  justify-content: space-between;
  padding: 18px 0px; /* daha dar aralık */
  border-bottom: 1px dotted #777; /* daha soluk çizgi */
  font-size: 17px;
  font-family: "Georgia", "Times New Roman", serif;
  color: whitesmoke;
}



/* SECTIONS */

.section {
  padding: 100px 7vw;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* parallax */
}


.section h2 {
  font-family: var(--font-title);
  font-size: 2.2rem;
  margin-bottom: 24px;
}

.section p {
  max-width: 640px;
  color: whitesmoke;
}

/* Ana container */
#skills-services {
  position: relative;
  overflow: hidden;
}

/* 1) Parallax arka plan */
#skills-services::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url('../images/IMG_7495.JPG');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  background-attachment: fixed; /* JS’siz parallax */

  z-index: 0;
}

/* 2) Blur + hue rotate layer */
#skills-services::after {
  content: "";
  position: absolute;
  inset: 0;

  backdrop-filter: blur(3px);
  filter: hue-rotate(90deg) brightness(0.85);

  z-index: 1;
  pointer-events: none;
}

/* 3) İçerik en üstte */
#skills-services > * {
  position: relative;
  z-index: 2;
}




/* SKILLS + SERVICES birleşmiş section arka planı */

/* Kartların daha şık görünmesi için transparan arka plan */
.skill-card {
  background: rgba(255, 255, 255, 0.15); /* yarı transparan */
  backdrop-filter: blur(3px);            /* cam efekti */
  padding: 16px 20px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;                           /* karanlık fotoğraflarda okunabilirlik */
}

.skills-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  padding-bottom: 50px;
}

/* SERVICES */

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

.service-card {
  background: rgba(255, 255, 255, 0.15); /* transparan cam efekti */
  backdrop-filter: blur(6px);
  padding: 24px 26px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}


/* FEATURED PROJECT */

#featured h2 {
  text-align: left;
  width: 100%;
  padding-left: 50px; /* margin yerine padding daha stabil */
}


#featured {
  position: relative;
  overflow: hidden;
  padding: 80px;
}


/* 1) Parallax arka plan */
#featured::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url('../images/IMG_7495.JPG');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  background-attachment: fixed; /* JS’siz parallax */

  z-index: 0;
}

#featured::after {
  content: "";
  position: absolute;
  inset: 0;

  backdrop-filter: blur(3px);
  background: rgba(0,0,0,0.35);
  filter: brightness(0.99);

  z-index: 1;
  pointer-events: none;
}

#featured * {
  position: relative;
  z-index: 2;
}


.featured-wrapper {
  margin-top: 32px;
  display: flex;
  gap: 32px;
  align-items: center;

  padding: 32px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
}

.featured-img {
  width: 50%;
  border-radius: 16px;
  border: 2px solid rgba(255,255,255,0.3);
}

.featured-text {
  max-width: 480px;
}

.featured-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 22px;
  background: var(--accent);
  color: #1b1307;
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 600;
}


/* PROJECTS — OFFSET HORIZONTAL BLOCKS */

#projects {
  position: relative; /* BUNU EKLEMEN GEREKİYOR */
  background-image: url('../images/tree1.jpg'); /* kendi görsel yolunu yaz */
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
  filter: brightness(0.99); /* renk tonunu değiştir ve biraz karart */
}

#projects::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55); /* sadece arka plan kararır */
  z-index: -1;
  backdrop-filter: blur(3px); /* arka plan bulanıklaşır, içerik etkilenmez */
}



.project-info h3 {
  font-size: 4rem;                 /* daha da büyük */
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  font-family: "Playfair Display", serif; /* editorial premium */
  margin-bottom: 14px;
}

/* AÇIKLAMA — KÜÇÜK, TEMİZ, OKUNAKLI */
.project-info p {
  font-size: 1.2rem;               /* biraz büyüttüm ama hala küçük */
  opacity: 0.85;
  line-height: 1.75;
  max-width: 520px;
  font-family: "Inter", sans-serif;
}

.projects-list {
  display: flex;
  flex-direction: column;
  gap: 40px;   /* önce 120 idi → şimdi çok daha geniş */
  margin-top: 100px;
}


.project-row {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Fotoğraflar aynı boyutta */
.project-thumb {
  width: 700px;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
  flex-shrink: 0;

  transition: transform .35s ease, box-shadow .35s ease; /* EKLENECEK */
  cursor: pointer; /* EKLENECEK */
}

.project-thumb:hover {
  transform: scale(1.06); /* büyüme efekti */
  box-shadow: 0 12px 28px rgba(0,0,0,0.25); /* hafif glow */
}

.project-row:nth-child(1) { margin-left: 0; }
.project-row:nth-child(2) { margin-left: 120px; }
.project-row:nth-child(3) { margin-left: 260px; }
.project-row:nth-child(4) { margin-left: 180px; }
.project-row:nth-child(5) { margin-left: 80px; }
.project-row:nth-child(6) { margin-left: 40px; }


.project-row:nth-child(even) {
  flex-direction: row-reverse;
}

/* IMAGE MODAL */
.image-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.image-modal.show {
  display: flex;
}

.image-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}

.image-modal-content {
  position: relative;
  max-width: 85vw;
  max-height: 85vh;
  z-index: 10000;
}

.image-modal-content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}


/* ==========================================
   TOOLS + CONTACT — TEK BÜYÜK SECTION
   ========================================== */

#tools-contact {
  position: relative;
  overflow: hidden;
  padding: 120px 7vw;
  color: #fff;

  background-image: url('../images/IMG_7495.JPG');
  background-size: cover;
  background-position: center;
}

/* Hafif karartma overlay */
#tools-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 0;
}

/* İçerik önde */
#tools-contact > * {
  position: relative;
  z-index: 1;
}

/* Büyük başlık */
.big-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

/* Alt başlık */
.subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 600px;
}

/* TOOLS GRID */
.tools-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.tool-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  padding: 14px 18px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
}

/* CONTACT */
.contact-title {
  margin-top: 80px;
  font-size: 1.8rem;
  font-weight: 600;
}

.social-links {

  margin-top: 42px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;

}

.social-links a {
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  transition: 0.25s ease;
  margin-top: 50px;
}

.social-links a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* CONTACT FORM */
.contact-form {
  margin-top: 32px;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 10px 12px;
  color: #fff;
}

.contact-form button {
  align-self: flex-start;
  padding: 10px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: #ffd34d;
  color: #1b1307;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


.form-status {
    margin-top: 15px;
    font-size: 16px;
    padding: 12px;
    border-radius: 6px;
    display: none;
}

.form-status.success {
    display: block;
    background: linear-gradient(135deg, #e8f8f0, #d6f3e4);
    color: #1b5e20;
    border-left: 4px solid #2e7d4f;
    padding: 14px 18px;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    animation: fadeIn 0.4s ease-out;
}


.form-status.error {
    display: block;
    background: linear-gradient(135deg, #fbe9e7, #f8bbd0);
    color: #c62828;
    border-left: 4px solid #d32f2f;
    padding: 14px 18px;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}





/*VIDEO*/
.section-video {
  position: relative;
  overflow: hidden;
}


.section-video .video-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.section-video video {
  width: 100%;
  height: 100%;
  object-fit: contain; /* kırpma yok */
  background: black;   /* boşlukları doldurur */
   filter: hue-rotate(300deg) brightness(1); /* renk tonunu değiştir ve biraz karart */
}


.section-video .video-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 60px 0;


}


.section-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.40);
  backdrop-filter: blur(1px);
  z-index: 1;
}



/* FOOTER */

.footer {
  padding: 24px 7vw 32px;
  text-align: center;
  font-size: 0.8rem;
  color: #7f7f8a;
}


/* RESPONSIVE DESIGN */

 @media (max-width: 600px) {

  /* HEADER */
 .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 14px; /* biraz daha ince */
    z-index: 10;
    position: relative;
}

.logo {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 500;
}

.nav a {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 500;
}



  /* HERO GENEL */
.hero {
    padding: 16px 14px 32px;
    position: relative;
}

/* FOTOĞRAF TAMAMEN KALDIR */
.hero-image {
    display: none !important;
}

/* CONTENTS — ORTADA, AŞAĞIDA, TAM SAYDAM, DAHA SIKI */
.hero-right {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100px;        /* biraz daha aşağı */
    z-index: 5;
}

.toc {
    background: transparent !important; /* TAM SAYDAM */
    backdrop-filter: none !important;   /* blur yok */
    padding: 4px 6px;                   /* daha sıkı */
    border-radius: 0;                   /* kutu görünümü tamamen gitti */
    font-size: 12px;
    text-align: center;
    line-height: 1.1;                   /* yükseklik sıkılaştırıldı */
}

.toc h2 {
    font-size: 12px;
    margin-bottom: 2px;                 /* daha yakın */
    line-height: 1.1;
}

.toc-item span {
    font-size: 12px;
    line-height: 1.1;                   /* satırlar birbirine yakın */
}



/* HERO TEXT — SOLDA, AŞAĞI ALINDI, KÜÇÜK */
.hero-content {
    margin-top: 425px;   /* CONTENTS ORTADA OLDUĞU İÇİN DAHA AŞAĞI İNDİRİLDİ */
    padding-right: 0;
    z-index: 6;
    position: relative;
}

.hero-text{
    text-align: left;
    padding: 24px 10px;
    max-width: 90%;
    font-size: 12px;      /* biraz daha dar, daha premium */
     margin-left: auto;   /* ORTALAMA */
    margin-right: auto;  /* ORTALAMA */
}

.hero-text h1 {
    font-size: 20px;     /* bir tık daha küçük */
    line-height: 1.2;
    margin-bottom: 5px;
}

.hero-text p {
    font-size: 15px;    /* küçültüldü */
    line-height: 1.32;
    margin-bottom: 8px;
}

#contactBtn {
    font-size: 10px;    /* küçültüldü */
    padding: 10px 15px;
}


   /* ABOUT */
.about-section {
    padding: 24px 10px;   /* hero ile aynı premium spacing */
    text-align: left;     /* mobilde daha doğal görünür */
    max-width: 90%;       /* hero ile aynı genişlik */
    margin: 0 auto;       /* ortaya al */
}

.about-section h2 {
    font-size: 17px;      /* hero h1 ile aynı boyut standardı */
    margin-bottom: 6px;   /* hero spacing ile uyumlu */
    line-height: 1.2;
}

.about-section p {
    font-size: 10px;      /* hero paragraf ile aynı */
    line-height: 1.32;    /* hero ile aynı */
}


/* ABOUT SECTION (VIDEO BACKGROUND) */
.section-video {
    position: relative;
    overflow: hidden;
    padding: 0; /* video tam ekran olsun diye padding kaldırıldı */
    height: 420px; /* mobil için premium yükseklik */
}

/* VIDEO TAM EKRAN */
.section-video .video-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.section-video video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* videoyu tam ekran doldurur */
    object-position: center;
    filter: brightness(0.55); /* yazılar daha okunur */
}
.section-video .video-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
    text-align: center;
    padding: 0 10px; /* kenarlardan biraz boşluk */
}

/* FEATURED IMAGE */

.featured-img {
  width: 100%;
  height: 250px;         /* mobilde tam genişlik */
  max-width: 360px;         /* premium sınır, çok büyümesin */
  margin: 0 auto;           /* ortala */
  display: block;
  border-radius: 16px;
  border: 2px solid rgba(255,255,255,0.3);
}

    /* PROJECTS — MOBILE FIX */


  .projects-list {
    padding: 24px 10px;
    gap: 30px;
  }

  .project-row {
    display: flex;
    flex-direction: column;   /* resim + yazı alt alta */
    gap: 12px;
  }

  .project-thumb {
    width: 95%;
    height: auto;
    border-radius: 12px;
  }

  .project-info h3 {
    font-size: 17px;          /* ABOUT ve HERO ile aynı */
    margin-bottom: 4px;
    line-height: 1.2;
  }

  .project-info p {
    font-size: 12px;          /* senin yeni standardın */
    line-height: 1.32;
  }


    /* CONTACT */
    .contact-section {
        display: block;
        padding: 40px 5vw;
        text-align: center;
    }

    .contact-section h2 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .contact-section p {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .contact-section button {
        font-size: 12px;
        padding: 8px 18px;
    }

    /* FOOTER */
    footer {
        font-size: 11px;
        padding: 16px 0;
        text-align: center;
    }
}


@media (min-width: 600px) and (max-width: 780px) {

 /* HEADER */
 .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 14px; /* biraz daha ince */
    z-index: 10;
    position: relative;
}

.logo {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 500;
}

.nav a {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 500;
}



  /* HERO GENEL */
.hero {
    padding: 16px 14px 32px;
    position: relative;
}

/* FOTOĞRAF TAMAMEN KALDIR */
.hero-image {
    display: none !important;
}

/* CONTENTS — ORTADA, AŞAĞIDA, TAM SAYDAM, DAHA SIKI */
.hero-right {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100px;        /* biraz daha aşağı */
    z-index: 5;
}

.toc {
    background: transparent !important; /* TAM SAYDAM */
    backdrop-filter: none !important;   /* blur yok */
    padding: 4px 6px;                   /* daha sıkı */
    border-radius: 0;                   /* kutu görünümü tamamen gitti */
    font-size: 12px;
    text-align: center;
    line-height: 1.1;                   /* yükseklik sıkılaştırıldı */
}

.toc h2 {
    font-size: 12px;
    margin-bottom: 2px;                 /* daha yakın */
    line-height: 1.1;
}

.toc-item span {
    font-size: 12px;
    line-height: 1.1;                   /* satırlar birbirine yakın */
}



/* HERO TEXT — SOLDA, AŞAĞI ALINDI, KÜÇÜK */
.hero-content {
    margin-top: 425px;   /* CONTENTS ORTADA OLDUĞU İÇİN DAHA AŞAĞI İNDİRİLDİ */
    padding-right: 0;
    z-index: 6;
    position: relative;
}

.hero-text{
    text-align: left;
    padding: 24px 10px;
    max-width: 90%;
    font-size: 12px;      /* biraz daha dar, daha premium */
     margin-left: auto;   /* ORTALAMA */
    margin-right: auto;  /* ORTALAMA */
}

.hero-text h1 {
    font-size: 20px;     /* bir tık daha küçük */
    line-height: 1.2;
    margin-bottom: 5px;
}

.hero-text p {
    font-size: 15px;    /* küçültüldü */
    line-height: 1.32;
    margin-bottom: 8px;
}

#contactBtn {
    font-size: 10px;    /* küçültüldü */
    padding: 10px 15px;
}


   /* ABOUT */
.about-section {
    padding: 24px 10px;   /* hero ile aynı premium spacing */
    text-align: left;     /* mobilde daha doğal görünür */
    max-width: 90%;       /* hero ile aynı genişlik */
    margin: 0 auto;       /* ortaya al */
}

.about-section h2 {
    font-size: 17px;      /* hero h1 ile aynı boyut standardı */
    margin-bottom: 6px;   /* hero spacing ile uyumlu */
    line-height: 1.2;
}

.about-section p {
    font-size: 10px;      /* hero paragraf ile aynı */
    line-height: 1.32;    /* hero ile aynı */
}


/* ABOUT SECTION (VIDEO BACKGROUND) */
.section-video {
    position: relative;
    overflow: hidden;
    padding: 0; /* video tam ekran olsun diye padding kaldırıldı */
    height: 420px; /* mobil için premium yükseklik */
}

/* VIDEO TAM EKRAN */
.section-video .video-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.section-video video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* videoyu tam ekran doldurur */
    object-position: center;
    filter: brightness(0.55); /* yazılar daha okunur */
}
.section-video .video-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
    text-align: center;
    padding: 0 10px; /* kenarlardan biraz boşluk */
}

/* FEATURED IMAGE */

.featured-img {
  width: 100%;
  height: 250px;         /* mobilde tam genişlik */
  max-width: 360px;         /* premium sınır, çok büyümesin */
  margin: 0 auto;           /* ortala */
  display: block;
  border-radius: 16px;
  border: 2px solid rgba(255,255,255,0.3);
}

    /* PROJECTS — MOBILE FIX */


  .projects-list {
    padding: 24px 10px;
    gap: 30px;
  }

  .project-row {
    display: flex;
    flex-direction: column;   /* resim + yazı alt alta */
    gap: 12px;
  }

  .project-thumb {
    width: 95%;
    height: auto;
    border-radius: 12px;
  }

  .project-info h3 {
    font-size: 17px;          /* ABOUT ve HERO ile aynı */
    margin-bottom: 4px;
    line-height: 1.2;
  }

  .project-info p {
    font-size: 12px;          /* senin yeni standardın */
    line-height: 1.32;
  }


    /* CONTACT */
    .contact-section {
        display: block;
        padding: 40px 5vw;
        text-align: center;
    }

    .contact-section h2 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .contact-section p {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .contact-section button {
        font-size: 12px;
        padding: 8px 18px;
    }

    /* FOOTER */
    footer {
        font-size: 11px;
        padding: 16px 0;
        text-align: center;
    }

}

@media (min-width: 780px) and (max-width: 1100px) {

    /* HEADER */
 .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 14px; /* biraz daha ince */
    z-index: 10;
    position: relative;
}

.logo {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 500;
}

.nav a {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 500;
}



  /* HERO GENEL */
.hero {
    padding: 16px 14px 32px;
    position: relative;
}

/* FOTOĞRAF TAMAMEN KALDIR */
.hero-image {
    display: none !important;
}

/* CONTENTS — ORTADA, AŞAĞIDA, TAM SAYDAM, DAHA SIKI */
.hero-right {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100px;        /* biraz daha aşağı */
    z-index: 5;
}

.toc {
    background: transparent !important; /* TAM SAYDAM */
    backdrop-filter: none !important;   /* blur yok */
    padding: 4px 6px;                   /* daha sıkı */
    border-radius: 0;                   /* kutu görünümü tamamen gitti */
    font-size: 12px;
    text-align: center;
    line-height: 1.1;                   /* yükseklik sıkılaştırıldı */
}

.toc h2 {
    font-size: 12px;
    margin-bottom: 2px;                 /* daha yakın */
    line-height: 1.1;
}

.toc-item span {
    font-size: 12px;
    line-height: 1.1;                   /* satırlar birbirine yakın */
}



/* HERO TEXT — SOLDA, AŞAĞI ALINDI, KÜÇÜK */
.hero-content {
    margin-top: 425px;   /* CONTENTS ORTADA OLDUĞU İÇİN DAHA AŞAĞI İNDİRİLDİ */
    padding-right: 0;
    z-index: 6;
    position: relative;
}

.hero-text{
    text-align: left;
    padding: 24px 10px;
    max-width: 90%;
    font-size: 12px;      /* biraz daha dar, daha premium */
     margin-left: auto;   /* ORTALAMA */
    margin-right: auto;  /* ORTALAMA */
}

.hero-text h1 {
    font-size: 20px;     /* bir tık daha küçük */
    line-height: 1.2;
    margin-bottom: 5px;
}

.hero-text p {
    font-size: 15px;    /* küçültüldü */
    line-height: 1.32;
    margin-bottom: 8px;
}

#contactBtn {
    font-size: 10px;    /* küçültüldü */
    padding: 10px 15px;
}


   /* ABOUT */
.about-section {
    padding: 24px 10px;   /* hero ile aynı premium spacing */
    text-align: left;     /* mobilde daha doğal görünür */
    max-width: 90%;       /* hero ile aynı genişlik */
    margin: 0 auto;       /* ortaya al */
}

.about-section h2 {
    font-size: 17px;      /* hero h1 ile aynı boyut standardı */
    margin-bottom: 6px;   /* hero spacing ile uyumlu */
    line-height: 1.2;
}

.about-section p {
    font-size: 10px;      /* hero paragraf ile aynı */
    line-height: 1.32;    /* hero ile aynı */
}


/* ABOUT SECTION (VIDEO BACKGROUND) */
.section-video {
    position: relative;
    overflow: hidden;
    padding: 0; /* video tam ekran olsun diye padding kaldırıldı */
    height: 420px; /* mobil için premium yükseklik */
}

/* VIDEO TAM EKRAN */
.section-video .video-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.section-video video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* videoyu tam ekran doldurur */
    object-position: center;
    filter: brightness(0.55); /* yazılar daha okunur */
}
.section-video .video-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
    text-align: center;
    padding: 0 10px; /* kenarlardan biraz boşluk */
}

/* FEATURED IMAGE */

.featured-img {
  width: 100%;
  height: 250px;         /* mobilde tam genişlik */
  max-width: 360px;         /* premium sınır, çok büyümesin */
  margin: 0 auto;           /* ortala */
  display: block;
  border-radius: 16px;
  border: 2px solid rgba(255,255,255,0.3);
}

    /* PROJECTS — MOBILE FIX */


  .projects-list {
    padding: 24px 10px;
    gap: 30px;
  }

  .project-row {
    display: flex;
    flex-direction: column;   /* resim + yazı alt alta */
    gap: 12px;
  }

  .project-thumb {
    width: 95%;
    height: auto;
    border-radius: 12px;
  }

  .project-info h3 {
    font-size: 17px;          /* ABOUT ve HERO ile aynı */
    margin-bottom: 4px;
    line-height: 1.2;
  }

  .project-info p {
    font-size: 12px;          /* senin yeni standardın */
    line-height: 1.32;
  }


    /* CONTACT */
    .contact-section {
        display: block;
        padding: 40px 5vw;
        text-align: center;
    }

    .contact-section h2 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .contact-section p {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .contact-section button {
        font-size: 12px;
        padding: 8px 18px;
    }

    /* FOOTER */
    footer {
        font-size: 11px;
        padding: 16px 0;
        text-align: center;
    }
}

@media (min-width: 1100px) and (max-width: 1200px) {

    /* HEADER */
 .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 14px; /* biraz daha ince */
    z-index: 10;
    position: relative;
}

.logo {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 500;
}

.nav a {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 500;
}



  /* HERO GENEL */
.hero {
    padding: 16px 14px 32px;
    position: relative;
}

/* FOTOĞRAF TAMAMEN KALDIR */
.hero-image {
    display: none !important;
}

/* CONTENTS — ORTADA, AŞAĞIDA, TAM SAYDAM, DAHA SIKI */
.hero-right {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100px;        /* biraz daha aşağı */
    z-index: 5;
}

.toc {
    background: transparent !important; /* TAM SAYDAM */
    backdrop-filter: none !important;   /* blur yok */
    padding: 4px 6px;                   /* daha sıkı */
    border-radius: 0;                   /* kutu görünümü tamamen gitti */
    font-size: 12px;
    text-align: center;
    line-height: 1.1;                   /* yükseklik sıkılaştırıldı */
}

.toc h2 {
    font-size: 12px;
    margin-bottom: 2px;                 /* daha yakın */
    line-height: 1.1;
}

.toc-item span {
    font-size: 12px;
    line-height: 1.1;                   /* satırlar birbirine yakın */
}



/* HERO TEXT — SOLDA, AŞAĞI ALINDI, KÜÇÜK */
.hero-content {
    margin-top: 425px;   /* CONTENTS ORTADA OLDUĞU İÇİN DAHA AŞAĞI İNDİRİLDİ */
    padding-right: 0;
    z-index: 6;
    position: relative;
}

.hero-text{
    text-align: left;
    padding: 24px 10px;
    max-width: 90%;
    font-size: 12px;      /* biraz daha dar, daha premium */
     margin-left: auto;   /* ORTALAMA */
    margin-right: auto;  /* ORTALAMA */
}

.hero-text h1 {
    font-size: 20px;     /* bir tık daha küçük */
    line-height: 1.2;
    margin-bottom: 5px;
}

.hero-text p {
    font-size: 15px;    /* küçültüldü */
    line-height: 1.32;
    margin-bottom: 8px;
}

#contactBtn {
    font-size: 10px;    /* küçültüldü */
    padding: 10px 15px;
}


   /* ABOUT */
.about-section {
    padding: 24px 10px;   /* hero ile aynı premium spacing */
    text-align: left;     /* mobilde daha doğal görünür */
    max-width: 90%;       /* hero ile aynı genişlik */
    margin: 0 auto;       /* ortaya al */
}

.about-section h2 {
    font-size: 17px;      /* hero h1 ile aynı boyut standardı */
    margin-bottom: 6px;   /* hero spacing ile uyumlu */
    line-height: 1.2;
}

.about-section p {
    font-size: 10px;      /* hero paragraf ile aynı */
    line-height: 1.32;    /* hero ile aynı */
}


/* ABOUT SECTION (VIDEO BACKGROUND) */
.section-video {
    position: relative;
    overflow: hidden;
    padding: 0; /* video tam ekran olsun diye padding kaldırıldı */
    height: 420px; /* mobil için premium yükseklik */
}

/* VIDEO TAM EKRAN */
.section-video .video-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.section-video video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* videoyu tam ekran doldurur */
    object-position: center;
    filter: brightness(0.55); /* yazılar daha okunur */
}
.section-video .video-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
    text-align: center;
    padding: 0 10px; /* kenarlardan biraz boşluk */
}

/* FEATURED IMAGE */

.featured-img {
  width: 100%;
  height: 250px;         /* mobilde tam genişlik */
  max-width: 360px;         /* premium sınır, çok büyümesin */
  margin: 0 auto;           /* ortala */
  display: block;
  border-radius: 16px;
  border: 2px solid rgba(255,255,255,0.3);
}

    /* PROJECTS — MOBILE FIX */


  .projects-list {
    padding: 24px 10px;
    gap: 30px;
  }

  .project-row {
    display: flex;
    flex-direction: column;   /* resim + yazı alt alta */
    gap: 12px;
  }

  .project-thumb {
    width: 95%;
    height: auto;
    border-radius: 12px;
  }

  .project-info h3 {
    font-size: 17px;          /* ABOUT ve HERO ile aynı */
    margin-bottom: 4px;
    line-height: 1.2;
  }

  .project-info p {
    font-size: 12px;          /* senin yeni standardın */
    line-height: 1.32;
  }


    /* CONTACT */
    .contact-section {
        display: block;
        padding: 40px 5vw;
        text-align: center;
    }

    .contact-section h2 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .contact-section p {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .contact-section button {
        font-size: 12px;
        padding: 8px 18px;
    }

    /* FOOTER */
    footer {
        font-size: 11px;
        padding: 16px 0;
        text-align: center;
    }

}


@media (min-width: 1200px) and (max-width: 1400px) {

/* HEADER */
 .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 14px; /* biraz daha ince */
    z-index: 10;
    position: relative;
}

.logo {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 500;
}

.nav a {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 500;
}



  /* HERO GENEL */
.hero {
    padding: 16px 14px 32px;
    position: relative;
}

/* FOTOĞRAF TAMAMEN KALDIR */
.hero-image {
    display: none !important;
}

/* CONTENTS — ORTADA, AŞAĞIDA, TAM SAYDAM, DAHA SIKI */
.hero-right {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100px;        /* biraz daha aşağı */
    z-index: 5;
}

.toc {
    background: transparent !important; /* TAM SAYDAM */
    backdrop-filter: none !important;   /* blur yok */
    padding: 4px 6px;                   /* daha sıkı */
    border-radius: 0;                   /* kutu görünümü tamamen gitti */
    font-size: 12px;
    text-align: center;
    line-height: 1.1;                   /* yükseklik sıkılaştırıldı */
}

.toc h2 {
    font-size: 12px;
    margin-bottom: 2px;                 /* daha yakın */
    line-height: 1.1;
}

.toc-item span {
    font-size: 12px;
    line-height: 1.1;                   /* satırlar birbirine yakın */
}



/* HERO TEXT — SOLDA, AŞAĞI ALINDI, KÜÇÜK */
.hero-content {
    margin-top: 425px;   /* CONTENTS ORTADA OLDUĞU İÇİN DAHA AŞAĞI İNDİRİLDİ */
    padding-right: 0;
    z-index: 6;
    position: relative;
}

.hero-text{
    text-align: left;
    padding: 24px 10px;
    max-width: 90%;
    font-size: 12px;      /* biraz daha dar, daha premium */
     margin-left: auto;   /* ORTALAMA */
    margin-right: auto;  /* ORTALAMA */
}

.hero-text h1 {
    font-size: 20px;     /* bir tık daha küçük */
    line-height: 1.2;
    margin-bottom: 5px;
}

.hero-text p {
    font-size: 15px;    /* küçültüldü */
    line-height: 1.32;
    margin-bottom: 8px;
}

#contactBtn {
    font-size: 10px;    /* küçültüldü */
    padding: 10px 15px;
}


   /* ABOUT */
.about-section {
    padding: 24px 10px;   /* hero ile aynı premium spacing */
    text-align: left;     /* mobilde daha doğal görünür */
    max-width: 90%;       /* hero ile aynı genişlik */
    margin: 0 auto;       /* ortaya al */
}

.about-section h2 {
    font-size: 17px;      /* hero h1 ile aynı boyut standardı */
    margin-bottom: 6px;   /* hero spacing ile uyumlu */
    line-height: 1.2;
}

.about-section p {
    font-size: 10px;      /* hero paragraf ile aynı */
    line-height: 1.32;    /* hero ile aynı */
}


/* ABOUT SECTION (VIDEO BACKGROUND) */
.section-video {
    position: relative;
    overflow: hidden;
    padding: 0; /* video tam ekran olsun diye padding kaldırıldı */
    height: 420px; /* mobil için premium yükseklik */
}

/* VIDEO TAM EKRAN */
.section-video .video-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.section-video video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* videoyu tam ekran doldurur */
    object-position: center;
    filter: brightness(0.55); /* yazılar daha okunur */
}
.section-video .video-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
    text-align: center;
    padding: 0 10px; /* kenarlardan biraz boşluk */
}

/* FEATURED IMAGE */

.featured-img {
  width: 100%;
  height: 250px;         /* mobilde tam genişlik */
  max-width: 360px;         /* premium sınır, çok büyümesin */
  margin: 0 auto;           /* ortala */
  display: block;
  border-radius: 16px;
  border: 2px solid rgba(255,255,255,0.3);
}

    /* PROJECTS — MOBILE FIX */


  .projects-list {
    padding: 24px 10px;
    gap: 30px;
  }

  .project-row {
    display: flex;
    flex-direction: column;   /* resim + yazı alt alta */
    gap: 12px;
  }

  .project-thumb {
    width: 95%;
    height: auto;
    border-radius: 12px;
  }

  .project-info h3 {
    font-size: 17px;          /* ABOUT ve HERO ile aynı */
    margin-bottom: 4px;
    line-height: 1.2;
  }

  .project-info p {
    font-size: 12px;          /* senin yeni standardın */
    line-height: 1.32;
  }


    /* CONTACT */
    .contact-section {
        display: block;
        padding: 40px 5vw;
        text-align: center;
    }

    .contact-section h2 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .contact-section p {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .contact-section button {
        font-size: 12px;
        padding: 8px 18px;
    }

    /* FOOTER */
    footer {
        font-size: 11px;
        padding: 16px 0;
        text-align: center;
    }
}


@media (min-width: 1400px) and (max-width: 1600px) {

/* HEADER */
 .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 14px; /* biraz daha ince */
    z-index: 10;
    position: relative;
}

.logo {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 500;
}

.nav a {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 500;
}



  /* HERO GENEL */
.hero {
    padding: 16px 14px 32px;
    position: relative;
}

/* FOTOĞRAF TAMAMEN KALDIR */
.hero-image {
    display: none !important;
}

/* CONTENTS — ORTADA, AŞAĞIDA, TAM SAYDAM, DAHA SIKI */
.hero-right {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100px;        /* biraz daha aşağı */
    z-index: 5;
}

.toc {
    background: transparent !important; /* TAM SAYDAM */
    backdrop-filter: none !important;   /* blur yok */
    padding: 4px 6px;                   /* daha sıkı */
    border-radius: 0;                   /* kutu görünümü tamamen gitti */
    font-size: 12px;
    text-align: center;
    line-height: 1.1;                   /* yükseklik sıkılaştırıldı */
}

.toc h2 {
    font-size: 12px;
    margin-bottom: 2px;                 /* daha yakın */
    line-height: 1.1;
}

.toc-item span {
    font-size: 12px;
    line-height: 1.1;                   /* satırlar birbirine yakın */
}



/* HERO TEXT — SOLDA, AŞAĞI ALINDI, KÜÇÜK */
.hero-content {
    margin-top: 425px;   /* CONTENTS ORTADA OLDUĞU İÇİN DAHA AŞAĞI İNDİRİLDİ */
    padding-right: 0;
    z-index: 6;
    position: relative;
}

.hero-text{
    text-align: left;
    padding: 24px 10px;
    max-width: 90%;
    font-size: 12px;      /* biraz daha dar, daha premium */
     margin-left: auto;   /* ORTALAMA */
    margin-right: auto;  /* ORTALAMA */
}

.hero-text h1 {
    font-size: 20px;     /* bir tık daha küçük */
    line-height: 1.2;
    margin-bottom: 5px;
}

.hero-text p {
    font-size: 15px;    /* küçültüldü */
    line-height: 1.32;
    margin-bottom: 8px;
}

#contactBtn {
    font-size: 10px;    /* küçültüldü */
    padding: 10px 15px;
}


   /* ABOUT */
.about-section {
    padding: 24px 10px;   /* hero ile aynı premium spacing */
    text-align: left;     /* mobilde daha doğal görünür */
    max-width: 90%;       /* hero ile aynı genişlik */
    margin: 0 auto;       /* ortaya al */
}

.about-section h2 {
    font-size: 17px;      /* hero h1 ile aynı boyut standardı */
    margin-bottom: 6px;   /* hero spacing ile uyumlu */
    line-height: 1.2;
}

.about-section p {
    font-size: 10px;      /* hero paragraf ile aynı */
    line-height: 1.32;    /* hero ile aynı */
}


/* ABOUT SECTION (VIDEO BACKGROUND) */
.section-video {
    position: relative;
    overflow: hidden;
    padding: 0; /* video tam ekran olsun diye padding kaldırıldı */
    height: 420px; /* mobil için premium yükseklik */
}

/* VIDEO TAM EKRAN */
.section-video .video-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.section-video video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* videoyu tam ekran doldurur */
    object-position: center;
    filter: brightness(0.55); /* yazılar daha okunur */
}
.section-video .video-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
    text-align: center;
    padding: 0 10px; /* kenarlardan biraz boşluk */
}

/* FEATURED IMAGE */

.featured-img {
  width: 100%;
  height: 250px;         /* mobilde tam genişlik */
  max-width: 360px;         /* premium sınır, çok büyümesin */
  margin: 0 auto;           /* ortala */
  display: block;
  border-radius: 16px;
  border: 2px solid rgba(255,255,255,0.3);
}

    /* PROJECTS — MOBILE FIX */


  .projects-list {
    padding: 24px 10px;
    gap: 30px;
  }

  .project-row {
    display: flex;
    flex-direction: column;   /* resim + yazı alt alta */
    gap: 12px;
  }

  .project-thumb {
    width: 95%;
    height: auto;
    border-radius: 12px;
  }

  .project-info h3 {
    font-size: 17px;          /* ABOUT ve HERO ile aynı */
    margin-bottom: 4px;
    line-height: 1.2;
  }

  .project-info p {
    font-size: 12px;          /* senin yeni standardın */
    line-height: 1.32;
  }


    /* CONTACT */
    .contact-section {
        display: block;
        padding: 40px 5vw;
        text-align: center;
    }

    .contact-section h2 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .contact-section p {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .contact-section button {
        font-size: 12px;
        padding: 8px 18px;
    }

    /* FOOTER */
    footer {
        font-size: 11px;
        padding: 16px 0;
        text-align: center;
    }
}



/* 400px HEIGHT + LANDSCAPE FIX */
@media (max-height: 400px) and (orientation: landscape) {

    /* GENEL RESET */
    html, body {
        padding: 0 !important;
        margin: 0 !important;
        overflow-x: hidden !important;
        width: 100vw !important;
        max-width: 100vw !important;
    }

    /* HERO */
    .hero-content {
        margin-top: 120px !important; /* 425px burada imkânsız */
        padding: 10px 10px !important;
    }

    .hero-text {
        max-width: 95% !important;
        padding: 10px 0 !important;
    }

    .hero-text h1 {
        font-size: 14px !important;
        margin-bottom: 4px !important;
    }

    .hero-text p {
        font-size: 10px !important;
        line-height: 1.3 !important;
        margin-bottom: 6px !important;
    }

    #contactBtn {
        font-size: 9px !important;
        padding: 4px 8px !important;
    }

    /* CONTENTS */
    .hero-right {
        top: 40px !important;
        transform: translateX(-50%);
    }

    .toc,
    .toc h2,
    .toc-item span {
        font-size: 10px !important;
        line-height: 1.1 !important;
    }

    /* ABOUT */
    .about-section {
        padding: 10px 10px !important;
        max-width: 95% !important;
    }

    .about-section h2 {
        font-size: 14px !important;
        margin-bottom: 4px !important;
    }

    .about-section p {
        font-size: 10px !important;
        line-height: 1.3 !important;
    }

    /* VIDEO SECTION */
    .section-video {
        height: 260px !important; /* 420px burada taşar */
    }

    .section-video .video-content {
        top: 55% !important;
        padding: 0 10px !important;
    }

    .section-video h2 {
        font-size: 14px !important;
    }

    .section-video p {
        font-size: 10px !important;
    }

    /* PROJECTS */
    .projects-list {
        padding: 10px !important;
        gap: 20px !important;
    }

    .project-info h3 {
        font-size: 14px !important;
    }

    .project-info p {
        font-size: 10px !important;
    }

    .project-thumb {
        width: 90% !important;
        margin: 0 auto !important;
    }

    /* CONTACT */
    .contact-section {
        padding: 20px 10px !important;
    }

    .contact-section h2 {
        font-size: 14px !important;
    }

    .contact-section p {
        font-size: 10px !important;
    }

    .contact-section button {
        font-size: 10px !important;
        padding: 6px 12px !important;
    }

    /* FOOTER */
    footer {
        font-size: 10px !important;
        padding: 10px 0 !important;
    }
}
