﻿/* GENEL AYARLAR */
/*body, html {
    background-color: #f5f5f5;*/ /* Açık zemin */
    /*color: #909090;
    font-family: 'Arial', sans-serif;
    padding-top: 40px;
    overflow-x: hidden;
}*/

body, html {
    background: url('../img/bg-Bushcraft.png') no-repeat center center fixed;
    background-size: cover;
    background-color: #121212; /* Yedek renk */
    color: #ccc;
    font-family: 'Arial', sans-serif;
    padding-top: 40px;
    overflow-x: hidden;
}

/* RENK TEMASI */
:root {
    --antrasit: #141e30;
    --antrasit-acik: #243b55;
    --koyu: #1c1c1c;
    --acik-gri: #f5f5f5;
    --beyaz: #ffffff;
}

/* NAVBAR */
.navbar {
    min-height: 80px;
    display: flex;
    align-items: center;
}

.logo-navbar {
    max-height: 70px;
    height: auto;
    width: auto;
}

.navbar-nav {
    display: flex;
    align-items: center;
}

.navbar-expand-lg .navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, 0.6) !important;
}

.grad-header {
/*    background-image: linear-gradient(to left, var(--antrasit), var(--antrasit-acik));*/
    background-color: #000 !important;
}

/* HERO VİDEO */
.hero-video-container {
    width: 100%;
    height: 80vh;
    position: relative;
    overflow: hidden;
}

.hero-video {
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%) brightness(0.85);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80vh;
    background: rgba(0, 0, 0, 0.3);
}

    .hero-overlay h1 {
        text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
    }

/* CAROUSEL */
#homepageCarousel {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100vw;
    margin: 0;
    padding: 0;
}

.carousel-item img {
    width: 100vw;
    height: 80vh;
    object-fit: cover;
}

.carousel-caption {
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 5px;
}

/* ÜRÜN KARTLARI */
.product-card {
    display: inline-block;
    text-decoration: none !important;
    color: inherit;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 10px;
}

    .product-card:hover {
        background-color: #f8f9fa;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transform: translateY(-2px);
        text-decoration: none;
    }

    .product-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

/* TEMALI BLOKLAR */
.highlight-box {
    background: #f8f9fa;
    border-left: 5px solid #cfa45d;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.outdoor-box {
    background: #f0f9f4;
    border-left: 5px solid #2e7d32;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.cigar-box {
    background: #f4f1ed;
    border-left: 5px solid #a67c52;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

/* Footer */
footer {
    background-color: var(--koyu);
    color: #fff;
}

    footer a {
        color: #fff;
    }

        footer a:hover {
            color: #ddd;
        }

/* MOBİL UYUMLULUK */
@media (max-width: 768px) {
    .hero-video-container {
        height: 50vh;
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    .carousel-item img {
        height: 50vh;
    }

    .logo-navbar {
        max-height: 60px;
    }
}

/* BAŞLIKLAR */
h1, h2, h3, h5 {
    color: #2c2c2c;
}

/* Daha büyük logo (güncel hali) */
.logo-navbar-large {
    height: 80px; /* Eskiden 64px’ti */
    width: auto;
}

/* Slogan metni */
.slogan-text {
    color: #ffffffcc;
    font-size: 1.15rem; /* Biraz büyütüldü */
    font-style: italic;
    white-space: nowrap;
    font-weight: 300;
}

/* Mobilde gizlenmeye devam */
@media (max-width: 768px) {
    .slogan-text {
        display: none !important;
    }
}

.custom-toggle-btn {
    border-color: #ffffff;
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.05);
}

    .custom-toggle-btn:hover {
        background-color: #ffffff;
        color: #000;
        text-shadow: none;
        border-color: #ffffff;
    }

/* ÜRÜN KATEGORİLERİ - KART + ALT MENÜ */
.category-card {
    position: relative;
    border-radius: 12px;
    background: var(--beyaz);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}


.category-title {
    font-family: 'Georgia', serif;
    font-weight: 500;
    font-size: 1.15rem;
    color: #f8f8f8;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    margin-top: 10px;
}

/* ALT KATEGORİ MENÜSÜ */
.submenu {
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translateY(100%);
    width: 100%;
    background: url('../img/ahsap-submenu.png') no-repeat center center;
    background-size: cover;
    border-top: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    border-radius: 0 0 12px 12px;
}

.category-card:hover {
    transform: scale(1.02);
    box-shadow: 0 0 12px rgba(200, 170, 100, 0.5);
    border: 1px solid rgba(200, 170, 100, 0.3);
}

    .category-card:hover .submenu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }



