/* ==========================================
   SHOONYA SPEAKS – Isha‑Inspired Design
   Mobile‑First, Clean, Spiritual & Modern
   ========================================== */

/* ----- GLOBAL RESET & VARIABLES ----- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Color Palette (Isha‑inspired) */
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --text-dark: #1a1a1a;
    --text-soft: #4a4a4a;
    --accent-gold: #c9a84c;
    --accent-burgundy: #8b1e1e;
    --accent-burgundy-light: #a52a2a;
    --border-light: #eaeaea;

    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 5rem 1.5rem;
    --card-gap: 2rem;
    --container-max: 1280px;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-size: 1rem;
}

main {
    flex: 1;
}

/* ----- CONTAINER ----- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

/* ----- TYPOGRAPHY ----- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* ----- BUTTONS & LINKS ----- */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent-burgundy);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: var(--accent-burgundy-light);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-burgundy);
    color: var(--accent-burgundy);
}

.btn-outline:hover {
    background: var(--accent-burgundy);
    color: white;
}

/* ----- HERO CARDS (Seeker, Trader, Author) ----- */
.hero-cards {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.cards-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: var(--card-gap);
    justify-content: center;
}

.hero-card {
    flex: 1 1 280px;
    max-width: 380px;
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-card-image {
    height: 260px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.hero-card:hover .hero-card-overlay {
    background: rgba(139, 30, 30, 0.3);
}

.hero-card-title {
    position: relative;
    z-index: 2;
    color: white;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.hero-card-content {
    padding: 1.8rem 1.5rem;
    text-align: left;
}

.hero-card-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-soft);
    margin: 0 0 1rem 0;
}

.hero-card-link {
    display: inline-block;
    font-weight: 600;
    color: var(--accent-burgundy);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.hero-card:hover .hero-card-link {
    border-bottom-color: var(--accent-burgundy);
}

/* ----- SECTION HEADINGS ----- */
.section-title {
    text-align: center;
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-family: var(--font-heading);
}

/* ----- FOOTER (Light, Clean) ----- */
.site-footer {
    background: var(--bg-light);
    border-top: 1px solid var(--border-light);
    padding: 3rem 0;
    margin-top: auto;
}

.footer-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer-col {
    flex: 1 1 200px;
}

.footer-col h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: var(--accent-burgundy);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-soft);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-burgundy);
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--border-light);
    font-size: 0.85rem;
    color: var(--text-soft);
}

/* ----- MOBILE ADJUSTMENTS ----- */
@media (max-width: 768px) {
    :root {
        --section-padding: 3rem 1rem;
    }

    .hero-card-image {
        height: 220px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* ----- UTILITY CLASSES ----- */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }