/* RESET ve GENEL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #1e1e1e;
    color: #cfd8dc;
    line-height: 1.6;
  }
  a {
    text-decoration: none;
    color: #00bfff;
    transition: 0.3s;
  }
  a:hover {
    color: #00e5ff;
  }
  
  /* NAVBAR */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    padding: 10px 30px; /* Yüksekliği küçültmek için üst-alt padding azaltıldı */
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
  }
  
  
  .logo a {
    color: #c0aa7d;
    font-size: 1.5em;
    font-weight: bold;
  }
  .logo a:hover {
    color: #efc56b;
  }
  .nav-links {
    display: flex;
    gap: 30px;
  }
  .nav-links a {
    color: #ccc;
    font-weight: 500;
    font-size: 0.95em;
  }
  .nav-links a:hover,
  .nav-links a.active {
    color: #00bfa5;
    border-bottom: 2px solid #00bfa5;
    padding-bottom: 3px;
  }
  
  /* INSTAGRAM LOGOSU */
  .insta-icon img {
    width: 22px;
    height: 22px;
    margin-left: 15px;
    filter: brightness(1.2);
  }
  .insta-icon img:hover {
    transform: scale(1.1);
  }
  
  /* HAMBURGER MENÜ */
  .menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 36px;
    color: #00bfff;
    cursor: pointer;
  }
  
  /* BAŞLIKLAR ORTALI RENKLİ */
  .hero-baslik,
  .cards-section,
  .about-content,
  .gallery-grid::before,
  .contact-grid::before {
    text-align: center;
  }
  .hero-baslik h1,
  .cards-section h2,
  .about-text h2,
  .address-block-centered h2 {
    color: #00bfa5;
    font-size: 2.4em;
    margin-bottom: 15px;
  }
  .hero-baslik p {
    font-size: 1.2em;
    color: #cfd8dc;
  }
  
  /* HERO */
  .hero {
    position: relative;
    height: 79vh;
    background-image: url("images/hero.jpg");
    background-size: cover;
    background-position: center;
  }
  
  .hero-overlay {
    background: rgba(0, 0, 0, 0.6);
    height: 100%;
    width: 100%;
    text-align: center;
    padding-top: 170px;
    position: relative;
  }
  
    
  @keyframes bounceDown {
    0%, 100% { transform: translateY(0);}
    50% { transform: translateY(16px);}
  }
  
  
  @media (max-width: 600px) {
    .hero-overlay {
      padding-top: 100px !important; /* 170px yerine 45px veya ihtiyaca göre 30-60 arası yazabilirsin */
    }
   

      }
      .hero p {
        font-size: 1.15em;
        color: #ccc !important;     /* TEKRAR AÇIK GRI */
      }
    
    .hero h1 {
        font-size: 2.6em;
        color: #00bfff;
        font-weight: bold;
        letter-spacing: 1.5px;
        margin-bottom: 16px;
        transition: color 0.2s;
      }
      
      .hero h1:hover {
        color: #00e5ff;
      }
      
    .btn {
        padding: 12px 25px;
        background: #00bfff;
        color: #000;
        font-weight: bold;
        border-radius: 8px;
        display: inline-block;
        margin-top: 12px;
        text-decoration: none;
        transition: background 0.22s;
      }
      .btn:hover {
        background: #009acd;
        color: #fff;
      }
      
  /* HİZMETLER */
  .service {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 60px;
    background-color: #1e1e1e;
    border-bottom: 1px solid #333;
  }
  .service:nth-child(even) {
    flex-direction: row-reverse;
    background-color: #252525;
  }
  .service-text {
    width: 50%;
    padding-right: 40px;
  }
  .service-text h2 {
    font-size: 1.8em;
    color: #00bfff;
    margin-bottom: 10px;
  }
  .service-text p {
    font-size: 1em;
  }
  .service-img {
    width: 45%;
  }
  .service-img img {
    width: 100%;
    border-radius: 10px;
    border: 2px solid #444;
  }
  
