  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: #333;
      overflow-x: hidden;
  }

  /* Animations */
  @keyframes fadeInUp {
      from {
          opacity: 0;
          transform: translateY(30px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  @keyframes fadeIn {
      from {
          opacity: 0;
          transform: translateY(-20px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  @keyframes pulse {

      0%,
      100% {
          opacity: 0.3;
          transform: scale(1);
      }

      50% {
          opacity: 0.5;
          transform: scale(1.1);
      }
  }

  @keyframes bounce {

      0%,
      100% {
          transform: translateY(0);
      }

      50% {
          transform: translateY(-10px);
      }
  }

  @keyframes float {

      0%,
      100% {
          transform: translateY(0px) rotate(0deg);
      }

      50% {
          transform: translateY(-20px) rotate(5deg);
      }
  }

  /* Header */
  /*header {*/
  /*    position: relative;*/
  /*    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);*/
  /*    color: white;*/
  /*    padding: 5rem 0;*/
  /*    text-align: center;*/
  /*    overflow: hidden;*/
  /*}*/

  /*.header-emoji {*/
  /*    position: absolute;*/
  /*    font-size: 6rem;*/
  /*    animation: pulse 3s infinite;*/
  /*    pointer-events: none;*/
  /*}*/

  /*.emoji-1 {*/
  /*    top: 10%;*/
  /*    left: 10%;*/
  /*    animation-delay: 0s;*/
  /*}*/

  /*.emoji-2 {*/
  /*    bottom: 10%;*/
  /*    right: 10%;*/
  /*    animation-delay: 1s;*/
  /*}*/

  /*.emoji-3 {*/
  /*    top: 50%;*/
  /*    left: 30%;*/
  /*    animation-delay: 0.5s;*/
  /*    font-size: 4rem;*/
  /*}*/

  /*header h1 {*/
  /*    font-size: 3.5rem;*/
  /*    margin-bottom: 1rem;*/
  /*    animation: fadeIn 1s ease-out;*/
  /*    position: relative;*/
  /*    z-index: 2;*/
  /*}*/

  /*header p {*/
  /*    font-size: 1.5rem;*/
  /*    opacity: 0.95;*/
  /*    animation: fadeIn 1s ease-out 0.3s both;*/
  /*    position: relative;*/
  /*    z-index: 2;*/
  /*}*/

  .cta-button {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-top: 2rem;
      background: white;
      color: #e74c3c;
      padding: 1rem 2rem;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1.1rem;
      text-decoration: none;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      transition: all 0.3s;
      position: relative;
      z-index: 2;
  }

  .cta-button:hover {
      transform: scale(1.05);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
      background: #fef5f5;
  }

  .bounce-arrow {
      animation: bounce 2s infinite;
  }

  /* Navigation */
  nav {
      background: #2c3e50;
      padding: 1rem 0;
      position: sticky;
      top: 0;
      z-index: 100;
      transition: all 0.3s;
  }

  nav.scrolled {
      background: #1a252f;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }

  .nav-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .nav-logo {
      font-size: 1.5rem;
      font-weight: bold;
      color: white;
  }

  .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      padding: 0.5rem;
  }

  .hamburger span {
      width: 25px;
      height: 3px;
      background: white;
      margin: 3px 0;
      transition: all 0.3s;
      border-radius: 3px;
  }

  .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(8px, 8px);
  }

  .hamburger.active span:nth-child(2) {
      opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -7px);
  }


  /* Navbar Logo */
  .nav-logo {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      font-size: 1.5rem;
      font-weight: bold;
      color: white;
      cursor: pointer;
      transition: all 0.3s;
  }

  .nav-logo:hover {
      transform: scale(1.05);
  }

  .logo-img {
      height: 50px;
      width: auto;
      transition: transform 0.3s;
      filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
  }

  .logo-img:hover {
      transform: scale(1.1) rotate(5deg);
  }

  /* Header Logo */
  .header-logo {
      width: 150px;
      height: auto;
      margin-bottom: 1.5rem;
      animation: fadeIn 1s ease-out, float 3s ease-in-out infinite;
      filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
      position: relative;
      z-index: 2;
  }

  /* Mobile Responsive Logo */
  @media (max-width: 768px) {
      .nav-logo span {
          display: none;
          /* Mobilde sadece logo göster */
      }

      .logo-img {
          height: 40px;
      }

      .header-logo {
          width: 100px;
          margin-bottom: 1rem;
      }
  }

  @media (max-width: 480px) {
      .header-logo {
          width: 80px;
      }

      .logo-img {
          height: 35px;
      }
  }





  nav ul {
      list-style: none;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      margin: 0;
  }

  nav ul li {
      margin: 0 1.5rem;
  }

  nav ul li a {
      color: white;
      text-decoration: none;
      font-weight: 500;
      padding: 0.5rem 1rem;
      border-radius: 5px;
      transition: all 0.3s;
      display: inline-block;
      position: relative;
  }

  nav ul li a:hover {
      color: #e74c3c;
      background: rgba(255, 255, 255, 0.1);
  }

  nav ul li a.active {
      border-bottom: 2px solid #e74c3c;
  }

  /* Container */
  .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
  }

  /* Section */
  section {
      padding: 5rem 0;
  }

  section h2 {
      text-align: center;
      font-size: 3rem;
      margin-bottom: 1rem;
      color: #2c3e50;
      position: relative;
      padding-bottom: 1rem;
  }

  section h2::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: #e74c3c;
      border-radius: 2px;
  }

  .about-text {
      text-align: center;
      max-width: 800px;
      margin: 2rem auto 3rem;
      font-size: 1.2rem;
      color: #666;
      line-height: 1.8;
  }

  /* Stats */
  .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
  }

  .stat-card {
      background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
      padding: 2rem;
      border-radius: 15px;
      text-align: center;
      transition: all 0.3s;
      cursor: pointer;
  }

  .stat-card:hover {
      transform: translateY(-10px) scale(1.05);
      box-shadow: 0 10px 30px rgba(231, 76, 60, 0.2);
  }

  .stat-card .emoji {
      font-size: 4rem;
      margin-bottom: 1rem;
      display: inline-block;
      transition: all 0.3s;
  }

  .stat-card:hover .emoji {
      animation: float 1s ease-in-out;
  }

  .stat-card h3 {
      color: #2c3e50;
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
  }

  .stat-card p {
      color: #666;
  }

  /* Menu Grid */
  .menu-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
  }

  .menu-item {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      opacity: 0;
      animation: fadeInUp 0.6s ease-out forwards;
  }

  .menu-item:nth-child(1) {
      animation-delay: 0.1s;
  }

  .menu-item:nth-child(2) {
      animation-delay: 0.2s;
  }

  .menu-item:nth-child(3) {
      animation-delay: 0.3s;
  }

  .menu-item:nth-child(4) {
      animation-delay: 0.4s;
  }

  .menu-item:nth-child(5) {
      animation-delay: 0.5s;
  }

  .menu-item:nth-child(6) {
      animation-delay: 0.6s;
  }

  .menu-item:hover {
      transform: translateY(-15px) scale(1.02);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  }

  .menu-item-image {
      width: 100%;
      /* height: 200px; */
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 5rem;
      position: relative;
      overflow: hidden;
      transition: all 0.3s;
  }

  .menu-item:hover .menu-item-image {
      transform: scale(1.1);
  }

  .menu-item-image::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0);
      transition: all 0.3s;
  }

  .menu-item:hover .menu-item-image::before {
      background: rgba(0, 0, 0, 0.1);
  }

  .menu-item-emoji {
      transition: all 0.4s;
      position: relative;
      z-index: 2;
  }

  .menu-item:hover .menu-item-emoji {
      transform: scale(1.3) rotate(15deg);
  }

  .gradient-1 {
      background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  }

  .gradient-2 {
      background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  }

  .gradient-3 {
      background: linear-gradient(135deg, #f1c40f 0%, #e67e22 100%);
  }

  .gradient-4 {
      background: linear-gradient(135deg, #9b59b6 0%, #e74c3c 100%);
  }

  .gradient-5 {
      background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  }

  .gradient-6 {
      background: linear-gradient(135deg, #f39c12 0%, #d68910 100%);
  }

  .menu-item-content {
      padding: 1.5rem;
  }

  .menu-item h3 {
      color: #2c3e50;
      margin-bottom: 0.5rem;
      font-size: 1.5rem;
  }

  .menu-item p {
      color: #666;
      margin-bottom: 1rem;
  }

  .menu-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .menu-item .price {
      font-size: 1.8rem;
      font-weight: bold;
      color: #e74c3c;
  }

  .order-btn {
      background: #e74c3c;
      color: white;
      border: none;
      padding: 0.6rem 1.5rem;
      border-radius: 50px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
  }

  .order-btn:hover {
      background: #c0392b;
      transform: scale(1.1);
      box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
  }

  /* Social Media */
  .social-media {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      margin: 2rem 0;
  }

  .social-icon {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      text-decoration: none;
      transition: all 0.3s;
      color: white;
  }

  .social-icon:hover {
      transform: translateY(-5px) scale(1.1);
      box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
  }

  .instagram {
      background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  }

  .facebook {
      background: #1877f2;
  }

  .twitter {
      background: #1da1f2;
  }

  .whatsapp {
      background: #25d366;
  }

  /* Contact */
  #iletisim {
      background: #f8f9fa;
  }

  .contact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
      margin-bottom: 3rem;
  }

  .contact-card {
      background: white;
      padding: 2rem;
      border-radius: 15px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: all 0.3s;
  }

  .contact-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(231, 76, 60, 0.2);
  }

  .contact-icon {
      font-size: 3rem;
      margin-bottom: 1rem;
  }

  .contact-card h3 {
      color: #2c3e50;
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
  }

  .contact-card p {
      color: #666;
  }

  .map-container {
      width: 100%;
      height: 450px;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  }

  .map-container iframe {
      width: 100%;
      height: 100%;
      border: none;
  }

  /* Footer */
  footer {
      background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
      color: white;
      text-align: center;
      padding: 2rem 0;
  }

  footer p {
      margin-bottom: 0.5rem;
  }

  /* Mobile Responsive */
  @media (max-width: 768px) {
      header h1 {
          font-size: 2.5rem;
      }

      header p {
          font-size: 1.2rem;
      }

      .header-emoji {
          font-size: 4rem;
      }

      .hamburger {
          display: flex;
      }

      nav ul {
          position: fixed;
          left: -100%;
          top: 60px;
          flex-direction: column;
          background: #2c3e50;
          width: 100%;
          text-align: center;
          transition: 0.3s;
          box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
          padding: 2rem 0;
      }

      nav ul.active {
          left: 0;
      }

      nav ul li {
          margin: 1rem 0;
      }

      nav ul li a {
          font-size: 1.2rem;
          padding: 1rem;
          display: block;
      }

      section h2 {
          font-size: 2rem;
      }

      .menu-grid {
          grid-template-columns: 1fr;
      }

      .contact-grid {
          grid-template-columns: 1fr;
      }

      .map-container {
          height: 300px;
      }

      .social-media {
          gap: 1rem;
      }

      .social-icon {
          width: 45px;
          height: 45px;
          font-size: 1.3rem;
      }
  }
  
  
  
  /* ========== WHATSAPP FLOATING BUTTON ========== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: pulse-whatsapp 2s infinite;
    overflow: hidden;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    transition: transform 0.5s;
}

.whatsapp-float:hover::before {
    transform: scale(1);
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s;
}

.whatsapp-float:hover .whatsapp-icon {
    transform: scale(1.1) rotate(-5deg);
}

.whatsapp-text {
    position: absolute;
    right: 70px;
    background: #2c3e50;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-text::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid #2c3e50;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Pulse Animation */
