      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(30px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      @keyframes pulse {
        0%,
        100% {
          transform: scale(1);
        }
        50% {
          transform: scale(1.05);
        }
      }

      @keyframes glow {
        0%,
        100% {
          box-shadow: 0 0 20px rgba(255, 140, 66, 0.5);
        }
        50% {
          box-shadow: 0 0 40px rgba(255, 140, 66, 0.8);
        }
      }

      @keyframes float {
        0%,
        100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-10px);
        }
      }

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

      body {
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
        color: #2c1810;
        overflow-x: hidden;
        background: linear-gradient(135deg, #fff9f5 0%, #ffe8d6 100%);
      }

      header {
        background: transparent;
        padding: 1rem 0;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      }
      header.fixed-nav {
            background: linear-gradient(135deg, rgba(139, 69, 19, 0.98) 0%, rgba(218, 112, 51, 0.98) 100%);
            box-shadow: 0 8px 32px rgba(0,0,0,0.3);
            position: fixed;
            animation: glow 3s ease-in-out infinite;
        }

      header.scrolled {
        background: linear-gradient(
          135deg,
          rgba(139, 69, 19, 0.98) 0%,
          rgba(218, 112, 51, 0.98) 100%
        );
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        position: fixed;
        animation: glow 3s ease-in-out infinite;
      }

      nav {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 2rem;
      }

      .logo-container {
        display: flex;
        align-items: center;
        gap: 1rem;
        animation: float 3s ease-in-out infinite;
      }

      .logo {
        height: 80px;
        width: auto;
        border-radius: 15px;
        filter: drop-shadow(0 4px 15px rgba(255, 140, 66, 0.6));
        transition: all 0.3s ease;
        cursor: pointer;
      }

      .logo:hover {
        transform: scale(1.1) rotate(5deg);
        filter: drop-shadow(0 6px 20px rgba(255, 140, 66, 0.9));
      }

      .nav-links {
        display: flex;
        list-style: none;
        gap: 2.5rem;
        align-items: center;
      }

      .nav-links a {
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        padding: 0.5rem 0;
        cursor: pointer;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      }

      .nav-links a::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 3px;
        background: linear-gradient(90deg, #ff6b35, #ffd93d);
        transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 2px 10px rgba(255, 107, 53, 0.6);
      }

      .nav-links a:hover::after {
        width: 100%;
      }

      .nav-links a:hover {
        color: #ffd93d;
        transform: translateY(-3px);
      }

      .hero-slider {
        position: relative;
        height: 100vh;
        overflow: hidden;
      }

      .slide {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
      }

      .slide.active {
        opacity: 1;
        pointer-events: auto;
      }

      .slide-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.6) saturate(1.3);
        display: block;
      }

      .slide-bg {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.6) saturate(1.3);
      }

      .slide-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: white;
        width: 90%;
        max-width: 800px;
      }

      .slide-content h1 {
        font-size: 4.5rem;
        margin-bottom: 1rem;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
        animation: fadeInUp 1s ease;
        background: linear-gradient(135deg, #ffd93d, #ff6b35);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 900;
      }

      .slide-content p {
        font-size: 1.6rem;
        margin-bottom: 2rem;
        text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
        animation: fadeInUp 1s ease 0.3s backwards;
        color: #ffe8d6;
      }

      .slider-dots {
        position: absolute;
        bottom: 3rem;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 1.2rem;
        z-index: 10;
      }

      .dot {
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.4);
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 3px solid rgba(255, 255, 255, 0.8);
      }

      .dot:hover {
        background: rgba(255, 255, 255, 0.8);
        transform: scale(1.3);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
      }

      .dot.active {
        background: linear-gradient(135deg, #ff6b35, #ffd93d);
        border-color: #ffd93d;
        transform: scale(1.4);
        animation: pulse 2s ease-in-out infinite;
        box-shadow: 0 0 30px rgba(255, 107, 53, 0.9);
      }

      .about {
        padding: 6rem 2rem;
        background: linear-gradient(
          135deg,
          #fff9f5 0%,
          #ffe8d6 50%,
          #ffd4b3 100%
        );
        position: relative;
        overflow: hidden;
      }

      .about::before {
        content: "☕";
        position: absolute;
        font-size: 25rem;
        opacity: 0.03;
        top: -5%;
        left: -5%;
        animation: float 8s ease-in-out infinite;
      }

      .about-container {
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
        position: relative;
        z-index: 1;
      }
      .about-decorations {
        /* position: absolute; */
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        pointer-events: none;
        z-index: 0;
        overflow: hidden;
      }
      @media (max-width: 768px) {
        .about-decorations {
          display: none;
        }
      }

      .coffee-bean {
        position: absolute;
        border-radius: 50%;
        background: linear-gradient(135deg, #8b4513, #da7033);
        box-shadow: 0 8px 30px rgba(139, 69, 19, 0.3);
      }

      .coffee-bean-1 {
        width: 150px;
        height: 150px;
        top: 10%;
        left: -75px;
        animation: floatRotate1 15s ease-in-out infinite;
      }

      .coffee-bean-2 {
        width: 120px;
        height: 120px;
        top: 60%;
        left: -60px;
        animation: floatRotate2 18s ease-in-out infinite;
      }

      .coffee-bean-3 {
        width: 180px;
        height: 180px;
        top: 15%;
        right: -90px;
        animation: floatRotate3 20s ease-in-out infinite;
      }

      .coffee-bean-4 {
        width: 100px;
        height: 100px;
        bottom: 20%;
        right: -50px;
        animation: floatRotate4 16s ease-in-out infinite;
      }

      @keyframes floatRotate1 {
        0%, 100% {
          transform: translateY(0) translateX(0) rotate(0deg);
          opacity: 0.6;
        }
        25% {
          transform: translateY(-30px) translateX(30px) rotate(90deg);
          opacity: 0.8;
        }
        50% {
          transform: translateY(-60px) translateX(60px) rotate(180deg);
          opacity: 1;
        }
        75% {
          transform: translateY(-30px) translateX(30px) rotate(270deg);
          opacity: 0.8;
        }
      }

      @keyframes floatRotate2 {
        0%, 100% {
          transform: translateY(0) translateX(0) rotate(0deg);
          opacity: 0.5;
        }
        25% {
          transform: translateY(-40px) translateX(40px) rotate(120deg);
          opacity: 0.7;
        }
        50% {
          transform: translateY(-80px) translateX(80px) rotate(240deg);
          opacity: 0.9;
        }
        75% {
          transform: translateY(-40px) translateX(40px) rotate(300deg);
          opacity: 0.7;
        }
      }

      @keyframes floatRotate3 {
        0%, 100% {
          transform: translateY(0) translateX(0) rotate(0deg);
          opacity: 0.7;
        }
        25% {
          transform: translateY(-50px) translateX(-50px) rotate(-90deg);
          opacity: 0.9;
        }
        50% {
          transform: translateY(-100px) translateX(-100px) rotate(-180deg);
          opacity: 1;
        }
        75% {
          transform: translateY(-50px) translateX(-50px) rotate(-270deg);
          opacity: 0.9;
        }
      }

      @keyframes floatRotate4 {
        0%, 100% {
          transform: translateY(0) translateX(0) rotate(0deg);
          opacity: 0.6;
        }
        25% {
          transform: translateY(-35px) translateX(-35px) rotate(-110deg);
          opacity: 0.8;
        }
        50% {
          transform: translateY(-70px) translateX(-70px) rotate(-220deg);
          opacity: 1;
        }
        75% {
          transform: translateY(-35px) translateX(-35px) rotate(-330deg);
          opacity: 0.8;
        }
      }
      .about h2 {
        font-size: 3.5rem;
        background: linear-gradient(135deg, #8b4513, #da7033, #ff6b35);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 2rem;
        position: relative;
        display: inline-block;
        font-weight: 900;
        animation: fadeInUp 1s ease;
      }

      .about h2::after {
        content: "";
        position: absolute;
        bottom: -15px;
        left: 35%;
        transform: translateX(-50%);
        width: 120px;
        height: 5px;
        background: linear-gradient(90deg, #ff6b35, #ffd93d, #ff6b35);
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.5);
        animation: pulse 2s ease-in-out infinite;
      }

      .about p {
        font-size: 1.3rem;
        line-height: 2;
        color: #5d4037;
        max-width: 900px;
        margin: 2rem auto;
        animation: fadeInUp 1s ease 0.2s backwards;
        transition: all 0.3s ease;
      }

      .about p:hover {
        transform: scale(1.02);
        color: #3d2817;
      }

      .section-dark {
        background: linear-gradient(
          135deg,
          #3d2817 0%,
          #6b3410 50%,
          #8b4513 100%
        );
        color: #fff;
        padding: 120px 0;
        position: relative;
        overflow: hidden;
      }

      .section-dark::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 100%;
        background: radial-gradient(
            circle at 20% 50%,
            rgba(255, 107, 53, 0.1) 0%,
            transparent 50%
          ),
          radial-gradient(
            circle at 80% 80%,
            rgba(255, 217, 61, 0.1) 0%,
            transparent 50%
          );
        animation: float 10s ease-in-out infinite;
      }

      .section-dark .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 60px;
        position: relative;
        z-index: 1;
      }

      .menu-intro {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 80px;
      }

      .menu-intro h2 {
        font-size: 3.5rem;
        background: linear-gradient(135deg, #ffd93d, #ff6b35);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1.5rem;
        position: relative;
        z-index: 1;
        font-weight: 900;
        animation: fadeInUp 1s ease;
      }

      .menu-intro p {
        font-size: 1.2rem;
        line-height: 1.9;
        color: #ffe8d6;
      }

      .products-grid-categories {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        margin-top: 80px;
      }

      .product-card {
        position: relative;
        overflow: hidden;
        cursor: pointer;
        border-radius: 20px;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
      }

      .product-card:hover {
        transform: translateY(-15px) scale(1.03);
        box-shadow: 0 20px 60px rgba(255, 107, 53, 0.4);
        animation: glow 2s ease-in-out infinite;
      }

      .product-image {
        height: 400px;
        background-size: cover;
        background-position: center;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        filter: saturate(1.2);
      }

      .product-card:hover .product-image {
        transform: scale(1.15) rotate(2deg);
        filter: saturate(1.5) brightness(1.1);
      }

      .product-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
        padding: 30px;
        color: white;
        transition: all 0.5s ease;
      }

      .product-card:hover .product-overlay {
        background: linear-gradient(
          to top,
          rgba(139, 69, 19, 0.95),
          transparent
        );
      }

      .product-overlay h3 {
        font-size: 26px;
        font-weight: 700;
        letter-spacing: 2px;
        margin-bottom: 10px;
        color: #ffd93d;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
      }

      .product-overlay p {
        font-size: 15px;
        opacity: 0.95;
      }

      .cta-button {
        display: inline-block;
        padding: 1.3rem 3.5rem;
        background: linear-gradient(135deg, #ff6b35, #ffd93d);
        color: white;
        text-decoration: none;
        font-size: 1.4rem;
        font-weight: 900;
        border-radius: 50px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(255, 107, 53, 0.5);
        position: relative;
        z-index: 1;
        cursor: pointer;
        border: none;
        text-transform: uppercase;
        letter-spacing: 2px;
      }

      .cta-button:hover {
        background: linear-gradient(135deg, #ffd93d, #ff6b35);
        transform: translateY(-8px) scale(1.05);
        box-shadow: 0 15px 50px rgba(255, 107, 53, 0.8);
        animation: glow 1.5s ease-in-out infinite;
      }

      .back-button {
        display: inline-block;
        margin-bottom: 2rem;
        padding: 1rem 2.5rem;
        background: linear-gradient(135deg, #6b3410, #8b4513);
        color: white;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 700;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
        border: none;
        font-size: 1.1rem;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
      }

      .back-button:hover {
        background: linear-gradient(135deg, #8b4513, #da7033);
        transform: translateX(-10px) scale(1.05);
        box-shadow: 0 12px 35px rgba(139, 69, 19, 0.5);
      }

      .categories-section {
        padding: 6rem 2rem;
        background: linear-gradient(135deg, #fff9f5 0%, #ffe8d6 100%);
        display: none;
      }

      .categories-section.active {
        display: block;
      }

      footer {
        background: linear-gradient(
          135deg,
          #2c1810 0%,
          #3d2817 50%,
          #6b3410 100%
        );
        color: white;
        padding: 4rem 2rem 2rem;
        position: relative;
        overflow: hidden;
      }

      footer .footer-container > * {
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.6s ease;
      }

      footer.footer-visible .footer-container > * {
        opacity: 1;
        transform: translateY(0);
      }

      footer .footer-section:nth-child(1) { transition-delay: 0.1s; }
      footer .footer-section:nth-child(2) { transition-delay: 0.2s; }
      footer .footer-section:nth-child(3) { transition-delay: 0.3s; }
      footer .footer-section:nth-child(4) { transition-delay: 0.4s; }

      footer::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 100%;
        background: radial-gradient(
            circle at 30% 20%,
            rgba(255, 107, 53, 0.1) 0%,
            transparent 50%
          ),
          radial-gradient(
            circle at 70% 80%,
            rgba(255, 217, 61, 0.1) 0%,
            transparent 50%
          );
        animation: float 15s ease-in-out infinite;
      }

      .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 3rem;
        margin-bottom: 3rem;
        position: relative;
        z-index: 1;
      }

      .footer-section h3 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
        background: linear-gradient(135deg, #ff6b35, #ffd93d);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 800;
      }

      .social-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        margin-top: 1rem;
        max-width: 200px;
      }

      .social-links a {
        color: white;
        font-size: 2rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        flex: 0 0 calc(33.33% - 1rem);
        background: linear-gradient(135deg, #6b3410, #8b4513);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
      }

      .social-links a:hover {
        background: linear-gradient(135deg, #ff6b35, #ffd93d);
        transform: translateY(-8px) rotate(360deg) scale(1.2);
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.6);
      }

      .visit-form input,
      .visit-form textarea {
        padding: 12px;
        border: 2px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        font-size: 15px;
        background: rgba(255, 255, 255, 0.1);
        color: white;
        transition: all 0.4s ease;
      }

      .visit-form input:focus,
      .visit-form textarea:focus {
        border-color: #ffd93d;
        background: rgba(255, 217, 61, 0.1);
        box-shadow: 0 0 20px rgba(255, 217, 61, 0.3);
        transform: scale(1.02);
      }

      .visit-form button {
        background: linear-gradient(135deg, #ff6b35, #ffd93d);
        border: none;
        color: #fff;
        padding: 12px;
        border-radius: 12px;
        cursor: pointer;
        font-weight: 800;
        font-size: 1.1rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
      }

      .visit-form button:hover {
        background: linear-gradient(135deg, #ffd93d, #ff6b35);
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
      }

      .language-switcher {
        position: relative;
        display: inline-block;
        margin-left: 10px;
        cursor: pointer;
        user-select: none;
      }

      .selected-language {
        display: flex;
        align-items: center;
        gap: 6px;
        color: #ffd93d;
        font-weight: bold;
        transition: all 0.3s ease;
      }

      .selected-language:hover {
        transform: scale(1.1);
        text-shadow: 0 0 10px rgba(255, 217, 61, 0.5);
      }

    /* Dil Değiştirici - Bayrak Stilleri */
      .flag {
        width: 32px;
        height: 24px;
        transition: transform 0.3s ease;
        border-radius: 3px;
        object-fit: cover;
      }

      .selected-language:hover .flag {
        transform: rotate(360deg);
      }

      .language-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: linear-gradient(135deg, #8b4513, #6b3410);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        z-index: 10;
        border-radius: 15px;
        margin-top: 5px;
        min-width: 90px;
        overflow: hidden;
        padding: 5px 0;
      }

      .language-option {
        padding: 10px 14px;
        display: flex;
        align-items: center;
        gap: 8px;
        color: #ffd93d;
        cursor: pointer;
        transition: all 0.3s ease;
      }

      .language-option:hover {
        background: linear-gradient(135deg, #ff6b35, #ffd93d);
        color: white;
        transform: translateX(5px);
      }

      .language-switcher.open .language-list {
        display: block;
        animation: fadeInUp 0.3s ease;
      }

      .modal {
        display: none;
        position: fixed;
        z-index: 2000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.95);
        justify-content: center;
        align-items: center;
      }

      .modal.active {
        display: flex;
        animation: fadeInUp 0.3s ease;
      }

      .modal-content {
        max-width: 90%;
        max-height: 90%;
        object-fit: contain;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(255, 107, 53, 0.5);
      }

      .modal-close {
        position: absolute;
        top: 30px;
        right: 50px;
        color: #ffd93d;
        font-size: 50px;
        cursor: pointer;
        transition: all 0.3s ease;
      }

      .modal-close:hover {
        transform: rotate(90deg) scale(1.2);
        color: #ff6b35;
      }

       .mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
    z-index: 1001;
  }

  .mobile-menu-btn:hover {
    transform: scale(1.1);
  }

      @media (max-width: 768px) {
        .products-grid-categories {
          grid-template-columns: 1fr;
        }

        .slide-content h1 {
          font-size: 2.5rem;
        }
        
        .mobile-menu-btn {
          display: block;
        }
        
        .nav-links {
          position: fixed;
          top: 0;
          right: -100%;
          width: 280px;
          height: 100vh;
          background: linear-gradient(135deg, rgba(139, 69, 19, 0.98) 0%, rgba(218, 112, 51, 0.98) 100%);
          flex-direction: column;
          gap: 0;
          padding: 80px 20px 20px;
          transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
          box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
          z-index: 1000;
          overflow-y: auto;
          align-items: flex-start;
        }
        
        .nav-links.active {
          right: 0;
        }

        .nav-links li {
          width: 100%;
          border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nav-links a {
          display: block;
          padding: 15px 10px;
          width: 100%;
          font-size: 1.1rem;
        }

        .nav-links a::after {
          display: none;
        }

        .language-switcher {
          margin-left: 0;
          margin-top: 15px;
          width: 100%;
        }

        .menu-items {
          grid-template-columns: 1fr !important;
        }

        .footer-container {
          grid-template-columns: 1fr;
          gap: 2rem;
        }

        .menu-content {
          padding: 30px 20px;
        }

        .menu-category h3 {
          font-size: 1.8rem;
        }

        .menu-item {
          flex-direction: column;
          gap: 10px;
          text-align: center;
        }

        .menu-item-price {
          font-size: 1.8rem;
        }

        #careerSection .categories-container > div {
          padding: 1rem;
          margin: 1rem;
          max-width: 100%;
          width: calc(100% - 2rem);
          box-sizing: border-box;
        }

        #careerSection h2 {
          font-size: 1.5rem !important;
        }

        #careerSection p {
          font-size: 0.9rem !important;
        }

        #careerSection input,
        #careerSection textarea,
        #careerSection button {
          font-size: 0.9rem !important;
          width: 100% !important;
          box-sizing: border-box;
        }

        #careerSection form {
          width: 100%;
          box-sizing: border-box;
        }

        #careerSection label {
          font-size: 0.85rem !important;
        }

        #contactFormSection .categories-container > div {
          padding: 1rem;
          margin: 1rem;
          max-width: 100%;
          width: calc(100% - 2rem);
          box-sizing: border-box;
        }

        #contactFormSection h2 {
          font-size: 1.5rem !important;
        }

        #contactFormSection p {
          font-size: 0.9rem !important;
        }

        #contactFormSection input,
        #contactFormSection textarea,
        #contactFormSection select,
        #contactFormSection button {
          font-size: 0.9rem !important;
          width: 100% !important;
          box-sizing: border-box;
        }

        #contactFormSection form {
          width: 100%;
          box-sizing: border-box;
        }

        #contactFormSection label {
          font-size: 0.85rem !important;
        }
      }

      .menu-content {
        background: linear-gradient(135deg, #fff9f5, #ffe8d6);
        padding: 60px;
        border-radius: 20px;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
      }

      .menu-category {
        margin-bottom: 60px;
        animation: fadeInUp 1s ease;
      }

      .menu-category h3 {
        font-size: 2.5rem;
        margin-bottom: 40px;
        background: linear-gradient(135deg, #8b4513, #ff6b35);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-align: center;
        font-weight: 900;
      }

      .menu-items {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
      }

      .menu-item {
        display: flex;
        justify-content: space-between;
        padding: 20px;
        border-bottom: 2px solid #ffd4b3;
        background: white;
        border-radius: 15px;
        transition: all 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        opacity: 0;
        animation: slideInFromSide 0.6s ease forwards;
      }

      .menu-item:nth-child(odd) {
        transform: translateX(-100px);
      }

      .menu-item:nth-child(even) {
        transform: translateX(100px);
      }

      @keyframes slideInFromSide {
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }

      .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: translateX(10px);
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
        border-left: 5px solid #ff6b35;
      }

      .menu-item-info h4 {
        font-size: 1.3rem;
        margin-bottom: 8px;
        color: #3d2817;
        font-weight: 800;
      }

      .menu-item-info p {
        font-size: 14px;
        color: #7d6b5c;
      }

      .menu-item-price {
        font-size: 1.5rem;
        background: linear-gradient(135deg, #ff6b35, #ffd93d);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 900;
      }

      .visit-form {
        display: flex;
        flex-direction: column;
        gap: 15px;
      }

      .visit-form input::placeholder,
      .visit-form textarea::placeholder {
        color: rgba(255, 255, 255, 0.6);
      }
       .menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .menu-overlay.active {
    display: block;
    opacity: 1;
  }

  /* Dropdown Menü Stilleri */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 0.5rem 0;
  cursor: pointer;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-toggle i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-toggle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff6b35, #ffd93d);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 10px rgba(255, 107, 53, 0.6);
}

.nav-dropdown:hover .dropdown-toggle::after {
  width: 100%;
}

.dropdown-toggle:hover {
  color: #ffd93d;
  transform: translateY(-3px);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: linear-gradient(135deg, #8b4513, #6b3410);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  margin-top: 10px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
  overflow: hidden;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: #ffd93d;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background: linear-gradient(135deg, #ff6b35, #ffd93d);
  color: white;
  padding-left: 30px;
}

.dropdown-menu a i {
  margin-right: 10px;
  width: 20px;
}
  @media (max-width: 768px) {
    /* Mobil Dropdown */
.nav-dropdown {
  width: 100%;
}

.dropdown-toggle {
  width: 100%;
  padding: 15px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-menu {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  margin-top: 0;
  box-shadow: none;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0;
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.nav-dropdown.open .dropdown-menu {
  display: block;
  max-height: 300px;
}

.dropdown-menu a {
  padding: 12px 20px 12px 30px;
  font-size: 0.95rem;
}
  }
  .mt-5{
    margin-top:35px;
  }

 /* ============================================ */
/* MAX CAFÉ - DİNAMİK TEMA DEĞİŞKENLERİ */
/* ============================================ */

:root {
  /* Navbar Renkleri */
  --navbar-bg: #8b4513;
  --navbar-text: #ffffff;
  --navbar-hover: #ffd93d;
  
  /* Hakkımızda Bölümü */
  --about-bg: #fff9f5;
  --about-text: #2c1810;
  --about-heading: #8b4513;
  
  /* Ürünler Bölümü */
  --products-bg: #3d2817;
  --products-text: #ffffff;
  --products-heading: #ffd93d;
  
  /* Footer */
  --footer-bg: #2c1810;
  --footer-text: #d4c5b9;
  --footer-heading: #ff8c42;
  
  /* Ana Renkler */
  --primary-color: #ff6b35;
  --secondary-color: #ffd93d;
}

/* Animasyonlar */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 140, 66, 0.5); }
  50% { box-shadow: 0 0 40px rgba(255, 140, 66, 0.8); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--about-text);
  overflow-x: hidden;
  background: linear-gradient(135deg, #fff9f5 0%, #ffe8d6 100%);
}

/* ============================================ */
/* NAVBAR - DİNAMİK TEMA */
/* ============================================ */

header {
  background: transparent;
  padding: 1rem 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

header.fixed-nav,
header.scrolled {
  background: var(--navbar-bg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  position: fixed;
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.nav-links a {
  color: var(--navbar-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 0.5rem 0;
  cursor: pointer;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-links a:hover {
  color: var(--navbar-hover);
  transform: translateY(-3px);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 10px rgba(255, 107, 53, 0.6);
}

.nav-links a:hover::after {
  width: 100%;
}

/* ============================================ */
/* HAKKIMIZDA BÖLÜMÜ - DİNAMİK TEMA */
/* ============================================ */

.about {
  padding: 6rem 2rem;
  background: var(--about-bg);
  position: relative;
  overflow: hidden;
}

.about h2 {
  font-size: 3.5rem;
  color: var(--about-heading);
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  font-weight: 900;
  animation: fadeInUp 1s ease;
}

.about p {
  font-size: 1.3rem;
  line-height: 2;
  color: var(--about-text);
  max-width: 900px;
  margin: 2rem auto;
  animation: fadeInUp 1s ease 0.2s backwards;
  transition: all 0.3s ease;
}

/* ============================================ */
/* ÜRÜNLER BÖLÜMÜ - DİNAMİK TEMA */
/* ============================================ */

.section-dark {
  background: var(--products-bg);
  color: var(--products-text);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.menu-intro h2 {
  font-size: 3.5rem;
  color: var(--products-heading);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  font-weight: 900;
  animation: fadeInUp 1s ease;
}

.menu-intro p {
  font-size: 1.2rem;
  line-height: 1.9;
  color: var(--products-text);
}

/* ============================================ */
/* FOOTER - DİNAMİK TEMA */
/* ============================================ */

footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 4rem 2rem 2rem;
  position: relative;
  overflow: hidden;
}

.footer-section h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: var(--footer-heading);
  font-weight: 800;
}

/* ============================================ */
/* BUTONLAR - DİNAMİK TEMA */
/* ============================================ */

.cta-button {
  display: inline-block;
  padding: 1.3rem 3.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 900;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(255, 107, 53, 0.5);
  position: relative;
  z-index: 1;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.cta-button:hover {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 50px rgba(255, 107, 53, 0.8);
  animation: glow 1.5s ease-in-out infinite;
}

/* ============================================ */
/* HERO SLIDER */
/* ============================================ */

.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slide-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) saturate(1.3);
  display: block;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  width: 90%;
  max-width: 800px;
}

.slide-content h1 {
  font-size: 4.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  animation: fadeInUp 1s ease;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}

.slide-content p {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
  animation: fadeInUp 1s ease 0.3s backwards;
  color: #ffe8d6;
}

/* ============================================ */
/* ÜRÜN KARTLARI */
/* ============================================ */

.product-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 20px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.product-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.4);
  animation: glow 2s ease-in-out infinite;
}

.product-overlay h3 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: var(--secondary-color);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

/* ============================================ */
/* LOGO */
/* ============================================ */

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 3s ease-in-out infinite;
}

.logo {
  height: 80px;
  width: auto;
  border-radius: 15px;
  filter: drop-shadow(0 4px 15px rgba(255, 140, 66, 0.6));
  transition: all 0.3s ease;
  cursor: pointer;
}

.logo:hover {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 6px 20px rgba(255, 140, 66, 0.9));
}

/* ============================================ */
/* RESPONSIVE */
/* ============================================ */

@media (max-width: 768px) {
  .slide-content h1 {
    font-size: 2.5rem;
  }
  
  .about h2 {
    font-size: 2rem;
  }
  
  .menu-intro h2 {
    font-size: 2rem;
  }
}

/* ============================================ */
/* NAVBAR DROPDOWN */
/* ============================================ */

.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  color: var(--navbar-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 0.5rem 0;
  cursor: pointer;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-toggle:hover {
  color: var(--navbar-hover);
  transform: translateY(-3px);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navbar-bg);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  margin-top: 10px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
  overflow: hidden;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--navbar-hover);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-menu a:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding-left: 30px;
}

