


/* GENEL AYARLAR --------------------------------------------------------------------------------------------------------------- */

body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #0b0b0b;
}

::-webkit-scrollbar {
    width: 3px;
    height: 8px;
}
::-webkit-scrollbar-thumb {
    background-color: #cecece;
    border-radius: 4px;
}
::-webkit-scrollbar-track {
    background-color: transparent;
}


/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    display: flex;
    justify-content: space-between; /* Sol ve sağ kenara yasla */
    align-items: center;

    padding: 8px 30px;
    background: rgba(0, 0, 0, 0);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
    transition: background-color 0.3s ease;
}

.navbar.scrolled {
    background-color: #000000ac;
}

.nav-left {
    display: flex;
    align-items: center;
}

.nav-left .logo img {
    width: 140px !important;
    height: auto;
    display: block;
    pointer-events: none;
    padding-right: 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-right {
    display: flex;
    align-items: center;
}

.navbar a {
    white-space: nowrap;
    text-decoration: none;
}

.nav-right a {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #ececec;
    font-size: 14.3px;
    text-decoration: none;
    transition: color 0.2s ease;
    padding: 15px 20px 15px;
}

.nav-right a:not(:first-child) {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-right a:hover,
.navbar a.active {
    color: #ececec77;
}


.nav-mobile {  
    display: none;
}

.mobile-nav-button {
    display: inline-block;
    cursor: pointer;
    z-index: 999;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #cdcdcd;
    position: relative;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.hamburger::before,
.hamburger::after {
    content: "";
    display: block;
    width: 25px;
    height: 3px;
    background-color: #cdcdcd;
    position: absolute;
    left: 0;
    transition: transform 0.3s ease, top 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.hamburger.active {
    background-color: transparent;
}

.hamburger.active::before {
    transform: rotate(45deg);
    top: 0;
}

.hamburger.active::after {
    transform: rotate(-45deg);
    top: 0;
}


.mobile-nav-menu {
    position: fixed;
    top: -25%;
    left: 0;
    width: 100%;
    height: 25%;
    background-color: #11111181;
    overflow: hidden;
    opacity: 1;
    transition: all 0.4s ease;
    z-index: 500;
}

.mobile-nav-menu-buttons {
    margin-top: 18%;
}

.mobile-nav-menu-buttons a {
    display: block;
    padding: 6px 16px;
    text-decoration: none;
    font-family: 'Roboto Condensed', sans-serif;
    color: #cdcdcd;
    font-size: 22px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.mobile-nav-menu a:hover {
    color: #ffffff;
}

.mobile-nav-menu.open {
    display: block;
    top: 0;
}


@media (max-width: 768px) {
    .nav-left, .nav-right {
        display: none;
    }

    .navbar {
        padding: 30px 30px;
    }

    .nav-center {
        position: absolute;
        top: 50%;
        right: 0%;
        transform: translate(30%, -50%);
        z-index: 999;
    }

    .nav-center .logo img {
        width: 100px;
        margin-right: 35px;
    }


    /* Mobil Menü */
    .nav-mobile {
        display: flex;
        align-items: center;
        gap: 20px;
    }
}






/* HOME --------------------------------------------------------------------------------------------------------------- */





/* Video */
.img-container {
  position: relative;
  height: auto;
  overflow: hidden;
  margin-bottom: 90px;
  height: 100vh;
}

.slideshow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.6;
}

.slide-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}

.karsilama {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  z-index: 2;
}

.karsilama img {
  width: 85%;
  height: auto;
  pointer-events: none;
}

.hosgeldiniz {
  position: absolute;
  top: 64%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.hosgeldiniz h1 {
  color: #ffffff;
  font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  letter-spacing: 60px;
  font-size: 100px;
  text-align: center;
  margin-left: 60px;
}

.baslik {
  color: #ffffff;
  font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  letter-spacing: 5px;
  font-size: 50px;
  text-align: left;
  margin-left: 80px;
}

.yazi {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.5px;
  font-size: 21px;
  color: #ffffff;
  text-align: left;

  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0px;
  box-sizing: border-box;
}


@media (max-width: 768px) {
    .karsilama {
      top: 42%;
      left: 35%;
    }
    .karsilama img {
      width: 150%;
    }
    .hosgeldiniz {
      top: 58%;
    }
    .hosgeldiniz h1 {
      letter-spacing: 20px;
      font-size: 30px;
      margin-left: 20px;
    }
    .baslik {
      font-size: 23px;
      margin-left: 5px;
    }
    .yazi {
      font-size: 15px;
      padding: 0 5px;
    }
}



/* Footer */
html {
  scroll-behavior: smooth !important;
}

.site-footer {
  color: #fff;
  padding: 40px 0px 0px;
  font-family: Arial, sans-serif;
  border-top: 1px solid #ffffff57;
  margin-top: 100px;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 0.5fr;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 21px;
}

.footer-container p {
  margin-bottom: 0;
}

.footer-col h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #DE0000;
}

.footer-col h3.right {
  text-align: right;
}

.footer-col p {
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color .2s;
}

.footer-col ul li a:hover {
  color: #DE0000;
}

.social-links {
  text-align: right;
}

.social-links a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #ccc;
  transition: color .2s;
  text-decoration: none;
}

.social-links a:hover {
  color: #DE0000;
}

.footer-logo {
  margin-top: 150px;
  text-align: right;
}

.footer-logo img {
  margin-top: 20px;
  max-width: 200px;
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  border-top: 1px solid #222;
  padding-top: 20px;
  font-size: 13px;
  color: #aaa;
  background: linear-gradient(90deg, #1a1a1a, #343434);
  padding-bottom: 20px;
}

.footer-bottom p {
  margin-bottom: 0px;
}

.author {
  color: #b1b1b1;
  text-decoration: dashed;
  transition: color 0.3s ease;
}

.author:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .footer-col h3.right {
  text-align: left;
}

.social-links {
  text-align: left;
}

.footer-logo {
  margin-top: 0px;
  text-align: center;
}

  .footer-col {
    padding-left: 10px;
}

  .footer-container {
    grid-template-columns: 1fr;
  }

  .why-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-top: 0;
  }

  .why-card  {
    margin-top: 20px;
  }

  .why-header h2 {
  font-size: 20px;
}
.why-header p {
    font-size: 13px;
}
}