/*
Theme Name: GeneratePress Child
Template: generatepress
Description: Qlint custom child theme
Version: 1.0
*/

/* === CSS Variables === */
:root {
    --qlint-blue: #2563EB;
    --qlint-dark: #020817;
    --qlint-gray: #374151;
    --qlint-light: #F3F4F6;
    --qlint-radius: 16px;
}

/* === Reset page background === */
body.page {
    background-color: #fff !important;
}

/* === Typography (Manrope from Google Fonts) === */
body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* === Badge === */
.qlint-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.15);
    color: var(--qlint-blue);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* === Buttons === */
.qlint-btn {
    display: inline-block;
    background: var(--qlint-blue);
    color: #fff !important;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.qlint-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    color: #fff !important;
}

/* === Cards === */
.qlint-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.qlint-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* === Testimonials === */
.qlint-testimonial {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.qlint-testimonial:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* === Grid (only on .qlint-grid, NOT on sections) === */
.qlint-grid {
    display: grid;
}

/* === Responsive === */
@media (max-width: 768px) {
    .qlint-hero h1,
    .qlint-section h1 {
        font-size: 36px !important;
    }
    .qlint-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 1024px) {
    .qlint-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