@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7), 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Ripple Effect on Click */
.whatsapp-float::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    opacity: 0;
}

.whatsapp-float:active::after {
    animation: ripple-whatsapp 0.6s ease-out;
}

@keyframes ripple-whatsapp {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-icon {
        width: 30px;
        height: 30px;
    }
    
    .whatsapp-text {
        display: none; /* Mobilde tooltip gizli */
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
}
 
 /* ========== GALLERY SECTION ========== */
#galeri {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.gallery-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Gallery Filter */
.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: white;
    border: 2px solid #e74c3c;
    color: #e74c3c;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.filter-btn:hover {
    background: #ffe5e5;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.2);
}

.filter-btn.active {
    background: #e74c3c;
    color: white;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
}

.filter-icon {
    font-size: 1.3rem;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 1;
    transform: scale(1);
}

.gallery-item.hide {
    opacity: 0;
    transform: scale(0.8);
    height: 0;
    margin: 0;
    padding: 0;
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.lightbox-close:hover {
    color: #e74c3c;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s;
    user-select: none;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(231, 76, 60, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    max-width: 80%;
}

/* Video Styling for Gallery */
.gallery-item video {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.gallery-item:hover video {
    transform: scale(1.15);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-item img {
        height: 300px;
    }

    .filter-btn {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 40px;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 30px;
        padding: 0.5rem 1rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-caption {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .gallery-filter {
        gap: 0.5rem;
    }

    .filter-btn {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    .filter-icon {
        font-size: 1.1rem;
    }

    .gallery-item img {
        height: 250px;
    }
} 


/* ========== SEARCH BOX ========== */
/* ==========================================
   12. GELİŞMİŞ ARAMA SİSTEMİ (Merged & Cleaned)
   ========================================== */
/* Navbar Search Styles */
.navbar-search {
    position: relative;
    margin: 0 20px;
    display: flex;
    align-items: center;
}

.search-input {
    width: 250px;
    padding: 8px 35px 8px 15px;
    border: 2px solid #ddd;
    border-radius: 25px;
    background: #f8f9fa;
    color: var(--primary-color);
    font-size: 14px;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    background: white;
    border-color: var(--secondary-color);
    width: 300px;
}

.search-input::placeholder {
    color: #999;
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
}

/* Advanced Search Box Wrapper & Results */
.search-wrapper {
    position: relative;
    /*margin-bottom: 30px;*/
}

.search-container {
    position: relative;
    background: white;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    overflow: visible;
    max-width: 500px;
    margin: 0 auto;
}

#searchInput {
    width: 100%;
    padding: 20px 60px 20px 30px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    outline: none;
    background: transparent;
    transition: all 0.3s ease;
}

.search-container .search-icon {
    right: 25px;
    color: #667eea;
    font-size: 20px;
}

#searchResults {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
    max-height: 500px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
    animation: slideDown 0.3s ease;
}

#searchResults.active {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-item, .search-result-item {
    padding: 15px 25px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
}

.result-item:last-child {
    border-bottom: none;
    border-radius: 0 0 20px 20px;
}

.result-item:first-child {
    border-radius: 20px 20px 0 0;
}

.result-item:hover, .search-result-item:hover {
    background: linear-gradient(90deg, #f8f9fa 0%, #e9ecef 100%);
    padding-left: 30px;
}

.result-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    font-size: 16px;
}

.result-content {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 5px;
}

.result-section, .search-result-section {
    display: inline-block;
    padding: 4px 12px;
    background: #667eea;
    color: white;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    margin-top: 5px;
}

.result-score {
    display: inline-block;
    margin-left: 10px;
    color: #999;
    font-size: 11px;
}

mark {
    background-color: #ffd700;
    color: #333;
    padding: 2px 5px;
    border-radius: 3px;
    font-weight: 600;
}

.no-results, .search-no-results {
    padding: 40px 20px;
    text-align: center;
    color: #999;
}

.no-results i, .search-no-results i {
    font-size: 50px;
    margin-bottom: 15px;
    color: #ddd;
}

.result-footer {
    padding: 15px 25px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    text-align: center;
    color: #666;
    font-size: 13px;
    border-radius: 0 0 20px 20px;
}

/* Search Scrollbar */
#searchResults::-webkit-scrollbar {
    width: 8px;
}

#searchResults::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 0 20px 20px 0;
}

#searchResults::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 4px;
}