/* GALERİ KISMI */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Masaüstü için 3 sütun */
    gap: 24px;
    padding: 26px 0 32px 0;  /* Üst boşluk az, resimler yukarıdan başlıyor */
    background-color: #1e1e1e;
    margin-top: 0 !important;
    min-height: 60vh;
  }
  
  .gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 16px;
    border: 2.5px solid #333;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    display: block;
    transition: 0.22s;
  }
  
  .gallery-item img:hover {
    transform: scale(1.045);
    border-color: #00bfff;
  }
  
  /* TABLET */
  @media (max-width: 992px) {
    .gallery-grid {
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      padding: 12px 0 18px 0;
      margin-top: 0 !important;
    }
    .gallery-item img {
      height: 40vw;
      max-height: 250px;
      border-radius: 11px;
    }
  }
  
  /* MOBİL: 1 sütun, yazı var, resimler büyük, hemen başlasın */
  @media (max-width: 600px) {
    .gallery-grid {
      grid-template-columns: 1fr;
      gap: 12px;         /* Biraz aralık büyütüldü */
      padding: 10px 0 18px 0;
    }
    .gallery-item img {
      width: 100vw;
      max-width: 100vw;
      min-width: 100vw;
      margin-left: 50%;
      transform: translateX(-50%);
      height: 70vw;         /* Eski 55vw’di, daha büyük */
      max-height: 340px;    /* Daha büyük maksimum */
      min-height: 180px;    /* Minimumu da büyüt */
      border-radius: 14px;  /* Köşe yumuşaklığı biraz arttı */
    }
  }
  
  
  /* DİĞER */
  .section-note {
    font-size: 1em;
    color: #555;
    margin-bottom: 15px;
  }
  .contact-link {
    margin-top: 45px; /* 150 çok fazla, 45 yeterli */
  }
  .btn-outline {
    display: inline-block;
    padding: 12px 26px;
    border: 2px solid #2a4b7a;
    color: #2a4b7a;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    background: #fff;
    font-weight: 600;
  }
 
  
  
  /* HAKKIMIZDA */
  .about-content {
    background-color: #1e1e1e;
    padding: 80px 40px;
  }
  .about-text {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
  }
  .about-text p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #ddd;
  }
  
  /* İLETİŞİM */
  .contact-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    background-color: #1e1e1e;
    padding: 80px 40px;
  }
  .contact-card {
    background-color: #121212;
    border: 2px solid #333;
    border-radius: 12px;
    padding: 30px 40px;
    width: 400px;
    text-align: center;
  }
  .contact-card h2 {
    color: #00bfff;
    font-size: 1.4em;
    margin-bottom: 10px;
  }
  .contact-card p {
    font-size: 1.1em;
    margin: 8px 0;
  }
  .whatsapp-btn {
    background-color: #25d366;
    color: #000;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: bold;
    margin-top: 10px;
    display: inline-block;
  }
  .whatsapp-btn:hover {
    background-color: #1ebc5c;
  }
  .section-note {
    font-size: 1em;
    color: #555;
    margin-bottom: 15px;
  }
  .contact-link {
    margin-top: 20px;
  }

  
  .btn-outline:hover {
    background-color: #2a4b7a;
    color: #fff;
  }
  /* ADRES BLOĞU */
  .address-block-centered {
    background-color: #111;
    color: #cfd8dc;
    text-align: center;
    padding: 60px 20px;
  }
  .address-block-centered p {
    font-size: 1.1em;
  }
  
  /* FOOTER */
  footer {
    text-align: center;
    background-color: #000;
    padding: 20px;
    font-size: 0.9em;
    color: #777;
  }
  
  .footer-brand {
    color: #00bfff;
    font-weight: 500;
  }
  
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .menu-toggle {
        display: none !important;
      }
  
    .navbar {
      flex-direction: column;
      align-items: flex-start;
    }
  
   /* Bu kısmı mevcut olan .nav-links kısmının yerine yaz! */
   .nav-links {
    display: flex;
    gap: 40px;        /* linkler arası mesafe */
    font-size: 1.1em; /* biraz daha büyük yazı */
    margin-left: 40px;/* sola kaydırma */
    align-items: center;
  }
  
  /* Bu kısmı mevcut olan .nav-links.show kısmının yerine yaz! */
  .nav-links.show {
    max-height: 500px; /* Menüdeki tüm linkleri gösterecek kadar geniş */
    padding: 15px 20px;
  }
  
  


  
    .insta-icon {
      align-self: flex-end;
      margin-bottom: 5px;
      margin-top: -80px;
    }
  
    .insta-icon img {
      width: 18px;
      height: 18px;
    }
  
    .service {
      flex-direction: column;
      padding: 30px 20px;
    }
  
    .service-text,
    .service-img {
      width: 100%;
      padding: 10px 0;
    }
  
   
  
    .card {
      width: 90%;
    }
  }

  footer .designer {
    color: #555;
    font-size: 0.85em;
    margin-top: 5px;
  }
  .logo {
    display: flex;
    align-items: center;
    overflow: visible; /* eklendi */
  }
  .logo a {
    font-size: 1.7em;
    font-weight: bold;
    text-decoration: none;
    color:#fdfdfd;
    padding-right: 10px; /* eklendi */
  }
  
  
  
  .logo a:hover {
    color: #08e8d9;
  }
  
  .logo-img {
    width: 90px;
    height: auto;
    transform: translateY(-8px) translateX(-5px);
  }  
  .home-section {
    padding: 60px 20px;
    text-align: center;
    max-width: 1000px;
    margin: auto;
    background-color: #f2f2f2; /* açık gri zemin */
    transition: all 0.7s cubic-bezier(.37,1.01,.88,.47);
    opacity: 0;
    transform: translateY(30px);
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  }
  
  .home-section.dark {
    background-color: #e5e5e5; /* diğer gri ton */
  }
  
  .home-section h2 {
    font-size: 2.2em; /* biraz daha büyük */
    margin-bottom: 20px;
    color: #2a4b7a;
  }
  
  .home-section p {
    font-size: 1.2em; /* biraz büyütüldü */
    color: #333;
    margin-bottom: 20px;
  }
  
  
  /* Scroll reveal efekt */

  .scroll-down-arrow {
    position: absolute;
    left: 700px;
    bottom: 32px;
    transform: translateX(-50%);
    cursor: pointer;
    background: rgba(30,30,30,0.6);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.18);
    transition: background 0.2s, transform 0.2s;
    z-index: 50;
    animation: bounceDown 1.8s infinite;
  }
  .scroll-down-arrow span {
    color: #00bfff;
    font-size: 3.2em;
    font-weight: bold;
    line-height: 1.2;
    pointer-events: none;
  }
  
  
  @keyframes bounceDown {
    0%, 100% { transform: translateY(0);}
    50%      { transform: translateY(18px);}
  }
  .home-section.active,
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
/* Mobilde özel düzenleme */
@media (max-width: 600px) {
    .scroll-down-arrow {
      left: 175px;
      bottom: 18px;
      width: 60px;
      height: 60px;
      transform: translateX(-50%);
    }
  }
  @media (max-width: 600px) {
    .nav-links {
      display: none !important;
    }
    .navbar {
      padding-bottom: 0px;
      min-height: 62px; /* üst alanı daralt */
    }
  }
  .home-section h2 {
    font-size: 2.2em;
    margin-bottom: 10px;
    color: #2a4b7a;
    position: relative;
  }
  
  .home-section h2::after {
    content: "";
    display: block;
    margin: 10px auto 0;
    width: 70px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg,#00bfff 0%,#2a4b7a 100%);
    opacity: 0.9;
    transition: width 0.4s;
  }
  .home-section.active h2::after {
    width: 120px;
  }
  
  .footer-main {
    background: linear-gradient(120deg, #181c26 70%, #222 100%);
    color: #ded9c6;
    padding: 46px 0 0 0;
    font-family: 'Segoe UI', sans-serif;
    box-shadow: 0 -4px 40px rgba(44,44,66,0.18);
    position: relative;
    z-index: 2;
  }
  
  .footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    padding: 0 32px;
    flex-wrap: wrap;
  }
  
  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 120px;
  }
  
  .logo-col {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
  .footer-logo {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(32,32,32,0.12);
    border: 1.5px solid #c0aa7d;
    margin-right: 6px;
  }
  .footer-brand {
    font-size: 1.28em;
    font-weight: bold;
    color: #c0aa7d;
    letter-spacing: 1.2px;
    filter: drop-shadow(0 2px 6px #181c26b0);
  }
  
  .links-col {
    flex-direction: row;
    gap: 24px;
    align-items: center;
  }
  .links-col a {
    color: #d4d0ba;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.09em;
    transition: color 0.18s;
    letter-spacing: 0.5px;
    border-bottom: 2px solid transparent;
  }
  .links-col a:hover {
    color: #00bfff;
    border-bottom: 2px solid #00bfff;
  }
  
  .social-col {
    align-items: flex-end;
    flex-direction: row;
    gap: 18px;
  }
 
  .footer-bottom {
    padding: 14px 0 10px 0;
    text-align: center;
    margin-top: 30px;
    position: relative;
  }
  .footer-divider {
    height: 2.5px;
    background: linear-gradient(90deg, #c0aa7d 30%, #00bfff 100%);
    margin: 0 auto 16px auto;
    max-width: 220px;
    border-radius: 3px;
    opacity: 0.6;
  }
  .designer {
    color: #c0aa7d;
    font-size: 0.98em;
    letter-spacing: 1px;
    opacity: 0.88;
  }
  
  /* Responsive */
  @media (max-width: 850px) {
    .footer-row {
      flex-direction: column;
      gap: 22px;
      align-items: flex-start;
    }
    
.links-col {
    flex-direction: row;
    gap: 24px;
    align-items: center;
    justify-content: center;   /* Linkleri de ortala */
    margin: 0 auto;           /* Responsive için ortala */
  }
    .social-col {
      margin-top: 18px;
    }
    .footer-main {
      padding-left: 18px;
      padding-right: 18px;
    }
  }
  @media (max-width: 600px) {
    .footer-main {
      padding: 22px 0 0 0;
    }
    .footer-row {
        display: flex;
        align-items: center;
        justify-content: center;    /* SOLA DEĞİL, ORTAYA */
        max-width: 1200px;
        margin: auto;
        padding: 0 32px;
        flex-wrap: wrap;
      }
    .footer-logo {
        width: 38px;   /* Eski 54px ise küçülttük */
        height: 38px;  /* Eski 54px ise küçülttük */
        border-radius: 9px;
        background: #fff;
        box-shadow: 0 2px 10px rgba(32,32,32,0.10);
        border: 1.5px solid #c0aa7d;
        margin-right: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;    /* Ekstra padding olmasın */
      }
      
      
      .footer-brand {
        font-size: 1.28em;
        font-weight: bold;
        color: #b0b0b0;       /* AÇIK GRİ */
        letter-spacing: 1.2px;
        filter: none;
      }
    .logo-col {
        flex-direction: row;
        align-items: flex-end;    /* "center" yerine "flex-end" olunca içerikler yukarı yaklaşır */
        gap: 15px;
        margin-top: -30px;       /* Yukarı almak için negatif margin */
      }
      
      /* Eğer daha fazla yukarı almak istersen bu değeri -24px, -30px gibi yapabilirsin */
      
    
  }
  .footer-logo img {
    width: 700px;     /* veya height: 75%; */

    display: block;
    margin: auto;
  }
  @media (max-width: 600px) {
    .links-col {
      flex-direction: column;
      gap: 7px;
      align-items: center;
      justify-content: center;
      margin: 0 auto;
    }
  }
  .footer-row {
    display: flex;
    align-items: center;
    justify-content: center;    /* HER ZAMAN ORTADA! */
    max-width: 1200px;
    margin: auto;
    padding: 0 32px;
    flex-wrap: wrap;
  }
  .links-col {
    flex-direction: row;
    gap: 24px;
    align-items: center;
    justify-content: center;    /* Satırda da ortala */
    margin: 0 auto;
  }
  

  
  

 
  