/* Fonts */
:root {
  --heading-font: "Poppins", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #000000; /* Background color for the entire website, including individual sections */
  --default-color: #fafafa; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #ffffff; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #27a776; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #1a1a1a; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.8);
  font-size: 60px;
}

@media (max-width: 768px) {
  .poppins-semibold {
    font-size: 40px;
  }
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */


/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-style: var(--font-style);
}
html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100%;
}

@media (max-width: 768px) {
  .main {
    width: 100%;
  }
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  background: #000000;
  z-index: 1001;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
  transition: background-color 0.3s ease; /* Renk geçişi için animasyon ekler */
  background-color: transparent; /* Başlangıçta şeffaf */
  transition: background-color 0.4s ease-in-out;
}

body.scrolled #header {
  background-color: #000000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#header .navmenu a,
#header .logo {
  color: #fff;
}

/* --- Desktop --- */
.container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between; /* hamburger solda, sosyal sağda, logo normal akışta */
  position: relative; /* mobil için referans */
}

/* --- Logo --- */
.logo img {
  max-width: 125px;
  width: 100%;
  height: auto;
}
.site-logo {
  opacity: 0;
  transform: translateY(-10px);
  transition: 0.3s ease;
  max-width: 180px;
}
.site-logo.visible {
  opacity: 1;
  transform: translateY(0);
}

.logo {
  flex: 1; /* Orta alan genişlesin */
  display: flex;
  justify-content: center; /* Tam ortaya gelsin */
}
@media (max-width: 768px) {
  .logo img {
    max-width: 100px; /* Mobilde biraz küçültebilirsin */
    padding: 5px;
  }
}


/* --- Mobil --- */
@media (max-width: 768px) {
  .container-fluid {
    justify-content: flex-start; /* hamburger sola yapışık */
  }

  .hamburger {
    position: relative; /* akışta kalıyor */
  }

  .header-social-links {
    display: none; /* JS ile de kaldırılıyor */
  }
}

body.scrolled #header h1 {
  opacity: 1;
  color: white;
}


/* Hamburger Menü */
.hamburger {
  width: 26px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 2;
  margin-left: 15px;
}

.hamburger span {
  display: block;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: 0.3s;
}
.hamburger:hover span {
  background-color: darkred;
}

.header-social-links {
  margin-right: 15px;
}

/* Sosyal Medya */
.header-social-links a {
  color: #ffffff;
  margin-left: 10px;
  font-size: 18px;
  transition: 0.3s;
}

.header-social-links a:hover {
  color: darkred;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: -25%;
  width: 25%;
  min-width: 220px;
  height: 100%;
  background: #000000;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  padding: 60px 20px 20px;
  transition: 0.4s;
  z-index: 1002;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center; /* dikey ortalama */
}

.sidebar.active {
  left: 0;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar ul li {
  margin: 15px 0;
}

.sidebar ul li a {
  color: #ffffff;
  text-decoration: none;
  line-height: 1.7;
  letter-spacing: 0.2px;
  font-weight: 300;
  font-size: 25px;
  transition: 0.3s;
}

.sidebar ul li a:hover {
  color: darkred;
}

.sidebar ul ul {
  margin-top: 10px;
  margin-left: 15px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 1000;
}

.overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .sidebar {
    width: 70%;
    left: -70%;
  }
  .sidebar.active {
    left: 0;
  }
}

.logo .separator {
  width: 3px;
  height: 55px;
  background-color: darkgray;
  margin: 0 8px;
}

.indextext {
  color: #ffffff;
  margin: 40px auto;
  width: 70%;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.2px;
  font-weight: 300;
  text-align: justify;
  opacity: 0.95;
}
.indextext p {
  margin-bottom: 18px;
}
.indextext ul {
  margin-top: 10px;
  padding-left: 50px;
}
.indextext ul li {
  margin-bottom: 6px;
}
@media (max-width: 767px) {
  .indextext {
    width: 90%;
    font-size: 15px;
    margin: 20px auto;
    line-height: 1.6;
  }
}

.indextext2 {
  color: white;
  width: 100%;
  font-size: 16px;
  line-height: 1.7;
  text-align: justify;
}

/* Sağdaki istatistik kutusu */
.equal-wrap {
  display: flex;
}

.equal-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  .equal-box {
    margin-bottom: 0px !important;
  }
}

.stat-item {
  margin: 20px 0;
}

.stat-item h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 15px;
  margin: 0;
}

/* Mobil uyum */
@media (max-width: 767px) {
  .equal-wrap {
    flex-direction: column;
  }
}