/* ============================================ */
/* MOBİL MENÜ */
/* ============================================ */

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--navbar-text);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 10px;
  transition: all 0.3s ease;
  z-index: 1001;
}

.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-overlay.active {
  display: block;
  opacity: 1;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navbar-bg);
    flex-direction: column;
    gap: 0;
    padding: 80px 20px 20px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    overflow-y: auto;
    align-items: flex-start;
  }
  
  .nav-links.active {
    right: 0;
  }
}

/* ============================================ */
/* HAKKIMIZDA BÖLÜMÜ - DİNAMİK TEMA */
/* ============================================ */

.about {
  padding: 6rem 2rem;
  background: var(--about-bg);
  position: relative;
  overflow: hidden;
}

.about h2 {
  font-size: 3.5rem;
  color: var(--about-heading);
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  font-weight: 900;
  animation: fadeInUp 1s ease;
}

.about p {
  font-size: 1.3rem;
  line-height: 2;
  color: var(--about-text);
  max-width: 900px;
  margin: 2rem auto;
  animation: fadeInUp 1s ease 0.2s backwards;
  transition: all 0.3s ease;
}

/* ============================================ */
/* ÜRÜNLER BÖLÜMÜ - DİNAMİK TEMA */
/* ============================================ */

.section-dark {
  background: var(--products-bg);
  color: var(--products-text);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.menu-intro h2 {
  font-size: 3.5rem;
  color: var(--products-heading);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  font-weight: 900;
  animation: fadeInUp 1s ease;
}

.menu-intro p {
  font-size: 1.2rem;
  line-height: 1.9;
  color: var(--products-text);
}

/* ============================================ */
/* FOOTER - DİNAMİK TEMA */
/* ============================================ */

footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 4rem 2rem 2rem;
  position: relative;
  overflow: hidden;
}

