:root {
    --main-color: #f8f8fc;
    --text-light: #fff;
}

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

body {
    background-color: var(--main-color);
    color: var(--text-light);
    font-family: 'Bebas Neue', sans-serif;
}
.dark{
    background-color: #000 !important;
}
nav::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110px; /* nav yüksekliği kadar */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1), transparent);
    z-index: -1;
}
nav{
    width: 100%;
    position: fixed;
    top: 0px;
    height: 110px;
    padding: 2rem;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
nav .links{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}
nav .links a{
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 4px 4px 6px rgba(35, 36, 50, 1);
}
nav .logo{
    height: 100%;
}
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
}
.hakkimizda{
  color:#000;
  width: 1000px;
  margin-inline: auto;
  max-width: 100%;
  padding: 1rem;
}
/* Genel stil */
.contact-container {
  max-width: 900px;
  margin: 3rem auto;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  font-family: Arial, Helvetica, sans-serif;
}
#formMessage{
  color: #0ade0a;
}
/* Form grup ve item */
.form-group {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.form-item {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Label */
.form-item label {
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
  color: #333;
}

/* Input ve textarea */
.form-item input,
.form-item textarea {
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  transition: border 0.2s, box-shadow 0.2s;
}

.form-item input:focus,
.form-item textarea:focus {
  border-color: #0b84ff;
  outline: none;
  box-shadow: 0 0 0 2px rgba(11,132,255,0.2);
}

/* Textarea */
.form-item textarea {
  min-height: 120px;
  resize: vertical;
}

/* Buton */
.btn-submit {
  background: #0b84ff;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-submit:hover {
  background: #006edc;
}

/* Responsive */
@media(max-width: 768px) {
  .form-group {
    flex-direction: column;
    gap: 16px;
  }
}

.wrapper{
  width: 100%;
  margin-top: calc(110px);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('bg2.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}
.wrapper .title{
  text-align: center;
  font-size: 4rem;
  margin-bottom: 1rem;
  text-shadow: 4px 4px 18px rgba(36, 38, 58, 1);
}
.hakkimizda p{
  font-size: 1.3rem;
}
.dark{
    background-color: #000;
}
.ekip-container {
  padding: 1rem;
  gap: 1rem;
  display: grid;
  grid-template-columns:  repeat(2,1fr);
  margin-top: 110px;
  max-width: 100%;
  overflow: hidden;
}
.ekip-container .ekip{
  background-color: #d4d4d6;
  color: black;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  gap: 1rem;

}
.ekip-container .ekip .person{
  height: 100%;
  aspect-ratio: 2 /1;
  object-fit: cover;
  object-position: top;

}
.ekip-container .ekip .details .title{
  font-size: 2rem;
  font-weight: 600;
}
.ekip-container .ekip .details{
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
/* Hamburger icon stil */
.hamburger {
  display: none; /* Desktop'ta gizle */
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 22px;
  cursor: pointer;
  z-index: 3; /* Nav'ın üstünde */
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--text-light);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Hamburger aktifken çarpıya dönüşümü */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobilde navbar ve hamburger göster */
@media (max-width: 768px) {
  nav .links {
    position: fixed;
    top: 110px; /* navbar altı */
    right: 0;
    height: calc(100vh - 110px);
    width: 250px;
    background-color: var(--main-color);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: -4px 0 8px rgba(0,0,0,0.3);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 2;
  }

  /* Menü açıkken görünür yap */
  nav .links.open {
    transform: translateX(0);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background-color: rgba(0, 0, 0, 0.6);
  }

  nav .links a {
    font-size: 1.4rem;
    width: 100%;
  }

  .hamburger {
    display: flex;
  }
}


@media (max-width: 1000px) {
  .ekip-container {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }
  .hero .content{
    width: calc(100% - 5rem) !important;
  }
}


.hero .content{
    font-family: 'Poppins', sans-serif;
text-shadow: 
  2px 2px 4px rgba(35, 36, 50, 0.8),
  4px 4px 10px rgba(15, 15, 25, 0.9),
  6px 6px 20px rgba(0, 0, 0, 0.6);


    bottom: 0px;
    left: 0px;  
    position: absolute;
    padding: 2rem;
    width: 30vw;
}
.hero .icon{
    text-decoration: none;
    display: flex;
    align-items: center;
    bottom: 2rem;
    right: 2rem;  
    position: absolute;
    padding: 0.8rem;
    border-radius: 100%;
    border: 2px solid var(--text-light);
    color: var(--text-light);
    font-size: 1.8rem;
}
.hero .content .title{
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.6);
}
.hero .content .desc{
    font-size: 1.5rem;
    line-height: 1.55rem;
}
.hero video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
