/* ========================================
   ASIC Conference 2026 - Modern Stylesheet
   ======================================== */

/* Color Reference:
   Primary Blue: #2563eb
   Primary Blue Dark: #1e40af
   Light Blue: #dbeafe
   Yellow Highlight: #fef08a
   Orange Highlight: #fed7aa
   Green Highlight: #d1fae5
   Border Color: #cbd5e1
   Text Dark: #1e293b
   Text Muted: #64748b
*/

/* Base Wrapper */
.binh-landing-wrapper {
    width: 100%;
    margin: 0 auto;
    clear: both;
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
}

/* Full Width Banner with Modern Touch */
.full-width-banner {
    width: 100vw !important;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    line-height: 0;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.full-width-banner img {
    width: 100% !important;
    height: auto !important;
    display: block;
    transition: transform 0.5s ease;
}

.full-width-banner:hover img {
    transform: scale(1.02);
}

/* Content Containers */
.sodo-section,
.content {
    max-width: 1300px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: left;
}

/* Map Box with Modern Design */
.map-box {
    border: 2px solid #cbd5e1;
    padding: 20px;
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.map-box:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.map-box img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Location Heading with Icon */
.location-heading {
    display: flex;
    align-items: center;
    color: #2563eb;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    margin: 20px 0;
    padding: 12px 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.location-heading::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 10px;
    border-radius: 10px;
    margin-right: 12px;
    background: linear-gradient(to right, #3b82f6 50%, #ef4444 50%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Main Title - Enhanced Design */
.main-title {
    text-align: center;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid #2563eb;
    padding: 24px 20px;
    margin: 50px auto 30px auto;
    max-width: 1300px;
    font-size: 36px;
    font-weight: 800;
    color: #1e40af;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.main-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #3b82f6, #8b5cf6, #ec4899);
}

/* Tabs Container */
.tabs-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Modern Tab Header */
.tab-header {
    display: flex;
    gap: 8px;
    margin-bottom: -1px;
    flex-wrap: wrap;
}

.tab-btn {
    flex: 1;
    min-width: 150px;
    padding: 18px 24px;
    border: 2px solid #cbd5e1;
    background: linear-gradient(to bottom, #ffffff, #dbeafe);
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 5px 5px 5px 5px;
    color: #1e293b;
    position: relative;
    overflow: hidden;
}

.tab-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.tab-btn:hover::before {
    left: 100%;
}

.tab-btn:hover {
    background: linear-gradient(to bottom, #dbeafe, #bfdbfe);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.tab-btn.active {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    border-bottom-color: transparent;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
}

.tab-btn.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #60a5fa, #a78bfa);
}

/* Tab Content */
.tab-content {
    display: none;
    border: 2px solid #cbd5e1;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    background: white;
}

.tab-content.active {
    display: block;
    animation: fadeInSlide 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Schedule Table - Modern Design */
.schedule-table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin: 0 !important;
    background-color: white;
    border: none;
}

.schedule-table thead th {
    background-color: #2563eb;
    color: white;
    padding: 16px 20px;
    text-align: left;
    font-weight: 700;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.schedule-table tr {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.schedule-table tr:hover {
    background-color: #f8fafc;
}

.schedule-table td {
    padding: 16px 20px;
    border: 1px solid #cbd5e1;
    line-height: 1.6;
    vertical-align: middle;
}

/* Column Layout */
.schedule-table .col-time {
    width: 140px;
    min-width: 140px;
    font-weight: 700;
    text-align: center;
    color: #1e40af;
    font-size: 15px;
    background: #f8fafc;
}

.schedule-table .col-topic {
    color: #1e293b;
    font-size: 15px;
}

.schedule-table .col-speaker {
    width: 300px;
    min-width: 250px;
    font-weight: 600;
    color: #64748b;
    font-size: 14px;
}

.schedule-table .col-download {
    width: 80px;
    min-width: 80px;
    text-align: center;
}

.btn-download {
    color: white;
    background-color: #2563eb;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
}

.btn-download:hover {
    background-color: #1e40af;
    transform: scale(1.1);
    box-shadow: 0 4px 6px rgba(30, 64, 175, 0.3);
}

.btn-download svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

/* Special Row Styles - Enhanced */
.schedule-table .bg-yellow {
    background: linear-gradient(135deg, #fef9c3 0%, #fef08a 100%) !important;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 18px;
    color: #713f12;
    border-left: 6px solid #eab308;
}

.schedule-table .bg-orange {
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%) !important;
    font-style: italic;
    font-weight: 700;
    color: #9a3412;
    border-left: 4px solid #f97316;
}

.schedule-table .bg-green {
    background: linear-gradient(135deg, #f0fdf4 0%, #d1fae5 100%) !important;
    font-weight: 700;
    color: #14532d;
    border-left: 6px solid #10b981;
    font-size: 16px;
}

.text-center {
    text-align: center !important;
}

/* Animations */
@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {

    .tabs-container,
    .content,
    .sodo-section {
        padding: 0 15px;
    }

    .main-title {
        font-size: 28px;
        padding: 20px 15px;
    }
}

@media (max-width: 768px) {
    .tab-btn {
        font-size: 18px;
        padding: 14px 16px;
        min-width: 120px;
    }

    .main-title {
        font-size: 22px;
        padding: 16px 12px;
        letter-spacing: 0.5px;
    }

    .schedule-table thead {
        display: none;
    }

    .schedule-table tr {
        display: block;
        border: 1px solid #cbd5e1;
        border-radius: 8px;
        margin-bottom: 20px;
        overflow: hidden;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    }

    .schedule-table td {
        display: block !important;
        width: 100% !important;
        border: none;
        border-bottom: 1px solid #f1f5f9;
        padding: 14px 16px;
        box-sizing: border-box;
        text-align: left !important;
        position: relative;
    }

    .schedule-table .col-time::before { content: "Thời gian: "; font-weight: 700; color: #1e40af; margin-right: 8px; }
    .schedule-table .col-topic::before { content: "Chủ đề: "; font-weight: 700; color: #1e40af; display: block; margin-bottom: 4px; }
    .schedule-table .col-speaker::before { content: "Báo cáo viên: "; font-weight: 700; color: #1e40af; margin-right: 8px; }

    .schedule-table .col-download {
        background-color: #f8fafc;
        text-align: center !important;
        padding: 10px;
    }

    .schedule-table .col-download:empty {
        display: none;
    }

    .schedule-table .bg-yellow,
    .schedule-table .bg-orange,
    .schedule-table .bg-green {
        border-left: none;
        border-top: 6px solid;
    }

    .schedule-table .bg-yellow { border-top-color: #eab308; }
    .schedule-table .bg-orange { border-top-color: #f97316; }
    .schedule-table .bg-green { border-top-color: #10b981; }

    .schedule-table .bg-yellow td,
    .schedule-table .bg-orange td,
    .schedule-table .bg-green td {
        text-align: center !important;
        font-size: 16px;
    }

    .location-heading {
        font-size: 16px;
        padding: 10px 16px;
    }

    .map-box {
        padding: 12px;
        border-radius: 8px;
    }
	.mkd-mobile-header .mkd-mobile-logo-wrapper img {
		height: 80%;
		width: 90%;
		position: absolute;
		right: 0%;
		top: 20px;
	}
	.mkd-title .mkd-title-holder h1 span {
		font-size: 0.8em;
        margin-top: 20px;
	}
	.mkd-grid-row {
		margin-left: 0px;
		margin-right: 0px;
	}
	.mkd-content {
		margin: 2px;
	}
	.mkd-mobile-header .mkd-mobile-menu-opener {
		float: left;
		position: absolute;
		left: -30px;
		z-index: 112;
		height: 100%;
	}
}

@media (max-width: 480px) {
    .tab-header {
        flex-direction: column;
        gap: 6px;
    }

    .tab-btn {
        width: 100%;
        border-radius: 8px;
        font-size: 16px;
    }

    .tab-btn.active {
        border-radius: 8px;
    }

    .tab-content {
        border-radius: 8px;
    }

    .main-title {
        font-size: 18px;
        padding: 14px 10px;
    }

    .schedule-table .col {
        padding: 10px 12px;
    }
}

/* Print Styles */
@media print {

    .full-width-banner,
    .tab-header {
        display: none;
    }

    .tab-content {
        display: block !important;
        border: 1px solid #000;
        page-break-inside: avoid;
    }

    .schedule-table .row {
        page-break-inside: avoid;
    }
}