/* ===========================
   Mongools Landing Page CSS
   =========================== */

/* Basic body styling */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc; /* Tailwind slate-50 equivalent */
    color: #1e293b; /* slate-800 */
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Headers */
h1, h2, h3, h4, h5, h6 {
    color: #0f172a; /* slate-900 */
    margin-bottom: 0.5em;
}

/* Links */
a {
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}
a:hover {
    opacity: 0.85;
}

/* Header */
header {
    background: transparent;
}
header a#logo-affiliate:hover {
    transform: scale(1.02);
}

/* Hero Section */
.hero-bg {
    background: linear-gradient(90deg, #4f46e5 0%, #ec4899 100%);
    color: white;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* CTA Buttons */
a.inline-block.bg-amber-400 {
    background-color: #facc15;
    color: #111827;
    font-weight: 600;
    text-align: center;
}
a.inline-block.bg-amber-400:hover {
    background-color: #fbbf24;
    transform: scale(1.02);
}

/* Secondary CTA */
a.border {
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}
a.border:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Card / Demo Box */
.card-shadow {
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}
.card-shadow:hover {
    transform: translateY(-2px);
}

/* Lists in hero */
ul li {
    list-style: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

/* Forms */
#lead-form input {
    border: 1px solid #d1d5db;
    outline: none;
    font-size: 0.9rem;
}
#lead-form input:focus {
    border-color: #fbbf24;
}
#lead-form button {
    cursor: pointer;
}
#lead-msg {
    font-size: 0.8rem;
}

/* Affiliate banners */
.banner-thumb {
    transition: transform 0.2s ease-in-out;
}
.banner-thumb:hover {
    transform: scale(1.05);
}

/* Grid containers */
.grid {
    display: grid;
}
.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}
.gap-3 {
    gap: 0.75rem;
}

/* Footer */
footer {
    background-color: #f1f5f9;
    padding: 2rem 1rem;
    font-size: 0.875rem;
}
footer a {
    color: #4f46e5;
}
footer a:hover {
    text-decoration: underline;
}

/* Adsterra Socialbar */
#adsterra-socialbar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
}

/* Cookie banner */
#cookie-consent {
    display: none;
    background: #111;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
}
#cookie-consent button {
    margin-left: 8px;
    padding: 6px 10px;
    border-radius: 6px;
    background: #fff;
    color: #111;
    border: none;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-bg .grid {
        grid-template-columns: 1fr;
    }
    footer {
        text-align: center;
    }
    #ad-300x250 {
        display: none !important;
    }
}
