/* =========================================================
   SEDEN DENTAL – CUSTOM CSS (FINAL)
   ========================================================= */

/* ---------------------------------------------------------
   KURUMSAL RENKLER
   --------------------------------------------------------- */
:root {
    --seden-primary: #132f71;
    --seden-accent: #4269b2;
    --seden-light: #e9eef5;
    --seden-dark: #1d242d;
}

/* ---------------------------------------------------------
   GENEL MOBİL BOŞLUK KONTROLÜ
   --------------------------------------------------------- */
@media (max-width: 768px) {
    .p-5 {
        padding: 1.5rem !important;
    }

    .container.rounded-4 {
        padding-left: 10px !important;
        padding-right: 10px !important;
        border-radius: 1rem !important;
    }

    .row.p-5 {
        padding: 1rem 0 !important;
    }

    #detaylar.p-5 {
        padding: 1.5rem 0.5rem !important;
    }
}

/* ---------------------------------------------------------
   LOGO & MARKA YAZISI
   --------------------------------------------------------- */

/* Masaüstü */
@media (min-width: 992px) {
    .brand-text-mobile {
        display: none !important;
    }

    .logo-img {
        max-height: 150px;
        width: auto;
    }
}

/* Mobil */
@media (max-width: 991px) {
    .logo-img {
        max-height: 40px !important;
        width: auto;
    }

    .brand-text-mobile {
        display: inline-block !important;
        font-weight: 700;
        color: var(--seden-primary);
        font-size: 1.1rem;
        margin-left: 8px;
        line-height: 1;
        vertical-align: middle;
    }

    .navbar-brand {
        display: flex !important;
        align-items: center !important;
        padding: 0;
        margin-right: 0;
    }

    .navbar-toggler {
        margin-left: auto;
    }
}

/* ---------------------------------------------------------
   TOP BAR (ÜST SİYAH BANT)
   --------------------------------------------------------- */
#templatemo_nav_top {
    padding: 10px 0;
}

    #templatemo_nav_top .navbar-sm-brand {
        font-size: 18px !important;
        font-weight: 600 !important;
        letter-spacing: 0.3px;
    }

    #templatemo_nav_top i {
        font-size: 16px !important;
        margin-right: 5px;
        color: #ffffff;
        vertical-align: middle;
    }

    #templatemo_nav_top a {
        transition: color 0.2s ease;
    }

        #templatemo_nav_top a:hover {
            color: var(--seden-accent) !important;
            text-decoration: none;
        }

/* Tablet */
@media (max-width: 767px) {
    #templatemo_nav_top .navbar-sm-brand {
        font-size: 16px !important;
    }
}

/* Mobil */
@media (max-width: 576px) {
    #templatemo_nav_top .navbar-sm-brand {
        font-size: 15px !important;
        white-space: nowrap;
    }
}

/* ---------------------------------------------------------
   NAVBAR MENÜ (BOLD + SAĞA YASLI)
   --------------------------------------------------------- */
#templatemo_main_nav .navbar-nav {
    margin-left: auto !important;
}

#templatemo_main_nav .nav-link {
    font-weight: 700;
    color: var(--seden-dark);
    padding: 0.75rem 1rem;
    transition: color 0.2s ease;
}

    #templatemo_main_nav .nav-link:hover {
        color: var(--seden-primary);
    }

    #templatemo_main_nav .nav-link.active {
        color: var(--seden-primary);
    }

.navbar .dropdown-toggle::after {
    margin-left: 6px;
}

/* ---------------------------------------------------------
   WHATSAPP FLOATING SİPARİŞ BUTONU
   --------------------------------------------------------- */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    z-index: 9999;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

    .whatsapp-float i {
        font-size: 22px;
    }

    .whatsapp-float:hover {
        background-color: #1ebe5d;
        color: #ffffff;
        transform: scale(1.05);
    }

/* Mobilde sadece ikon */
@media (max-width: 576px) {
    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float {
        padding: 14px;
        border-radius: 50%;
    }
}
/* =========================================================
   NAVBAR LINKLERİ – BOLD OVERRIDE
   ========================================================= */

/* Üst menü linkleri */
#templatemo_main_nav .nav-link,
#templatemo_main_nav a {
    font-weight: 700 !important;
}

/* Dropdown içi linkler */
#templatemo_main_nav .dropdown-menu .dropdown-item {
    font-weight: 600 !important;
}
/* Ürün özellik ikonları */
.feature-icon {
    width: 100px;
    height: 100px;
    min-width: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
    border: 1px solid #e0e0e0;
    background-color: #fff;
}
/* Story Video */
.story-video-wrapper {
    width: 100%;
    max-width: 260px; /* masaüstü */
    aspect-ratio: 9 / 16;
    background: #000;
}

.story-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobilde büyüt */
@media (max-width: 768px) {
    .story-video-wrapper {
        max-width: 100%;
    }
}