.footer-section h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: var(--footer-heading);
  font-weight: 800;
}

/* ============================================ */
/* BUTONLAR - DİNAMİK TEMA */
/* ============================================ */

.cta-button {
  display: inline-block;
  padding: 1.3rem 3.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 900;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(255, 107, 53, 0.5);
  position: relative;
  z-index: 1;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.cta-button:hover {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 50px rgba(255, 107, 53, 0.8);
  animation: glow 1.5s ease-in-out infinite;
}

/* ============================================ */
/* HERO SLIDER */
/* ============================================ */

.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slide-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) saturate(1.3);
  display: block;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  width: 90%;
  max-width: 800px;
}

.slide-content h1 {
  font-size: 4.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  animation: fadeInUp 1s ease;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}

.slide-content p {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
  animation: fadeInUp 1s ease 0.3s backwards;
  color: #ffe8d6;
}

/* ============================================ */
/* ÜRÜN KARTLARI */
/* ============================================ */

.product-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 20px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.product-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.4);
  animation: glow 2s ease-in-out infinite;
}

.product-overlay h3 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: var(--secondary-color);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

/* ============================================ */
/* LOGO */
/* ============================================ */

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 3s ease-in-out infinite;
}

.logo {
  height: 80px;
  width: auto;
  border-radius: 15px;
  filter: drop-shadow(0 4px 15px rgba(255, 140, 66, 0.6));
  transition: all 0.3s ease;
  cursor: pointer;
}

