@charset "utf-8";

/* ================================================
   BERRA D.T.M. - Modern Bulma Theme CSS
   Örnek arayüz referans alınarak oluşturuldu
   ================================================ */

/* CSS Variables */
:root {
    --brand-red: #E30613;
    --brand-black: #111111;
    --brand-dark-gray: #2c2c2c;
    --brand-light-gray: #f9f9f9;
}

/* Base Styles */
html {
    background: #FFFFFF;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #444;
    background-color: #fff;
    letter-spacing: -0.01em;
    padding-top: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--brand-black);
}

img {
    border: none;
    max-width: 100%;
}

a {
    transition: all 0.3s ease;
}

/* ================================================
   NAVBAR STYLES
   ================================================ */
.navbar {
    background-color: var(--brand-black);
    padding: 0.5rem 0;
    border-bottom: 3px solid var(--brand-red);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.navbar-brand img {
    max-height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.02);
}

.navbar-item,
.navbar-link {
    color: #e0e0e0;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.navbar-item:hover,
.navbar-link:hover,
.navbar-item.is-active,
.navbar-link.is-active,
.navbar-item.has-dropdown .navbar-link.is-active,
.navbar-item.has-dropdown.is-active .navbar-link {
    background-color: transparent !important;
    color: var(--brand-red) !important;
}

.navbar-dropdown {
    background-color: #1a1a1a;
    border-top: 2px solid var(--brand-red);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.navbar-dropdown .navbar-item {
    color: #bbb;
}

.navbar-dropdown .navbar-item:hover {
    background-color: #252525;
    color: white !important;
    padding-left: 1.25rem;
    border-left: 3px solid var(--brand-red);
}

/* Contact Button */
.contact-btn {
    background-color: transparent;
    border: 2px solid var(--brand-red);
    color: white !important;
    border-radius: 4px;
    transition: 0.3s;
}

.contact-btn:hover {
    background-color: var(--brand-red);
    color: white !important;
    border-color: var(--brand-red);
}

/* Mobile Navbar */
@media screen and (max-width: 1023px) {
    .navbar-menu {
        background-color: var(--brand-black);
        padding: 0.5rem 0;
        max-height: 80vh;
        overflow-y: auto;
    }

    .navbar-dropdown {
        padding: 0;
    }

    .navbar-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .navbar-burger span {
        background-color: white;
        height: 2px;
    }
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero-section {
    position: relative;
    min-height: 500px;
}

.hero-section .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-section .hero-body {
    position: relative;
    z-index: 1;
}

.hero-title {
    color: white;
    font-weight: 800;
    font-size: clamp(1.75rem, 5vw, 3.5rem);
    letter-spacing: -1px;
    line-height: 1.1;
    text-wrap: balance;
}

.hero-accent {
    width: 80px;
    height: 5px;
    background-color: var(--brand-red);
    margin-bottom: 1.5rem;
}

/* Parallax for desktop */
@media screen and (min-width: 1024px) {
    .hero-section .hero-bg {
        background-attachment: fixed;
    }
}

/* ================================================
   CATEGORY BOXES
   ================================================ */
.category-box {
    background: white;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-box i,
.category-box .category-icon {
    color: var(--brand-red);
    transition: all 0.3s ease;
}

.category-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(227, 6, 19, 0.1);
    border-color: var(--brand-red);
}

.category-box-link {
    text-decoration: none;
    color: inherit;
}

/* ================================================
   PRODUCT CARDS
   ================================================ */
.product-card {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid var(--brand-red);
}

.product-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card .card-image {
    padding: 1rem;
    text-align: center;
    position: relative;
    background-color: #fff;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card .card-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .card-image img {
    transform: scale(1.05);
}

.product-card .card-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    border-top: 1px solid #f9f9f9;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--brand-black);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.product-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

.product-action {
    margin-top: auto;
    padding-top: 1rem;
}

.buy-button {
    width: 100%;
    background-color: var(--brand-red);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 0.875rem 1rem;
    min-height: 48px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.3s;
    cursor: pointer;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(227, 6, 19, 0.2);
}

.buy-button:hover {
    background-color: #c00510;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(227, 6, 19, 0.4);
}

/* ================================================
   SIDEBAR MENU (Kurumsal, Ürün vb. sayfalar)
   ================================================ */
.menu {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.menu-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-black);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
    border-bottom: 2px solid var(--brand-red);
}

.menu-label a {
    color: var(--brand-black);
}

.menu-label a:hover {
    color: var(--brand-red);
}

.menu-list a {
    color: #555;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.menu-list a:hover {
    background-color: var(--brand-light-gray);
    color: var(--brand-red);
    border-left-color: var(--brand-red);
    padding-left: 1.25rem;
}

.menu-list a.is-active {
    background-color: var(--brand-red);
    color: white;
    border-left-color: var(--brand-black);
}

.menu-list li {
    margin-bottom: 0.25rem;
}

/* ================================================
   PAGE BANNER (İç sayfalar hero)
   ================================================ */
.hero.is-small .hero-body {
    padding: 4rem 1.5rem;
}

.hero.is-small .title {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero.is-small .subtitle {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* ================================================
   CONTENT PAGE STYLES
   ================================================ */
/* Başlık ve Alt Başlık Spacing */
.section .title.is-3 {
    margin-bottom: 0.5rem;
}

.section .subtitle.is-5 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    padding-top: 0.5rem;
}

/* Başlık altında ayraç */
.section .title.is-3 + .subtitle.is-5 {
    border-top: none;
    position: relative;
}

.content img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.content figure.is-pulled-left {
    margin-right: 2rem;
    margin-bottom: 1rem;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ================================================
   TITLE UNDERLINE
   ================================================ */
.title-underline {
    width: 70px;
    height: 4px;
    background-color: var(--brand-red);
    margin: 0 auto;
    border-radius: 2px;
}

/* ================================================
   FOOTER STYLES
   ================================================ */
.footer {
    background-color: #111;
    color: #999;
    padding: 5rem 1.5rem 2rem;
    border-top: 4px solid var(--brand-red);
}

.footer h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.footer a {
    color: #888;
    transition: 0.3s;
}

.footer a:hover {
    color: var(--brand-red);
    padding-left: 5px;
}

.footer-icon {
    width: 25px;
    color: var(--brand-red);
    text-align: center;
    margin-right: 10px;
}

/* Social Media Buttons */
.social-btn {
    border: none !important;
    background-color: #2a2a2a !important;
    color: white !important;
    transition: background-color 0.3s ease !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
}

.social-btn:hover {
    color: white !important;
    padding: 0 !important; /* Move efektini (padding-left) engelle */
    transform: none !important;
}

.social-btn.facebook:hover {
    background-color: #1877F2 !important;
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d) !important;
}

/* X (Twitter) Koyu Temada Görünürlük Ayarı */
.social-btn.twitter:hover {
    background-color: #ffffff !important;
    color: #000000 !important;
}

.social-btn.youtube:hover {
    background-color: #FF0000 !important;
}

.social-btn.linkedin:hover {
    background-color: #0A66C2 !important;
}

/* ================================================
   BUTTONS
   ================================================ */
.button.is-danger {
    background-color: var(--brand-red);
}

.button.is-danger:hover {
    background-color: #c00510;
}

.button.is-danger.is-outlined {
    background-color: transparent;
    border-color: var(--brand-red);
    color: var(--brand-red);
}

.button.is-danger.is-outlined:hover {
    background-color: var(--brand-red);
    color: white;
}

/* ================================================
   RESPONSIVE BREAKPOINTS
   ================================================ */

/* Small Mobile (< 480px) */
@media screen and (max-width: 480px) {
    .hero-section .hero-body {
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .category-box {
        padding: 1rem !important;
    }

    .category-box i {
        font-size: 1.25rem !important;
    }

    .category-box h5 {
        font-size: 0.7rem !important;
    }

    .product-card .card-image {
        height: 180px;
    }

    .footer {
        padding: 2.5rem 1rem 1.5rem;
    }

    .section {
        padding: 2rem 1rem;
    }

    .title.is-2 {
        font-size: 1.5rem;
    }
}

/* Mobile (< 768px) */
@media screen and (max-width: 768px) {
    .hero-section .hero-body {
        padding: 3rem 1.5rem;
    }

    .hero-section .button {
        width: 100%;
        padding: 1rem;
        min-height: 48px;
    }

    .footer .columns {
        flex-direction: column;
    }

    .footer .column {
        width: 100% !important;
        max-width: 100%;
        flex: none;
        margin-bottom: 2rem;
    }

    .footer .column.is-offset-1 {
        margin-left: 0;
    }

    .columns.is-multiline > .column {
        padding: 0.5rem;
    }
}

/* Tablet (769px - 1023px) */
@media screen and (min-width: 769px) and (max-width: 1023px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .product-card .card-image {
        height: 200px;
    }

    .footer .columns {
        flex-wrap: wrap;
    }

    .footer .column.is-4 {
        width: 100%;
        margin-bottom: 2rem;
    }

    .footer .column.is-2,
    .footer .column.is-3 {
        width: 33.33%;
    }
}

/* Desktop and above */
@media screen and (min-width: 1024px) {
    .footer .columns {
        align-items: flex-start;
    }
}

/* Reduced Motion - Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Safe Area - iPhone X and later */
@supports (padding: env(safe-area-inset-bottom)) {
    .footer {
        padding-bottom: calc(2rem + env(safe-area-inset-bottom));
    }
}

/* ================================================
   PAGE SPECIFIC STYLES
   ================================================ */

/* Main Container */
#Main {
    width: 100%;
    min-height: 400px;
    position: relative;
    padding: 2rem 0;
}

/* Content Area */
.IcerikYazisi {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    max-width: 800px; /* 2025 Standartları: Okuma konforu için ideal satır genişliği (65-75 karakter) */
    margin: 0 auto;   /* Ortala */
}

.IcerikYazisi a {
    color: var(--brand-red);
    text-decoration: underline;
}

.IcerikYazisi a:hover {
    color: var(--brand-black);
}

.IcerikYazisi img {
    max-width: 100% !important;
    max-height: 600px !important; /* Dikeyde ekranı kaplamaması için sınır */
    width: auto !important;       /* Doğal genişliğinde kalmasına izin ver (stretch yapma) */
    height: auto !important;      /* Aspect ratio koru */
    object-fit: contain;          /* Kutunun içine sığdır */
    margin: 2rem auto;            /* Görseller arası boşluk */
    display: block;               /* Blok element yap */
    border-radius: 8px;           /* Modern yumuşak köşeler */
    box-shadow: 0 4px 20px rgba(0,0,0,0.08); /* Derinlik hissi */
}

/* Tabloların taşmasını engelle */
.IcerikYazisi table {
    display: block;
    width: 100%;
    overflow-x: auto;
    max-width: 100%;
}

/* Contact Form */
.contact-form input,
.contact-form textarea,
.contact-form select {
    font-family: 'Montserrat', sans-serif;
}

/* ================================================
   UTILITIES
   ================================================ */
.Centering {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 10px;
}

.Centering_1440 {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 10px;
}

/* ================================================
   PHOTOSCRIPT LIGHTBOX - BULMA UYUMLU MODERN TASARIM
   ================================================ */

/* Ana Container */
.PhotoScript-box {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.PhotoScript-box.pht-active {
    visibility: visible;
    opacity: 1;
}

/* İçerik Container */
.PhotoScript-box .pht-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: relative;
}

/* Başlık Alanı - Alt Orta */
.PhotoScript-box .pht-header {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    z-index: 10;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    pointer-events: none;
}

.PhotoScript-box .pht-image-count {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
}

.PhotoScript-box .pht-image-title {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* Görsel Container */
.PhotoScript-box .pht-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 60px;
}

/* Ana Görsel */
.PhotoScript-box img.pht-image {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s, transform 0.3s;
}

.PhotoScript-box img.pht-image.pht-image-loaded {
    opacity: 1;
    transform: scale(1);
}

.PhotoScript-box img.pht-image.pht-noimage {
    display: none;
}

/* Kontrol Butonları Ortak */
.PhotoScript-box .pht-control {
    position: absolute;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: color 0.2s, transform 0.2s, background 0.2s;
    z-index: 20;
    user-select: none;
}

.PhotoScript-box .pht-control:hover {
    color: #fff;
}

/* Kapat Butonu */
.PhotoScript-box .pht-close {
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
}

.PhotoScript-box .pht-close:hover {
    background: rgba(227, 6, 19, 0.8);
    transform: scale(1.1);
}

.PhotoScript-box .pht-close .pht-control-text {
    font-size: 32px;
    line-height: 1;
}

/* İleri/Geri Okları */
.PhotoScript-box .pht-prev,
.PhotoScript-box .pht-next {
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.PhotoScript-box .pht-prev { left: 20px; }
.PhotoScript-box .pht-next { right: 20px; }

.PhotoScript-box .pht-prev:hover,
.PhotoScript-box .pht-next:hover {
    background: rgba(0, 0, 0, 0.6);
    transform: translateY(-50%) scale(1.05);
}

.PhotoScript-box .pht-prev .pht-control-text,
.PhotoScript-box .pht-next .pht-control-text {
    font-size: 36px;
}

/* Kontrol Paneli (Download, Autoplay) - Gizli */
.PhotoScript-box .pht-control-panel {
    display: none;
}

.PhotoScript-box .pht-panel-button {
    background: rgba(0, 0, 0, 0.4);
    padding: 10px 15px;
    border-radius: 4px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: background 0.2s;
}

.PhotoScript-box .pht-panel-button:hover {
    background: rgba(0, 0, 0, 0.6);
}

/* Yükleme Animasyonu */
.PhotoScript-box .waitingicon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.PhotoScript-box .waitingicon .waitingicon-circle {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    display: inline-block;
    margin: 2px;
    animation: waitingPulse 1.2s infinite ease-in-out;
}

.PhotoScript-box .waitingicon .waitingicon-circle:nth-child(1) { animation-delay: -0.4s; }
.PhotoScript-box .waitingicon .waitingicon-circle:nth-child(2) { animation-delay: -0.3s; }
.PhotoScript-box .waitingicon .waitingicon-circle:nth-child(3) { animation-delay: -0.2s; }
.PhotoScript-box .waitingicon .waitingicon-circle:nth-child(4) { animation-delay: -0.1s; }

@keyframes waitingPulse {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

/* Hata Mesajı */
.PhotoScript-box .pht-no-image-found {
    color: white;
    text-align: center;
    padding: 2rem;
}

.PhotoScript-box .pht-no-image-found .no-found-msg {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Mobil Responsive */
@media screen and (max-width: 768px) {
    .PhotoScript-box .pht-image-container {
        padding: 60px 15px;
    }
    
    .PhotoScript-box .pht-prev,
    .PhotoScript-box .pht-next {
        width: 40px;
        height: 60px;
    }
    
    .PhotoScript-box .pht-prev { left: 5px; }
    .PhotoScript-box .pht-next { right: 5px; }
    
    .PhotoScript-box .pht-prev .pht-control-text,
    .PhotoScript-box .pht-next .pht-control-text {
        font-size: 28px;
    }
    
    .PhotoScript-box img.pht-image {
        max-width: 95vw;
        max-height: 80vh;
    }
    
    .PhotoScript-box .pht-close {
        top: 10px;
        right: 10px;
        width: 44px;
        height: 44px;
    }
    
    .PhotoScript-box .pht-close .pht-control-text {
        font-size: 28px;
    }
}

/* ================================================
   2025 MOBİL ÖNCELİKLİ TASARIM STANDARTLARI
   ================================================ */

/* 1. Minimum 320px genişlik desteği */
@media screen and (max-width: 320px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .hero-title {
        font-size: 1.25rem;
    }
    
    .section {
        padding: 1.5rem 0.75rem;
    }
    
    .footer {
        padding: 2rem 0.75rem 1.5rem;
    }
}

/* 2. Dokunmatik hedef minimum boyut (WCAG 2.2 - 44x44px) */
.navbar-burger {
    min-width: 44px;
    min-height: 44px;
}

.menu-list a {
    min-height: 44px;
    display: flex;
    align-items: center;
}

.breadcrumb a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    padding-bottom: 0;
}

/* 3. Form input minimum boyutları (iOS zoom önleme) */
.input, 
.textarea, 
.select select, 
.button {
    min-height: 44px;
    font-size: 16px;
}

/* 4. Mobil sidebar stack */
@media screen and (max-width: 1023px) {
    .column.is-3 .menu {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }
    
    .sticky-menu {
        position: relative !important;
        top: 0 !important;
    }
}

/* 5. Mobil footer düzenlemesi */
@media screen and (max-width: 768px) {
    .footer .column.is-offset-1-tablet {
        margin-left: 0;
    }
}

/* Footer Geliştirici Logosu */
.developer-logo {
    height: 24px;
    width: auto;
    filter: grayscale(100%) brightness(200%);
    opacity: 0.7;
    transition: all 0.3s ease;
    background: none !important;
    box-shadow: none !important;
}

/* Mobil Menü Dropdown Davranışı */
@media screen and (max-width: 1023px) {
    .navbar-item.has-dropdown .navbar-dropdown {
        display: none; /* Varsayılan olarak gizle */
    }
    
    .navbar-item.has-dropdown.is-active .navbar-dropdown {
        display: block; /* Sadece aktifse göster */
    }
}

.developer-link:hover .developer-logo {
    filter: grayscale(0%);
    opacity: 1;
}

/* Mobil uyumluluk */
@media screen and (max-width: 768px) {
    .developer-logo {
        height: 20px;
    }
}

/* ================================================
   404 ERROR PAGE STYLES
   ================================================ */
.error-content {
    padding: 2rem 1rem;
}

.error-code {
    font-size: clamp(6rem, 20vw, 12rem);
    font-weight: 800;
    color: var(--brand-red);
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(227, 6, 19, 0.3);
}

@media screen and (max-width: 768px) {
    .error-content {
        padding: 1rem;
    }
    
    .error-content .title.is-2 {
        font-size: 1.5rem;
    }
    
    .error-content .subtitle {
        font-size: 1rem;
    }
}