.submenu a {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    color: #f8f0e0;
    font-family: 'Georgia', serif;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
    text-shadow: 1px 1px 2px #000;
}

    .submenu a:hover {
        background-color: rgba(0,0,0,0.2);
        padding-left: 26px;
        color: #f4c27a;
    }

    .submenu a i {
        margin-right: 12px;
        font-size: 16px;
        color: #f4c27a;
    }

.category-card img {
    width: 100%;
    height: 220px; /* veya 200px ya da istediğin oran */
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.brand-box {
    border: 1px solid #eee;
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
    background: #fff;
}

    .brand-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

.order-box {
    border: 1px solid #eee;
    border-radius: 12px;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}

.order-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    }
/* WhatsApp Butonu */
.btn-whatsapp {
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    transition: all 0.3s ease;
}

    .btn-whatsapp:hover {
        background-color: #1ebe57;
        transform: translateY(-2px);
    }

/* Form Aç/Kapa Butonu */
.btn-form-toggle {
    background-color: #f8f9fa;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 50px;
    transition: all 0.3s ease;
}

    .btn-form-toggle:hover {
        background-color: #e2e6ea;
        transform: scale(1.03);
    }

/* Form Kutu (Glassmorphism efekti) */
/*.glass-box {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    border: 1px solid #dee2e6;
}*/
/*.glass-box {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.15);
}*/

/* Form input'lar */
input:focus, textarea:focus {
    border-color: #b58d57;
    box-shadow: 0 0 0 0.25rem rgba(181, 141, 87, 0.25);
    outline: none;
}

/* Mega dropdown yapısı */
.mega-dropdown {
    background-color: #1b1b1b;
    border-radius: 16px;
    padding: 1.5rem 2rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    min-width: 500px;
    margin-top: 1rem !important;
    border: none;
}

    /* Kategoriler başlığı */
    .mega-dropdown .dropdown-header {
        font-size: 1rem;
        color: #b58d57;
        font-weight: 600;
        border-bottom: 1px solid #444;
        margin-bottom: 0.5rem;
        padding-bottom: 0.25rem;
    }

    /* Linkler */
    .mega-dropdown .dropdown-item {
        color: #f8f9fa;
        font-size: 0.95rem;
        padding: 0.25rem 0;
        transition: all 0.2s ease;
    }

        /* Hover efekti */
        .mega-dropdown .dropdown-item:hover {
            background-color: transparent;
            color: #b58d57;
            padding-left: 10px;
        }

        /* Iconlar hizalı olsun */
        .mega-dropdown .dropdown-item i {
            width: 20px;
        }