.slider_area {
  position: relative;
  height: 100vh; /* tüm ekranı kaplasın */
  overflow: hidden;
}
/* === SLIDER YAZILARI === */

.slider_text h3 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 10px;
}

.slider_text p {
  font-size: 20px;
}

@media (max-width: 767px) {
  .slider_area .single_slider .slider_text h3 {
    font-size: 33px;
    letter-spacing: 3px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .slider_area .single_slider .slider_text h3 {
    font-size: 30px;
  }
}
.single_slider .slider_text p,
.slider_area .single_slider .slider_text p {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0;
  margin-top: 0;
}

@media (max-width: 767px) {
  .slider_area .single_slider .slider_text p {
    font-size: 16px;
  }
}
.slider_area,
.slider_area .slider_active.comment {
  margin-top: 0 !important;
}

.single_slider {
  position: relative;
  overflow: hidden;
}

.slider_text {
  z-index: 2;
  position: absolute; /* Mutlak konumlandırma ile görselin üzerine yerleştir */
  top: 50%; /* Dikeyde %50 */
  left: 50%; /* Yatayda %50 */
  transform: translate(
    -50%,
    -50%
  ); /* Kendi boyutunun yarısı kadar geri çekerek tam ortala */
  width: 100%; /* Kapsayıcı genişliğinde olsun */
  max-width: 1000px; /* Opsiyonel: Metin genişliğini sınırlamak için */
  color: #fff;
  text-align: center;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer li a:hover,
a:focus,
a:hover {
  text-decoration: none;
  color: #1f1f1f;
}
.footer-right a:hover,
.genric-btn.link,
.genric-btn.link-border {
  text-decoration: underline;
}
.footer-left {
  text-align: left;
}

.footer-right {
  text-align: right;
}

.site-footer {
  padding: 40px 20px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
  border-top: 1px solid #9a9a9a;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 15px;
  font-size: 14px;
  color: #5e5e5e;
}
.footer-left .brand {
  color: #ffffff;
  font-weight: 700;
}
.footer-right a {
  margin-left: 15px;
  color: #5e5e5e;
  text-decoration: none;
}
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-left,
  .footer-right {
    text-align: center;
    margin-top: 10px;
  }
  .footer-right a {
    margin-left: 5px;
    margin-right: 5px;
  }
}

.social-icons a {
  display: inline-block;
  margin: 0 6px;
  color: #000000;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 6px;
  font-size: 18px;
  text-align: center;
  transition: 0.3s;
  background: rgb(156, 156, 156);
}

.social-icons a:hover {
  background: rgb(205, 205, 205);
}

.social-icons li i,
.social-icons li span {
  font-size: 14px;
  color: #999;
}

.social-icons li {
  display: inline-block;
  margin-right: 15px;
}

.social-icons li:last-child {
  margin: 0;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  display: flex;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  z-index: 99999;
}

#preloader:before,
#preloader:after {
  content: "";
  background-color: #000000;
  position: absolute;
  inset: 0;
  width: 50%;
  height: 100%;
  transition: all 0.3s ease 0s;
  z-index: -1;
}

#preloader:after {
  left: auto;
  right: 0;
}

#preloader .line {
  position: relative;
  overflow: hidden;
  margin: auto;
  width: 1px;
  height: 280px;
  transition: all 0.8s ease 0s;
}

#preloader .line:before {
  content: "";
  position: absolute;
  background-color: #ffffff;
  left: 0;
  top: 50%;
  width: 1px;
  height: 0%;
  transform: translateY(-50%);
  animation: lineincrease 1000ms ease-in-out 0s forwards;
}

#preloader .line:after {
  content: "";
  position: absolute;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  transform: translateY(-100%);
  animation: linemove 1200ms linear 0s infinite;
  animation-delay: 2000ms;
}

#preloader.loaded .line {
  opacity: 0;
  height: 100% !important;
}

#preloader.loaded .line:after {
  opacity: 0;
}

#preloader.loaded:before,
#preloader.loaded:after {
  animation: preloaderfinish 300ms ease-in-out 500ms forwards;
}

@keyframes lineincrease {
  0% {
    height: 0%;
  }

  100% {
    height: 100%;
  }
}

@keyframes linemove {
  0% {
    transform: translateY(200%);
  }

  100% {
    transform: translateY(-100%);
  }
}

@keyframes preloaderfinish {
  0% {
    width: 5 0%;
  }

  100% {
    width: 0%;
  }
}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: gray;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--default-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, rgb(222, 222, 222), transparent 20%);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 64px;
  font-weight: 400;
}