.logo:hover {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 6px 20px rgba(255, 140, 66, 0.9));
}

/* ============================================ */
/* RESPONSIVE */
/* ============================================ */

@media (max-width: 768px) {
  .slide-content h1 {
    font-size: 2.5rem;
  }
  
  .about h2 {
    font-size: 2rem;
  }
  
  .menu-intro h2 {
    font-size: 2rem;
  }
}

/* ============================================ */
/* NAVBAR DROPDOWN */
/* ============================================ */

.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  color: var(--navbar-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 0.5rem 0;
  cursor: pointer;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-toggle:hover {
  color: var(--navbar-hover);
  transform: translateY(-3px);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navbar-bg);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  margin-top: 10px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
  overflow: hidden;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--navbar-hover);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-menu a:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding-left: 30px;
}

/* ============================================ */
/* MOBİL MENÜ */
/* ============================================ */

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--navbar-text);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 10px;
  transition: all 0.3s ease;
  z-index: 1001;
}

.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-overlay.active {
  display: block;
  opacity: 1;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navbar-bg);
    flex-direction: column;
    gap: 0;
    padding: 80px 20px 20px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    overflow-y: auto;
    align-items: flex-start;
  }
  
  .nav-links.active {
    right: 0;
  }
}
.weglot-container {
  display: none !important;
}