/* Responsive uyum */
@media (max-width: 768px) {
    .mega-dropdown {
        min-width: 100% !important;
        border-radius: 0;
        padding: 1rem;
    }
}
/* Navbar arka plan ve gölge */
.navbar {
    background-color: #0d0d0d !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Nav link geçiş çizgisi efekti */
.nav-link {
    color: #fff !important;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

    .nav-link::after {
        content: "";
        position: absolute;
        width: 0%;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: #b58d57;
        transition: width 0.3s ease;
    }

    .nav-link:hover::after {
        width: 100%;
    }

    .nav-link:hover {
        color: #b58d57 !important;
    }

    /* Aktif link efekti */
    .nav-link.active {
        color: #b58d57 !important;
    }

/* Slogan stili - Premium vibe */
.slogan-text {
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: #ccc;
    transition: color 0.3s ease;
}

    .slogan-text em {
        color: #b58d57;
        font-weight: 600;
        font-style: normal;
        letter-spacing: 0.5px;
    }

/* Mobilde slogan kaybolsun */
@media (max-width: 768px) {
    .slogan-text {
        display: none;
    }
}

.glass-box {
    background: rgba(18, 18, 18, 0.55); /* daha koyu ve sıcak ton */
    backdrop-filter: blur(6px);
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease-in-out;
}
/*.urun-section h2, .urun-section p {
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
    color: #e6e6e6;
}*/

.urun-section h2,
.urun-section p {
    color: #f2f2f2;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.7);
}

/*MailSubscriber ALANI*/
/* spacing helper */
.my-6 {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

/* cam efekti zaten var; bunu zenginleştirelim */
.newsletter-cta {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: radial-gradient(1200px 400px at 10% -10%, rgba(255,255,255,.08), transparent), radial-gradient(1000px 300px at 100% 120%, rgba(255,255,255,.06), transparent), rgba(20,20,20,.55);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 20px 60px rgba(0,0,0,.45);
}

/* üstteki “Bülten” rozeti */
.badge-soft {
    display: inline-block;
    padding: .35rem .7rem;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    color: #d6d6d6;
    font-weight: 600;
    letter-spacing: .4px;
}

/* input + mail ikonu */
.input-with-icon {
    position: relative;
}

    .input-with-icon .mail-ico {
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        width: 22px;
        height: 22px;
        fill: #cfcfcf;
        opacity: .75;
        pointer-events: none;
    }

    .input-with-icon input {
        padding-left: 48px;
        background: rgba(255,255,255,.06);
        color: #f5f5f5;
        border: 1px solid rgba(255,255,255,.18);
        outline: none;
    }

        .input-with-icon input::placeholder {
            color: #cfcfcf;
            opacity: .8;
        }

        .input-with-icon input:focus {
            border-color: rgba(255,255,255,.38);
            box-shadow: 0 0 0 .25rem rgba(255,255,255,.08);
        }

/* gradient buton */
.btn-gradient {
    background: linear-gradient(135deg,#ffd27a,#ff9e57 40%,#ff6b6b);
    border: none;
    color: #1a1a1a;
    font-weight: 700;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(255,110,80,.25);
}

    .btn-gradient:hover {
        filter: brightness(1.05);
        transform: translateY(-1px);
    }

    .btn-gradient:active {
        transform: translateY(0);
        box-shadow: none;
    }

/* başarı animasyonu */
.nl-success {
    text-align: center;
    padding: 1rem 0 0;
}

.checkwrap {
    width: 64px;
    height: 64px;
    margin: 0 auto;
    border-radius: 50%;
    background: rgba(60, 255, 160, .18);
    border: 1px solid rgba(60,255,160,.35);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pop .35s ease-out forwards;
}

.check {
    width: 32px;
    height: 32px;
    stroke: #6dffb0;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 30;
    stroke-dashoffset: 30;
    animation: draw .6s .15s ease-out forwards;
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes pop {
    from {
        transform: scale(.8);
        opacity: .4
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}



/*Hakkımızda Etkinlikler & Fuar*/
.my-6 {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.badge-soft {
    display: inline-block;
    padding: .35rem .7rem;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    color: #d6d6d6;
    font-weight: 600;
    letter-spacing: .4px;
}

.event-card {
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 16px;
    background: rgba(20,20,20,.4);
}

.event-title {
    font-weight: 700;
}

.event-chip {
    font-size: .875rem;
    padding: .3rem .6rem;
    border-radius: 10px;
    background: linear-gradient(135deg,#ffd27a,#ff9e57 45%,#ff6b6b);
    color: #1a1a1a;
    font-weight: 700;
}

.event-meta i {
    opacity: .8;
}

/* carousel görsel oranı */
.event-carousel .carousel-inner {
    aspect-ratio: 16 / 9;
    background: #111;
    overflow: hidden;
}

.event-carousel img {
    object-fit: cover;
    height: 100%;
}

/* küçük thumbnail şeridi */
.thumbs {
    display: flex;
    gap: .5rem;
}

    .thumbs img {
        width: 80px;
        height: 56px;
        object-fit: cover;
        border-radius: 8px;
        cursor: pointer;
        opacity: .6;
        border: 1px solid rgba(255,255,255,.15);
        transition: opacity .15s, transform .15s, box-shadow .15s;
    }

        .thumbs img:hover {
            opacity: .9;
            transform: translateY(-1px);
        }

        .thumbs img.active {
            opacity: 1;
            box-shadow: 0 0 0 2px rgba(255,255,255,.6) inset, 0 0 0 2px rgba(255,255,255,.25);
        }

/* Bootstrap oklarını cam temaya uyduralım */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: drop-shadow(0 2px 8px rgba(0,0,0,.6));
}


/*Layout Menu*/
.mega-dropdown {
    left: 0;
    right: 0;
    top: 100%;
}

.category-card {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .category-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }

.category-title {
    font-weight: 600;
    margin: .5rem 0;
}

.submenu a {
    text-align: left;
    font-size: 0.9rem;
    color: #ddd;
    padding: 2px 0;
    text-decoration: none;
}

    .submenu a:hover {
        color: #fff;
    }


@media (max-width: 576px) {
    .mega-dropdown .row.g-4 {
        display: none;
    }
    /* grid gizle */
    .mega-dropdown .mobile-accordion {
        display: block;
    }
}

@media (min-width: 577px) {
    .mega-dropdown .mobile-accordion {
        display: none;
    }
}



/*SON mobil düzenleme*/
/* ==== Mega Dropdown Genel Ayar ==== */
.mega-dropdown {
    left: 0;
    right: 0;
    top: 100%;
    background: #111; /* siyah tema uyumlu */
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    z-index: 1000;
}

/* ==== Masaüstü Grid ==== */
.category-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .category-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }

    .category-card img {
        width: 64px;
        height: 64px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: .5rem;
    }

.category-title {
    font-weight: 600;
    margin: .5rem 0;
    color: #fff;
}

.submenu a {
    text-align: left;
    font-size: 0.9rem;
    color: #ccc;
    padding: 2px 0;
    display: block;
    text-decoration: none;
}

    .submenu a:hover {
        color: #fff;
    }

/* ==== Mobil Accordion ==== */
.mobile-accordion {
    display: none; /* varsayılan kapalı */
    background: #111;
    border-radius: 12px;
}

    .mobile-accordion .accordion-item {
        border: none;
        background: transparent;
    }

    .mobile-accordion .accordion-button {
        background: transparent;
        color: #fff;
        font-weight: 600;
        padding: .75rem 1rem;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .mobile-accordion .accordion-button img {
            width: 28px;
            height: 28px;
            border-radius: 6px;
            object-fit: cover;
        }

    .mobile-accordion .accordion-body {
        background: rgba(255, 255, 255, 0.05);
        padding: .75rem 1rem;
    }

        .mobile-accordion .accordion-body a {
            display: block;
            font-size: 0.9rem;
            color: #ddd;
            padding: 4px 0;
            text-decoration: none;
        }

            .mobile-accordion .accordion-body a:hover {
                color: #fff;
            }

/* ==== Responsive Kurallar ==== */
@media (max-width: 576px) {
    .desktop-grid {
        display: none; /* mobilde grid gizlensin */
    }

    .mobile-accordion {
        display: block; /* mobilde accordion aktif */
    }
}

@media (min-width: 577px) {
    .mobile-accordion {
        display: none; /* tablet ve üstünde accordion gizlensin */
    }
}