/* Loading Spinner */
.loading {
    padding: 20px;
    text-align: center;
    color: #999;
}

.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Demo Content within Search Context */
.demo-content {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    margin-top: 30px;
}

.demo-section {
    margin-bottom: 30px;
}

.demo-section h2 {
    color: #667eea;
    margin-bottom: 15px;
    font-size: 1.8em;
}

.demo-section h3 {
    color: #764ba2;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.demo-section p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.skill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.skill-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
}

 
 
/* =========================================
   SCROLL ANİMASYONLARI (Fade Up Effect)
   ========================================= */
.reveal {
    position: relative;
    transform: translateY(50px); /* Aşağıdan başla */
    opacity: 0;
    transition: all 1s ease; /* 1 saniyelik yumuşak geçiş */
}

.reveal.active {
    transform: translateY(0); /* Yerine gel */
    opacity: 1;
}

/* Menü ve Galeri öğeleri için özel gecikme */
.menu-item, .gallery-item, .stat-card, .contact-card {
    opacity: 0; /* Başlangıçta gizli */
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.menu-item.active, .gallery-item.active, .stat-card.active, .contact-card.active {
    opacity: 1;
    transform: translateY(0);
}

/* Lightbox Düzeltmeleri */
.lightbox img, .lightbox video {
    max-height: 80vh;
    max-width: 90vw;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
} 
  