/* ── AidVid public site styles ─────────────────────────────────────────────── */

/* Global */
body {
    background-color: #F0F0F0;
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
}

/* ── Navbar ─────────────────────────────────────────────────────────────────── */
.av-navbar {
    background-color: #1a1a2e;
    padding: 0.6rem 1rem;
}

.av-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.av-navbar .btn-sm {
    padding: 0.3rem 0.85rem;
    font-size: 0.8rem;
}

.av-navbar .av-btn-primary.btn-sm {
    padding: 0.3rem 1rem;
}

/* ── Hero section ─────────────────────────────────────────────────────────── */
.av-hero {
    padding: 80px 16px 60px;
}

.jumboTitle {
    font-size: 65px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .jumboTitle {
        font-size: 40px;
    }
}

.gradientTextCherry {
    background: linear-gradient(90deg, #09009f, #c81eab);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.av-hero-subtitle {
    font-size: 1.25rem;
    color: #444;
    max-width: 700px;
    margin: 0 auto 32px;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.av-btn-primary {
    background: linear-gradient(90deg, #09009f, #c81eab);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 0.65rem 2rem;
    border-radius: 30px;
    transition: opacity 0.2s;
}

.av-btn-primary:hover,
.av-btn-primary:focus {
    opacity: 0.88;
    color: #fff;
}

/* ── Example cards grid ─────────────────────────────────────────────────── */
.av-examples {
    padding: 40px 0 60px;
}

.av-section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 28px;
}

.av-example-card {
    text-decoration: none;
    color: inherit;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    transition: transform 0.18s, box-shadow 0.18s;
    background: #fff;
}

.av-example-card:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

.av-card-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

.av-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.4rem;
    line-height: 1.35;
}

.av-card-text {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.55;
    margin-bottom: 0;
}

/* ── Sign-in dialog buttons ──────────────────────────────────────────────── */
.av-signin-btn {
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.15s;
}

.av-signin-fb {
    background-color: #1877F2;
    color: #fff;
    border: none;
}
.av-signin-fb:hover { opacity: 0.88; color: #fff; }

.av-signin-google {
    background-color: #fff;
    color: #333;
    border: 1px solid #dadce0;
}
.av-signin-google:hover { background-color: #f8f8f8; color: #333; }

/* ── Pro feature cards ───────────────────────────────────────────────────── */
.av-pro-card {
    border-radius: 10px;
    border: 1px solid #e8e8f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.18s, box-shadow 0.18s;
}

.av-pro-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.av-pro-icon {
    color: #c81eab;
}

/* ── Basic page ─────────────────────────────────────────────────────────── */
.av-basic-page h1 {
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.av-body-content {
    max-width: 800px;
    line-height: 1.75;
    color: #333;
}

/* ── Footer ─────────────────────────────────────────────────────────────── */
.av-footer {
    background-color: #1a1a2e;
    color: #bbb;
    padding: 24px 0;
    margin-top: 40px;
}

.av-footer-copy {
    font-size: 0.85rem;
}

.av-footer-social a {
    color: #bbb;
    transition: color 0.15s;
}

.av-footer-social a:hover {
    color: #fff;
}
