/* Global */
body {
    font-family: "Exo 2", sans-serif;
    color: #616161;
    background-color: rgb(233, 233, 233);
  }
  
  h1, h2, h3, .navbar-brand {
    font-family: "Exo 2", sans-serif;
  }
  
  /* ----------------------------------------------------
     HERO SECTION
  ---------------------------------------------------- */
  .about-hero {
    position: relative;
    height: 45vh;
    background-image: url("/assets/img/aboutimg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
  }
  
  .about-hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
  }
  
  .hero-inner {
    position: relative;
    z-index: 2;
  }
  
  .page-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 0.5rem;
    letter-spacing: 0.03em;
  }
  
  .page-subtitle {
    opacity: 0.85;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
    /* NAVBAR – hero üzerine oturan transparan şerit */
    .navbar-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 10;
        background: linear-gradient(
          to bottom,
          rgba(0, 0, 0, 0.6),
          transparent
        );
      }
      li{
        color: #616161;
        font-family: "Exo 2", sans-serif;
      }
      .navbar-brand {
        font-family: "Exo 2", sans-serif;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        font-size: 0.95rem;
      }
      
      .navbar-dark .navbar-nav .nav-link {
        color: #f8f9fa;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
      }
      
      .navbar-dark .navbar-nav .nav-link.active,
      .navbar-dark .navbar-nav .nav-link:hover {
        color: #e4e4e4;
      }
      
.projects-page {
    background-color: #f0f0f0; 
  }
  
  .projects-page .section-title {
    font-family: "Prata", serif;  
    font-size: 1.8rem;
    letter-spacing: 0.04em;
  }
  
  .projects-page .section-subtitle {
    font-family: "Spectral", serif;
    font-size: 0.95rem;
    color: #6c757d;
  }
  
  .project-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;     
    overflow: hidden;
    border-radius: 12px;
    background-color: #ddd;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  }
  
  .project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;       
    transition: transform 0.4s ease;
  }
  
  .project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.65),
      rgba(0,0,0,0.1)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
  }
  
  .project-info {
    color: #fff;
  }
  
  .project-info h5 {
    margin: 0;
    font-family: "Prata", serif;
    font-size: 1rem;
  }
  
  .project-info p {
    margin: 0;
    font-size: 0.8rem;
    opacity: 0.85;
  }
  
  /* Hover state */
  .project-card:hover img {
    transform: scale(1.06);
  }
  
  .project-card:hover .project-overlay {
    opacity: 1;
  }
  
  /* Mobile uyumu için küçük dokunuşlar */
  @media (max-width: 576px) {
    .project-card {
      border-radius: 10px;
    }
  }
  
  