/* ===========================
   Vengeance Sound – Home Styles
   =========================== */

html, body {
    font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial;
    background-color: #0b0f14;
    color: #fff;
}

/* ---------- Colors ---------- */
:root {
    --bg: #0b0f14;
    --bg-soft: #0f141b;
    --bg-card: #121822;
    --brand: #4aa3ff;
    --brand-dim: #2b79cc;
    --text-muted: rgba(255,255,255,0.7);
}

/* ---------- Helpers ---------- */
.text-muted {
    color: var(--text-muted);
}
.ring-hover {
    transition: box-shadow .2s, transform .2s;
}
.ring-hover:hover {
    box-shadow: 0 0 0 1px rgba(74,163,255,.35), 0 12px 30px rgba(0,0,0,.4);
    transform: translateY(-1px);
}
.card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 0.75rem;
    box-shadow: 0 8px 30px rgba(0,0,0,.35);
    overflow: hidden;
}

/* ---------- Hero Section ---------- */
.hero {
    position: relative;
    text-align: center;
    padding: 5rem 1rem 6rem;
    background: radial-gradient(1000px 600px at 20% -10%, rgba(74,163,255,.25), transparent);
}
.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
}
.hero p {
    margin-top: 1rem;
    font-size: 1.125rem;
    color: var(--text-muted);
}
.hero .cta {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}
.hero .cta a {
    padding: 0.9rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: background-color .2s;
}
.hero .cta a.primary {
    background-color: var(--brand);
}
.hero .cta a.primary:hover {
    background-color: var(--brand-dim);
}
.hero .cta a.secondary {
    background-color: rgba(255,255,255,.1);
}
.hero .cta a.secondary:hover {
    background-color: rgba(255,255,255,.15);
}

/* ---------- Section Headings ---------- */
.section-heading {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

/* ---------- Plugin & Samplepack Cards ---------- */
.plugin-card,
.samplepack-card {
    display: flex;
    flex-direction: column;
}
.plugin-card img,
.samplepack-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 0.5rem;
}
.plugin-card .info,
.samplepack-card .info {
    padding: 1rem;
    flex: 1;
}
.plugin-card h3,
.samplepack-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
}
.plugin-card ul {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}
.samplepack-card .price {
    font-size: 1.125rem;
    font-weight: bold;
    margin-top: auto;
}

/* ---------- Freebies & Downloads ---------- */
.freebie-card,
.download-card {
    padding: 1.25rem;
    text-decoration: none;
    display: block;
}
.freebie-card h3,
.download-card h3 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.freebie-card p,
.download-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ---------- Testimonials ---------- */
.testimonial {
    padding: 1.25rem;
    font-style: italic;
}
.testimonial figcaption {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ---------- Infinite Scroll ---------- */
#samplepacks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
#loadMoreBtn {
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    background-color: rgba(255,255,255,.1);
    cursor: pointer;
    transition: background-color .2s;
}
#loadMoreBtn:hover {
    background-color: rgba(255,255,255,.15);
}

/* ---------- Footer ---------- */
footer {
    border-top: 1px solid rgba(255,255,255,.05);
    padding: 2.5rem 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}
footer a {
    color: var(--text-muted);
    text-decoration: none;
}
footer a:hover {
    color: #fff;
}