.container .cta-btn {
  color: var(--default-color);
  background: var(--accent-color);
  font-weight: 400;
  font-size: 14px;
  display: inline-block;
  margin-top: 20px;
  padding: 12px 40px;
  border-radius: 4px;
  transition: 0.5s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-title .heading .cta-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color) 90%, white 10%);
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li + li {
  padding-left: 10px;
}

.page-title nav ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1441px) {
  section,
  .section {
    scroll-margin-top: 100px;
  }
}


/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.gallery .gallery-item img {
  transition: 0.3s;
}

.gallery .gallery-links {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  z-index: 3;
}

.gallery .gallery-links .preview-link,
.gallery .gallery-links .details-link {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  transition: 0.3s;
  line-height: 1.2;
  margin: 30px 8px 0 8px;
}

.gallery .gallery-links .preview-link:hover,
.gallery .gallery-links .details-link:hover {
  color: #ffffff;
}

.gallery .gallery-links .details-link {
  font-size: 30px;
  line-height: 0;
}

.gallery .gallery-item:hover .gallery-links {
  opacity: 1;
}

.gallery .gallery-item:hover .preview-link,
.gallery .gallery-item:hover .details-link {
  margin-top: 0;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

.glightbox-clean .gslide-description {
  background: #272727;
}

.glightbox-clean .gslide-title {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  text-align: center; /* Ortala yazıyı yatayda */
  width: 100%; /* Ortalamayı düzgün çalıştırmak için */
  position: absolute; /* Dilersen dikey ortalamak için */
  bottom: 10px; /* veya top: 50%; transform ile ortala */
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  width: 80%;
  margin: 50px auto 0 auto;
}

.contact .info-wrap {
  margin-bottom: 30px;
}

.info-item i {
  font-size: 20px;
  color: darkred;
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, darkred, transparent 40%);
  margin-right: 15px;
}

.contact .info-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 15px;
  color: #d1cfcf;
}

.contact .info-item:hover i {
  background: darkred;
  color: white;
}

@media (max-width: 575px) {
  .contact {
    padding: 20px;
  }
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type="text"]:focus,
.contact .php-email-form input[type="email"]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type="text"]::placeholder,
.contact .php-email-form input[type="email"]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type="submit"] {
  color: var(--default-color);
  background: darkred;
  font-weight: 400;
  font-size: 14px;
  display: inline-block;
  margin-top: 20px;
  padding: 14px 40px;
  border: 0;
  border-radius: 4px;
  transition: 0.5s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact .php-email-form button[type="submit"]:hover {
  background-color: color-mix(in srgb, rgb(68, 0, 0), white 10%);
}


* {
  box-sizing: border-box;
}
:root {
  --magnifier: 6;
  --gap: 1vmin;
  --transition: 0.5s;
}

.aboutcontainer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 50px;
  gap: 30px;
}

.aboutcontainer h1 {
  color: darkgray;
}

.aboutcontainer .content {
  flex: 1 1 50%; /* PC’de yarı yarıya */
  min-width: 300px;
}

.aboutcontainer img {
  flex: 1 1 45%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  border-radius: 8px;
}

.aboutcontainer .cta-btn {
  color: #fff;
  background: darkred;
  font-weight: 400;
  font-size: 14px;
  display: inline-block;
  margin-top: 20px;
  padding: 12px 40px;
  border-radius: 4px;
  transition: 0.5s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.aboutcontainer .cta-btn:hover {
  background-color: rgb(60, 8, 8);
}


@media (max-width: 768px) {
  .aboutcontainer {
    flex-direction: column;
    padding: 30px 10px;
    gap: 20px;
  }

  .aboutcontainer .content,
  .aboutcontainer img {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .aboutcontainer img {
    margin: 0 auto;
    height: auto;
    transform: none; /* Hover büyütme kaldırıldı */
  }

  .aboutcontainer .content {
    text-align: center;
    padding: 10px;
  }
}

.container {
  width: 90vw;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap, 10px);
  flex-wrap: nowrap;
  margin-top: 10px;
}

.container img {
  padding: 5px;
  --brightness: 0.75;
  --grayscale: 1;
  --magnifier: 2;
  --transition: 0.7s;
  object-fit: cover;
  flex: 1;
  min-width: 20px;
  filter: grayscale(var(--grayscale)) brightness(var(--brightness));
  transition: flex var(--transition), filter var(--transition);
}

.container img:hover {
  --brightness: 1.15;
  --grayscale: 0;
  flex: var(--magnifier);
}

@media (max-width: 768px) {
  .container {
    height: 80vmin; /* daha makul mobil yüksekliği */
  }

  .container img {
    padding: 2px;
    transition: flex 0.3s, filter 0.5s;
  }

  .container img:active {
    transform: scaleX(1); /* sadece yatay büyüme */
    filter: grayscale(0, 75) brightness(1.15);
  }
}

.card-type {
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  cursor: pointer;
  margin: 0;
}

.card-type img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  filter: brightness(80%);
}

