/* =========================================================
   Hot Saddle â€“ Global Theme
   Dark-first, light-mode ready
   ========================================================= */

/* -------------------------
   Design tokens
-------------------------- */



:root {
  --font-main: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html, body {
  font-family: var(--font-main);
}

:root {
    /* Brand colours */
    --accent: #E52767;
    --accent-soft: #ff6f8a;
    --accent-yellow: #FACC14;
    --accent-grey: #B5C1C2;
    --accent-cross: #F44667;
    --accent-yellow: #FACC14;

    --accent-highlight: #41436A;
    /* Core surfaces */

    --dark-bg: #121212;
    --card-bg: #41436A;

    /* Text */
    --text-main: #ffffff;
    --text-muted: #e6e6e6;

    /* Spacing scale */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2.5rem;

    /* Radius */
    --radius-sm: 600px;
    --radius-md: 1000px;
    --radius-lg: 16px;

    /* Motion */
    --transition-fast: all 0.15s ease;
    --transition-base: all 0.2s ease;
}



/* =========================================================
   8. Badges & Status
========================================================= */

.badge {
    font-weight: 600;
    letter-spacing: 0.2px;
    border-radius: 999px;
    padding: .35em .6em;
}

.badge-live {
    background: linear-gradient(90deg,#22c55e,#16a34a);
    color:#fff;
}

.badge-upcoming {
    background: linear-gradient(90deg,#facc15,#eab308);
    color:#000;
}



/* -------------------------
   Light mode overrides
-------------------------- */

[data-theme="light"] {
    --dark-bg: #f7f7fb;
    --card-bg: #ffffff;
    --text-main: #121212;
    --text-muted: #555555;
}

/* -------------------------
   Base elements
-------------------------- */

body {
    background-color: var(--dark-bg);
    color: var(--text-main);

}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    color: var(--accent-soft);
}

h1, h2, h3, h4, h5 {
    color: var(--accent);
}

p {
    color: var(--text-main);
}


.text-muted {
    color: var(--text-muted) !important;
}

/* -------------------------
   Cards
-------------------------- */

.card {
    background-color: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.card-header {
    background-color: rgba(0,0,0,0.25);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.card:hover {
    border-color: var(--accent);
}

/* -------------------------
   Buttons
-------------------------- */

.btn {
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}

.btn-primary {
    background-color: var(--accent);
    border-color: var(--accent);
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--accent-soft);
    border-color: var(--accent-soft);
}

.btn-outline-light:hover {
    background-color: rgba(255,255,255,0.08);
}

/* -------------------------
   Pricing components
-------------------------- */

.pricing-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    padding-top: calc(var(--space-lg) + 2.25rem); /* space for badge */
    height: 100%;
    position: relative;
    transition: var(--transition-base);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    border-color: var(--accent);
}

.plan-header {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.badge-best {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    background: var(--accent);
    color: #fff;
    padding: 0.4rem 0.7rem;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 999px;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

/* -------------------------
   Media / avatars
-------------------------- */

.instructor-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

/* -------------------------
   Video metadata
-------------------------- */

.video-date {
    font-size: 1rem;
    color: var(--accent);
    font-weight: bold;
}

.video-title {
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* -------------------------
   Tables (admin-safe)
-------------------------- */

.table-dark {
    background-color: var(--card-bg);
}

.table-dark th {
    background-color: rgba(0,0,0,0.35);
}

.table-dark td {
    color: var(--text-main);
}

/* -------------------------
   Utility
-------------------------- */

.shadow-soft {
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.rounded-lg {
    border-radius: var(--radius-lg);
}

/* -------------------------
   Footer
-------------------------- */

footer {
    opacity: 0.9;
    color: var(--text-muted);
}

/* ============================
   LIGHT MODE SUPPORT
============================ */

:root {
    --bg-main: #121212;
    --card-bg: #41436A;
    --text-main: #ffffff;
    --text-muted: #e6e6e6;
    --border-subtle: rgba(255,255,255,0.12);
}

/* Light mode overrides */
html[data-theme="light"] {
    --bg-main: #f7f7fb;
    --card-bg: #ffffff;
    --text-main: #121212;
    --text-muted: #555;
    --border-subtle: rgba(0,0,0,0.1);
}

/* Apply vars */
body {
    background-color: var(--bg-main);
    color: var(--text-main);
}

.card,
.pricing-card {
    background-color: var(--card-bg);
    border-color: var(--border-subtle);
}

footer,
.text-muted {
    color: var(--text-muted) !important;
}


.logo svg {
    width: 15vw;
    height: auto;
    transition: transform 0.4s ease, color 0.4s ease;
    color: var(--accent);
}

.logo:hover svg {
    transform: scale(1.05) rotate(-10deg);
    color: var(--accent-yellow);
}

.logo {
    color: #000;
}

.logo path {
    animation: pop-in 0.6s ease forwards;
    transform-origin: center;
    opacity: 0;
}

.logo path:nth-child(1) { animation-delay: 0s; }
.logo path:nth-child(2) { animation-delay: 1.4s; }
.logo path:nth-child(3) { animation-delay: 0.2s; }
.logo path:nth-child(4) { animation-delay: 0.3s; }
.logo path:nth-child(5) { animation-delay: 0.4s; }
.logo path:nth-child(6) { animation-delay: 0.5s; }
.logo path:nth-child(7) { animation-delay: 0.6s; }
.logo path:nth-child(8) { animation-delay: 0.7s; }
.logo path:nth-child(9) { animation-delay: 0.8s; }
.logo path:nth-child(10) { animation-delay: 0.9s; }
.logo path:nth-child(11) { animation-delay: 1s; }
.logo path:nth-child(12) { animation-delay: 1.1s; }
.logo path:nth-child(13) { animation-delay: 1.2s; }
.logo path:nth-child(14) { animation-delay: 1.3s; }

@keyframes pop-in {
    from {
        opacity: 0;
        transform: scale(0.1);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}




img.logo {
    max-height: 180px !important;
    height: auto !important;
    width: auto !important;
}
