/* --- General Variables & Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fdfdfd;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}
.bg-light {
    background-color: #f8f9fa;
}
a {
    text-decoration: none;
    transition: 0.3s ease;
}

/* --- Premium Header & Nav --- */
header {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-bottom: 3px solid #D52B1E;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
}
.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo img {
    height: 40px;
    border-radius: 5px;
}
.logo span { color: #D52B1E; }
.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}
.nav-links a {
    color: #555;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.nav-links a:hover, .nav-links a.active {
    color: #D52B1E;
}
.swiss-time {
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 50px;
    padding: 6px 15px;
    font-size: 13px;
    color: #D52B1E;
    font-weight: bold;
}

/* --- Hero Section --- */
.hero {
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('images/hero.jpg') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}
.hero-content h1 {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 15px;
}
.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta-btn {
    background: #D52B1E;
    color: #fff;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
}
.cta-btn:hover { background: #b02016; }

/* --- Section Typography --- */
.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #D52B1E;
    margin: 10px auto 0;
}
.sub-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: #34495e;
}

/* --- Layout Grids --- */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.margin-bottom { margin-bottom: 40px; }

/* --- Component Cards --- */
.card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
    border: 1px solid #eee;
}
.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.card-body { padding: 25px; }
.category {
    font-size: 12px;
    text-transform: uppercase;
    color: #D52B1E;
    font-weight: 700;
}
.card-body h3 {
    font-size: 20px;
    margin: 10px 0;
    color: #2c3e50;
}
.read-more {
    display: inline-block;
    margin-top: 15px;
    color: #D52B1E;
    font-weight: 600;
}

/* --- Amazon Product Cards --- */
.product-card {
    background: #fff;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
}
.product-card img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background: #fff;
    padding: 20px;
}
.product-info {
    padding: 25px;
    background: #fafafa;
    border-top: 1px solid #eee;
    flex-grow: 1;
}
.affiliate-btn {
    display: block;
    text-align: center;
    background: #FF9900;
    color: #111;
    font-weight: 700;
    padding: 10px;
    border-radius: 5px;
    margin-top: 15px;
}
.affiliate-btn:hover { background: #e68a00; }

/* --- Booking Cards --- */
.booking-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid #D52B1E;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    border-top: 1px solid #eee;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.booking-card h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}
.booking-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    border-radius: 5px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}
.booking-btn.hotel { background: #003580; } /* Booking.com Color */
.booking-btn.hotel:hover { background: #002252; }
.booking-btn.transport { background: #ff5722; }
.booking-btn.transport:hover { background: #e04819; }

/* --- Premium Footer --- */
footer {
    background: #222;
    color: #bbb;
    font-size: 14px;
}
.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}
.footer-about { max-width: 450px; }
.footer-about h3, .footer-links h3 {
    color: #fff;
    margin-bottom: 15px;
}
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { color: #bbb; }
.footer-links ul li a:hover { color: #fff; }
.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #333;
    background: #1a1a1a;
}
.disclosure {
    font-size: 11px;
    color: #777;
    margin-bottom: 8px;
}

/* --- Mobile Responsive CSS --- */
@media(max-width: 768px) {
    nav { flex-direction: column; gap: 15px; text-align: center; }
    .nav-links { flex-direction: column; gap: 10px; }
    .hero-content h1 { font-size: 32px; }
    .container { padding: 40px 15px; }
}

/* Blog Text Fix Mode */
.article-text, .article-text p {
    display: block !important;
    visibility: visible !important;
    color: #444444 !important;
    font-size: 16px !important;
    line-height: 1.9 !important;
    opacity: 1 !important;
}

main.container {
    display: block !important;
    min-height: 100vh !important;
}

@media (max-width: 992px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr); /* ট্যাবলেট স্ক্রিনে ২টা করে দেখাবে */
    }
}

@media (max-width: 600px) {
    .grid-container {
        grid-template-columns: repeat(1, 1fr); /* মোবাইল স্ক্রিনে ১টা করে দেখাবে */
    }
}

/* ব্লগ বুকিং বক্সের স্টাইল */
.blog-booking-box {
    background-color: #f9f9f9;
    border-left: 4px solid #d92323; /* আপনার ব্র্যান্ডের লাল কালার */
    padding: 15px 20px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-family: 'Poppins', sans-serif;
}
.booking-box-text {
    font-weight: 500;
    color: #333;
    font-size: 15px;
    margin: 0;
}
.blog-booking-btn {
    background-color: #d92323;
    color: #fff !important;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.blog-booking-btn:hover {
    background-color: #b01a1a;
    transform: translateY(-2px);
}