body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-image: url("arüarkaplan.png"); /* Resmin dosya adını ve uzantısını yaz */
    background-size: cover; /* Resmi ekranı kaplayacak şekilde ayarlar */
    background-repeat: no-repeat; /* Resmin tekrarlanmasını engeller */
    background-position: center; /* Resmi ortalar */
  }
  
  .nav-container {

      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      background-color: #1A2B57;
      padding: 10px 20px;
      height: 53px;
    
      position: sticky;
      top: 0;
      z-index: 1000;
    
    
    
  }
  
  .logo {
    height: 50px;
    width: auto;
    max-width: 100%;
  }
  
  .nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 10px 0;
  }
  
  .nav-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
  }
  
  .nav-menu a {
    text-decoration: none;
    color: #333;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    white-space: nowrap;
    font-size: 14px;
    text-transform: uppercase;
    color: white;
  }
  
  .nav-menu a:hover {
    color: #007BFF;
  }
  
  .join-btn {
    background-color: #007BFF;
    color: white;
    font-family: 'Inter', sans-serif;
    border: none;
    border-radius: 0;
    cursor: pointer;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    height: 50px;
    width: 250px;
    margin-left: 55px;
    margin-top: 4px; /* Biraz yukarı alır */
    border-radius: 25px;
    text-align: center;
  }
  
  
  .join-btn:hover {
    background-color: #0056b3;
  }
  .join-btn a{
    color: white;
    text-decoration: none;
  }
  
  /* Ekran genişliği 600px'den küçükse (mobil) */
  @media (max-width: 600px) {
    .nav-container {
      flex-direction: column;
      align-items: stretch;
      text-align: center;
    }
  
    .nav-center {
      order: -1;
    }
  } 
  .arkaresim {
    height: 280px;
    width: 100%;
    background-image: url(yonetimresim.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  
  /* Yazı tipi efektinin stil ayarları */
  .typewriter-text {
    margin-top: 100px;
    margin-left: 645px;
    position: absolute;
    color: white;
    font-size: 60px;
    font-weight: bold;
  }

  .anakutu {
    width: 80%;               /* Sayfanın %80’ini kaplar */
    margin: 50px auto;        /* Üstten 50px boşluk ve yatayda ortalama */
    display: flex;            /* İçindeki div’leri yan yana dizer */
    gap: 30px;                /* Aralarına 30px boşluk koyar */
    flex-wrap: wrap;          /* Küçük ekranda alt alta geçmelerine izin verir */
  }
  
  .aciklama {
    flex: 1;                  /* Eşit alan kaplaması için esnek yapı */
    min-width: 300px;         /* Minimum 300px genişlik */
    font-size: 16px;          /* Yazı boyutu */
    color: #1A2B57;           /* Yazı rengi */
  }
  
  .gönderi {
    flex: 1;                  /* Diğer div ile eşit alan kaplar */
    min-width: 300px;
  }
  
  .gönderi form {
    display: flex;            /* Form içeriğini hizalamak için flex kullanılır */
    flex-direction: column;   /* Elemanlar dikey sırayla yerleştirilir */
    gap: 10px;                /* Elemanlar arası boşluk */
  }
  
  .adsoyad-kutu {
    display: flex;            /* Ad ve Soyad kutularını yan yana dizer */
    gap: 10px;                /* Aralarına boşluk bırakır */
  }
  
  .adsoyad-kutu input {
    flex: 1;                  /* İki kutu eşit genişlikte olur */
  }
  
  .gönderi input,
  .gönderi textarea {
    padding: 10px;            /* İç boşluk (yazı ile kenar arasında mesafe) */
    font-size: 14px;          /* Yazı boyutu */
    border: 1px solid #aaa;   /* Gri kenarlık */
    border-radius: 5px;       /* Kenarları hafif yuvarlatır */
  }
  
  .gönderi textarea {
    height: 100px;            /* Mesaj alanının yüksekliği */
    resize: vertical;         /* Kullanıcının yüksekliği değiştirmesine izin verir */
  }
  
  .gönderi button {
    padding: 10px;            /* Buton iç boşluğu */
    background-color:#0056b3; /* Buton arka plan rengi */
    color: white;             /* Yazı rengi */
    border: none;             /* Kenarlık yok */
    border-radius: 5px;       /* Yuvarlatılmış köşeler */
    cursor: pointer;          /* Üzerine gelince el işareti */
  }
  
  .gönderi button:hover {
    background-color:#1A2B57; /* Üzerine gelindiğinde arka plan rengi koyulaşır */
  }
  /* FOOTER STYLES */
.footer {
    background-color: #1A2B57;
    color: white;
    padding: 40px 0 20px;
    width: 100%;
    margin-top: 20px;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
  }
  
  .footer-logo-section {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    max-width: 400px;
  }
  
  .footer-logo {
    width: 100px;
    height: auto;
  }
  
  .club-info {
    display: flex;
    flex-direction: column;
  }
  
  .club-name {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0;
  }
  
  .club-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    margin: 2px 0;
    color: #ccc;
  }
  
  .club-department {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .club-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #ccc;
  }
  
  .footer-links h3, .footer-contact h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links li {
    font-family: 'Inter', sans-serif;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s;
    font-size: 14px;
  }
  
  .footer-links li:hover {
    color: #ccc;
  }
  
  .footer-links i {
    margin-right: 10px;
    font-size: 12px;
  }
  
  .footer-contact p {
    font-family: 'Inter', sans-serif;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
  }
  
  .footer-contact i {
    margin-right: 10px;
    margin-top: 3px;
  }
  
  .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }
  
  .social-icon {
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 85px;
    height: 25px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
    font-size: 14px;
  }
  
  .social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #ccc;
  }
  
  .heart {
    color: #ff4d4d;
  }
  
  /* Responsive design for footer */
  @media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
    }
    
    .footer-logo-section {
      max-width: 100%;
    }
    
    .footer-links, .footer-contact {
      width: 100%;
    }
    
    .kartlar {
      flex-direction: column;
      align-items: center;
    }
    
    .bootcampler, .salon, .cekilis, .takim {
      width: 100%;
      margin-bottom: 20px;
    }
  }
  
  /* Additional responsive improvements */
  @media (max-width: 992px) {
    .kutu, .kutu1, .kutu2 {
      height: auto;
      padding: 20px;
    }
    
    .baslik1, .baslik2, .baslik3 {
      height: auto;
      padding: 15px;
    }
  }