.elementor-97 .elementor-element.elementor-element-c3ccbdd{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(max-width:767px){.elementor-97 .elementor-element.elementor-element-c3ccbdd{--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}}/* Start custom CSS for html, class: .elementor-element-a06f994 *//* Genel Ayarlar ve Renk Paleti */
:root {
    --color-dark-bg: #111111;      /* Genel Arka Plan */
    --color-nav-bg: #000000;       /* Navbar Arka Planı (Siyah) */
    --color-gold: #e6b800;         /* Ana Altın Rengi */
    --color-accent: #b30000;       /* Koyu Bordo/Kırmızı (CTA Buton) */
    --color-text: #f0f0f0;         /* Açık Gri */
}

body {
    margin: 0;
    font-family: 'Arial', sans-serif;
}

/* Navigasyon Çubuğu Stilleri */
.navbar {
    background-color: var(--color-nav-bg);
    padding: 10px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* Logo Stili */
.logo img {
    height: 40px;
    transition: all 0.3s;
}

.logo img:hover {
    opacity: 0.8;
}

/* Navigasyon Linkleri Stili */
.nav-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-gold); 
    font-weight: 600;
    font-size: 14px;
    padding: 8px 0;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    text-transform: uppercase;
    background-color: transparent !important; /* İstenmeyen arka planı kaldır */
}

.nav-links a:hover {
    color: #ffd700; 
    border-bottom: 2px solid var(--color-accent);
    background-color: transparent !important; /* Hover'da da arka planı şeffaf tut */
}

/* CTA Butonu Stili */
.cta-button {
    text-decoration: none;
    background-color: var(--color-accent); /* Koyu Kırmızı/Bordo */
    color: #ffffff; 
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #990000; /* Hover'da daha koyu bordo */
    transform: translateY(-1px);
}

/* Hamburger Menü Stilleri (Masaüstünde Gizli) */
.menu-toggle {
    display: none; 
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000; 
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--color-gold);
    transition: all 0.3s ease-in-out;
}

/* ========================================================= */
/* 3. Responsive (Mobil ve Tablet) Ayarları */
/* ========================================================= */

@media (max-width: 900px) {
    
    /* NAV LINKS (AÇILIR MENÜ) */
    .nav-links {
        display: none; 
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px; 
        left: 0;
        background-color: var(--color-nav-bg);
        z-index: 999;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    }

    .nav-links ul {
        flex-direction: column;
        width: 100%;
        padding: 10px 0;
    }
    .nav-links li {
        margin: 0;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .nav-links a {
        display: block;
        padding: 15px 20px;
        width: 100%;
        background-color: transparent !important;
    }
    .nav-links.active {
        display: flex;
    }

    /* HAMBURGER VE CTA BUTONU DÜZENLEMESİ */
    .menu-toggle {
        display: block; 
        order: 2; /* Sağ grupta ikinci sırada */
    }
    
    .cta-button {
        order: 1; /* Sağ grupta ilk sırada (hamburgerden önce) */
        margin-left: auto; /* Logodan sonra gelen ilk element olarak sağa iter */
        margin-right: 15px; /* Hamburger ile arasına boşluk bırakır */
        
        /* Buton Uzunluğu Düzeltmesi */
        max-width: 100px; /* Maksimum genişliği sınırla */
        padding: 8px 10px; 
        font-size: 13px;
    }
}


[type=button]:focus, [type=button]:hover, [type=submit]:focus, [type=submit]:hover, button:focus, button:hover {
    background-color: #cc336600;
    color: #fff;
    text-decoration: none;
}/* End custom CSS */
/* Start custom CSS */a{
    
    color:#B30000;
}

a:hover{
    
    color:#e6b800;
    
}/* End custom CSS */