﻿@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

body.mtc-body-exact {
    background-color: #ffffff;
    color: #1e293b;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

.mtc-navbar-transparent {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent !important;
    padding: 16px 0;
}

/* Nav Link & �izgi Animasyonu */
.custom-nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600;
    font-size: 0.82rem;
    padding: 6px 10px !important;
    transition: all 0.25s ease;
    position: relative;
    display: inline-block;
}

    .custom-nav-link.dropdown-toggle::after {
        display: none !important;
    }

    .custom-nav-link::before {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -2px;
        left: 50%;
        background-color: #ffffff;
        transition: all 0.25s ease;
        transform: translateX(-50%);
    }

    .custom-nav-link:hover::before,
    .custom-nav-link.active::before,
    .nav-item.active > .custom-nav-link::before,
    .nav-item.dropdown:hover > .custom-nav-link::before {
        width: 70%;
    }

    .custom-nav-link:hover,
    .custom-nav-link.active,
    .nav-item.active > .custom-nav-link,
    .nav-item.dropdown:hover > .custom-nav-link {
        color: #ffffff !important;
    }

/* Masa�st� Dropdown Stilleri & Hover A��lma */
@media (min-width: 992px) {
    .navbar-nav .nav-item.dropdown {
        position: relative;
    }

        .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
            display: block;
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

    .navbar-nav .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.25s ease;
        margin-top: 0;
        background: rgba(11, 19, 43, 0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 10px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        padding: 8px 0;
    }

    .navbar-nav .dropdown-item {
        color: rgba(255, 255, 255, 0.85);
        font-size: 0.8rem;
        font-weight: 500;
        padding: 8px 20px;
        transition: all 0.2s ease;
        background: transparent;
    }

        .navbar-nav .dropdown-item:hover,
        .navbar-nav .dropdown-item.active {
            background: rgba(2, 132, 199, 0.2);
            color: #00d2ff !important;
            padding-left: 24px;
        }
}

.btn-sponsor-pill {
    background: #0284c7;
    border-radius: 50rem;
    font-weight: 700;
    font-size: 0.78rem;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.4);
}

    .btn-sponsor-pill:hover {
        background: #0369a1;
        color: #ffffff !important;
    }

.mtc-hero-exact {
    position: relative;
    background-size: cover;
    background-position: center center;
    min-height: 310px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-dark-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgb(0 0 0 / 39%) 100%);
}

.hero-content-box {
    position: relative;
    z-index: 2;
    padding-top: 50px;
    padding-bottom: 50px;
}

.hero-main-title {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.hero-sub-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-desc {
    font-size: 1.25rem;
    font-weight: 600;
    color: #00d2ff !important;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

.hero-dock-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.dock-cell {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

    .dock-cell:last-child {
        border-right: none;
    }

.dock-anchor {
    display: block;
    padding: 18px 10px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s ease;
}

    .dock-anchor:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #00d2ff;
    }

    .dock-anchor i {
        color: #00d2ff;
    }

.speaker-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: transform 0.2s ease;
}

    .speaker-card:hover {
        transform: translateY(-3px);
    }

.custom-car-btn {
    width: 5%;
}

.night-theme-wrapper {
    position: relative;
    background: url('images/m4_bg.jpg') center/cover no-repeat;
    color: #ffffff;
}

    .night-theme-wrapper::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(11, 19, 43, 0.85);
        z-index: 1;
    }

    .night-theme-wrapper > * {
        position: relative;
        z-index: 2;
    }

.video-card-night {
    background: rgba(18, 28, 56, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    backdrop-filter: blur(10px);
}

.sponsor-card-night {
    background: #ffffff;
    padding: 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    height: 70px;
    width: 100%;
}

.sponsor-logo-img {
    max-height: 45px;
    max-width: 100%;
    object-fit: contain;
}

.gold-border {
    border: 2px solid #eab308;
}

.mtc-footer-night {
    background-color: rgba(5, 10, 24, 0.95);
}

.dates-notice-box {
    background-color: #fcfcfc;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
}

    .dates-notice-box:hover {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    }

    .dates-notice-box h3 {
        letter-spacing: -0.3px;
        color: #111827 !important;
    }

    .dates-notice-box span.text-secondary,
    .dates-notice-box span.text-dark {
        color: #1f2937 !important;
    }

.section-title-exact {
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #111827 !important;
}

.speaker-item-exact {
    padding: 10px;
}

.speaker-img-exact {
    object-fit: cover;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.speaker-divider {
    width: 40px;
    height: 2px;
    background-color: #cbd5e1;
    opacity: 1;
    margin: 10px auto;
}

.speaker-desc {
    font-size: 0.78rem;
    line-height: 1.4;
    color: #4b5563 !important;
}

.custom-slide-btn {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

    .custom-slide-btn:hover {
        opacity: 1;
    }

.carousel-control-prev {
    left: -30px;
}

.carousel-control-next {
    right: -30px;
}

.speaker-carousel-box .carousel-inner {
    /* min-height: 300px; */
}

.mtc-footer-modern {
    background: linear-gradient(135deg, #060913 0%, #0b132b 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-info-list li {
    line-height: 1.6;
}

.footer-arkadyas-link {
    transition: opacity 0.2s ease;
}

    .footer-arkadyas-link:hover {
        opacity: 1;
    }

        .footer-arkadyas-link:hover img {
            filter: brightness(1.2);
        }

@media (max-width: 991.98px) {
    .mobile-menu-collapse {
        background: rgba(11, 19, 43, 0.96) !important;
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        padding: 20px 24px;
        border-radius: 16px;
        margin-top: 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.5);
    }

        .mobile-menu-collapse .navbar-nav .nav-item {
            text-align: center;
            padding: 4px 0;
        }

    .navbar-nav .dropdown-menu {
        background: rgba(255, 255, 255, 0.05);
        border: none;
        text-align: center;
    }

    .navbar-nav .dropdown-item {
        color: rgba(255, 255, 255, 0.8);
    }

    .hero-main-title {
        font-size: 1.2rem;
    }

    h3.hero-sub-title.fs-3.text-white.mb-2 {
        font-size: 1.2rem;
    }

    .fs-3 {
        font-size: .8rem !important;
    }

    .fs-4 {
        font-size: 1rem !important;
    }
}

.davet p {
    text-align: justify !important;
}

h6 {
    color: #4f81bd;
    font-weight: bold;
}