/* Başlık sağ alt köşeye sabit */
.card-type .card-body {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 0;
  width: auto;
}

.card-type .card-title {
  color: #e4e4e4;
  margin: 0;
  text-align: right;
  z-index: 2;
  font-size: 20px;
}

.card-type:hover .card-title {
  color: rgb(255, 255, 255);
}

.card-type,
.card-type img,
.card-type .card-img-top {
  border-radius: 0 !important;
}
.row > [class*="col-"] {
  padding-left: 6px;
  padding-right: 6px;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .card-type img {
    filter: none;
  }
  .card-type .card-body {
    background: rgba(0, 0, 0, 0.4);
  }
}

.description {
  font-size: 16px;
  color: #a2a2a2;
  margin-top: 10px;
  text-align: center;
}

.project-hero {
  position: relative;
  width: 100%;
  min-height: 60vh;
  height: 100vh; /* veya istediğin yükseklik */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  z-index: 1;
  filter: grayscale(70%);
}

.project-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* Fotoğrafı %45 karartır */
  z-index: 0;
}

.project-hero .hero-text {
  position: relative;
  z-index: 2;
}

/*--------------------------------------------------------------*/

.team-section {
  text-align: center;
  margin: 0 auto;
}

.team-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  letter-spacing: 1px;
  color: #ffffff;
}

/* GRID DÜZENİ — tek gerçek düzen */
.team-container {
  display: grid;
  padding: 20px;
  grid-template-columns: repeat(4, 1fr); /* Desktop: 4 */
}

@media (max-width: 992px) {
  .team-container {
    grid-template-columns: repeat(2, 1fr); /* Tablet: 2 */
  }
}

@media (max-width: 600px) {
  .team-container {
    grid-template-columns: 1fr; /* Mobil: 1 */
  }
}

/* Her Üye Kartı */
.team-member {
  text-align: center;
  max-width: 350px;
  margin: 0 auto;
}

/* Fotoğraf */
.member-photo {
  width: 350px;
  height: 350px;
  overflow: hidden;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 1px #eee;
}
@media (max-width: 576px) {
  .member-photo {
    width: 250px;
    height: 250px;
  }
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s;
}
/*
.team-member:hover .member-photo img {
  filter: grayscale(0%);
}
*/

/* İsim */
.team-member h3 {
  font-size: 24px;
  font-weight: 1000;
  margin-bottom: 5px;
  color: #ffffff;
}

/* Unvan */
.role {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  color: rgba(184, 184, 184, 0.81);
}

.arrow {
  font-size: 30px;
  transition: transform 0.3s ease;
  cursor: pointer;
  user-select: none;
}
.arrow:hover {
  color: darkred;
}

.bio-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  text-align: justify;
}

.bio-content.open {
  max-height: max-content;
  font-size: 13px;
  line-height: 1.55;
  padding: 10px 0 20px 0;
}

.team-bio-global {
  display: none;
  padding: 0 50px 0 50px;
  background: #000000;
  text-align: justify;
  height: 200px;
}

@media (max-width: 767px) {
  .team-bio-global {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .bio-content {
    display: none !important;
  }
}
.arrow::after {
  content: "﹀";
  transition: transform 0.3s ease;
}
.arrow.open::after {
  content: "︿";
  color: darkred;
}
/* Açıklama */
.description {
  font-size: 14px;
  color: #dbdbdb;
  margin-bottom: 20px;
}

/* Sosyal */
.social-links a {
  color: #a0a0a0;
  font-size: 18px;
  margin: 0 5px;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #9b0000;
}

/* Mobil başlık */
@media (max-width: 576px) {
  .team-section h2 {
    font-size: 28px;
  }
}

.about-hero {
  position: relative;
  width: 100%;
  height: 100vh; /* tam ekran yüksekliği */
  overflow: hidden;
}

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

.about-hero .hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
}
.about-hero .hero-text img {
  width: 150px; /* istediğin kadar büyültüp küçültebilirsin */
  height: auto;
}

@media (max-width: 767px) {
  .about-hero .hero-text img {
    width: 90px; /* mobilde ideal boyut */
  }
}

.project-main {
  margin-top: 50px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .project-main {
    margin-top: 80px;
  }
}
