/* === Reset & Base === */
:root {
    --brand-yellow: #dbe266;
    --brand-yellow-hover: #c2d400;
    --black: #131211;
    --white: #ececec;
    --gray-50: #f5f5f5;
    --gray-100: #f5f5f5;
    --gray-200: #e0e0e0;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #666666;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    /* Header/Jara aliases */
    --accent: #dbe266;
    --accent-hover: #c2d400;
    --dark: #1a1a1a;
    --darker: #141414;
    --darkest: #131211;
    --light: #f5f5f5;
    --gray: #666666;
    --gray-light: #e0e0e0;
    --text: #444444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.text-highlight {
    background-color: var(--black);
    color: var(--brand-yellow);
    padding: 0 8px;
}

/* === Course Cards === */
.course-cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
    padding: 2rem 0;
}

.course-card {
    width: 100%;
    max-width: 340px;
    background: var(--accent, #dbe266);
    border: none;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    text-decoration: none;
    color: var(--darkest, #131211);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 8px 8px 0px var(--darkest, #131211);
}

.course-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 11px 11px 0px var(--darkest, #131211);
}

.course-card-body {
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.course-card-title {
    font-family: 'Jockey One', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--darkest, #131211);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.course-card-divider {
    width: 100%;
    height: 3px;
    background-color: var(--darkest, #131211);
    margin-bottom: 1rem;
}

.course-card-price {
    font-family: 'Nunito', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--darkest, #131211);
    margin-top: 0.25rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.course-card-price .text-highlight {
    background-color: var(--darkest, #131211);
    color: var(--accent, #dbe266);
    padding: 2px 8px;
}

.course-card-description {
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--darkest, #131211);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    text-transform: none;
    letter-spacing: 0;
}

.course-card-button {
    width: 100%;
    background-color: var(--darkest, #131211);
    color: var(--white, #ececec);
    border: none;
    padding: 0.85rem 1rem;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.course-card:hover .course-card-button {
    background-color: var(--dark, #1a1a1a);
    color: var(--accent, #dbe266);
}

@media (max-width: 768px) {
    .course-cards-grid {
        gap: 2rem 1rem;
    }

    .course-card {
        max-width: 100%;
    }
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--white);
    color: #1a1a1a;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    padding-top: 5rem;
    /* Height of header on mobile */
}

@media (min-width: 1024px) {
    body {
        padding-top: 5rem;
        /* Height of header on desktop matching default */
    }
}

::selection {
    background-color: var(--brand-yellow);
    color: #000000;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
}

input,
textarea {
    font-family: inherit;
}

/* === Layout === */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ... skipped lines ... */

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* === Typography === */
.font-display {
    font-family: 'Jockey One', sans-serif;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.text-6xl {
    font-size: 3.75rem;
    line-height: 1;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.font-black {
    font-weight: 900;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.font-medium {
    font-weight: 500;
}

.uppercase {
    text-transform: uppercase;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

/* === Colors === */
.text-white {
    color: var(--white);
}

.text-black {
    color: var(--black);
}

.text-brand-yellow {
    color: var(--brand-yellow);
}

.text-gray-400 {
    color: #9ca3af;
}

.text-gray-500 {
    color: #6b7280;
}

.text-gray-600 {
    color: #4b5563;
}

.text-gray-700 {
    color: #374151;
}

.text-gray-300 {
    color: #d1d5db;
}

.text-gray-200 {
    color: #e5e7eb;
}

.text-green-600 {
    color: #16a34a;
}

.text-red-600 {
    color: #dc2626;
}

.bg-transparent {
    background-color: transparent;
}

.bg-white {
    background-color: var(--white);
}

.bg-black {
    background-color: var(--black);
}

.bg-brand-yellow {
    background-color: var(--brand-yellow);
}

.bg-gray-50 {
    background-color: var(--gray-50);
}

.bg-gray-100 {
    background-color: var(--gray-100);
}

.bg-gray-800 {
    background-color: var(--gray-800);
}

.bg-gray-900 {
    background-color: var(--gray-900);
}

.bg-green-50 {
    background-color: #f0fdf4;
}

.bg-red-50 {
    background-color: #fef2f2;
}

.bg-gradient-yellow {
    background: linear-gradient(to bottom right, var(--brand-yellow), #f4e371);
}

.bg-gradient-dark {
    background: linear-gradient(to bottom right, #111827, #000000);
}

/* === Borders === */
.border {
    border-width: 1px;
}

.border-2 {
    border-width: 2px;
}

.border-4 {
    border-width: 4px;
}

.border-t {
    border-top-width: 1px;
}

.border-t-2 {
    border-top-width: 2px;
}

.border-t-4 {
    border-top-width: 4px;
}

.border-l-4 {
    border-left-width: 4px;
}

.border-black {
    border-color: var(--black);
}

.border-brand-yellow {
    border-color: var(--brand-yellow);
}

.border-gray-200 {
    border-color: #e5e7eb;
}

.border-gray-300 {
    border-color: #d1d5db;
}

.border-gray-800 {
    border-color: #1f2937;
}

.border-green-600 {
    border-color: #16a34a;
}

.border-red-600 {
    border-color: #dc2626;
}

.rounded-lg {
    border-radius: 0;
}

/* === Spacing === */
.p-2 {
    padding: 0.5rem;
}

.p-3 {
    padding: 0.75rem;
}

.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.p-12 {
    padding: 3rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.pt-2 {
    padding-top: 0.5rem;
}

.pt-20 {
    padding-top: 5rem;
}

.pb-12 {
    padding-bottom: 3rem;
}

.m-0 {
    margin: 0;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mr-3 {
    margin-right: 0.75rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.-mr-2 {
    margin-right: -0.5rem;
}

.space-y-1>*+* {
    margin-top: 0.25rem;
}

.space-y-4>*+* {
    margin-top: 1rem;
}

.space-y-6>*+* {
    margin-top: 1.5rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-12 {
    gap: 3rem;
}

/* === Display & Flexbox === */
.hidden {
    display: none;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.flex {
    display: flex;
}

.inline-flex {
    display: inline-flex;
}

.grid {
    display: grid;
}

.flex-col {
    flex-direction: column;
}

.flex-1 {
    flex: 1 1 0%;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.items-start {
    align-items: flex-start;
}

.items-center {
    align-items: center;
}

.items-baseline {
    align-items: baseline;
}

.justify-start {
    justify-content: flex-start;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* === Positioning === */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.sticky {
    position: sticky;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.top-20 {
    top: 5rem;
}

.hover\:-translate-y-0\.5:hover {
    transform: translateY(-2px);
}

.z-10 {
    z-index: 10;
}

.z-50 {
    z-index: 50;
}

.-z-1 {
    z-index: -1;
}

/* === Sizing === */
.w-full {
    width: 100%;
}

.w-0 {
    width: 0;
}

.w-10 {
    width: 2.5rem;
}

.h-8 {
    height: 2rem;
}

.h-12 {
    height: 3rem;
}

.h-20 {
    height: 5rem;
}

.h-full {
    height: 100%;
}

.h-screen {
    height: 100vh;
}

.h-15px {
    height: 15px;
}

.min-h-screen {
    min-height: 100vh;
}

.max-w-md {
    max-width: 28rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-4xl {
    max-width: 56rem;
}

/* === Effects === */
.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.opacity-60 {
    opacity: 0.6;
}

.overflow-hidden {
    overflow: hidden;
}

/* === Transitions === */
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-colors {
    transition-property: color, background-color, border-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-shadow {
    transition-property: box-shadow;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-300 {
    transition-duration: 300ms;
}

/* === Interactive === */
.cursor-pointer {
    cursor: pointer;
}

.pointer-events-none {
    pointer-events: none;
}

.hover\:text-black:hover {
    color: var(--black);
}

.hover\:text-white:hover {
    color: var(--white);
}

.hover\:text-brand-yellow:hover {
    color: var(--brand-yellow);
}

.hover\:bg-black:hover {
    background-color: var(--black);
}

.hover\:bg-brand-yellow:hover {
    background-color: var(--brand-yellow);
}

.hover\:bg-gray-800:hover {
    background-color: #1f2937;
}

.hover\:bg-gray-900:hover {
    background-color: #111827;
}

.hover\:bg-yellow-400:hover {
    background-color: #facc15;
}

.hover\:border-black:hover {
    border-color: var(--black);
}

.hover\:border-brand-yellow:hover {
    border-color: var(--brand-yellow);
}

.hover\:shadow-lg:hover {
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
}

.hover\:shadow-xl:hover {
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.2);
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

.hover\:-translate-y-0\.5:hover {
    transform: translateY(-0.125rem);
}

.focus\:outline-none:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.focus\:border-black:focus {
    border-color: var(--black);
}

/* === Buttons === */
.btn-primary {
    display: inline-block;
    background-color: var(--brand-yellow);
    color: var(--black);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    padding: 0.75rem 2rem;
    text-align: center;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #c9d15a;
    border-color: var(--black);
    transform: translateY(-2px);
}

/* === Header === */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(4px);
}

.nav-link {
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 0;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.15s;
}

.nav-link:hover {
    color: var(--black);
    background-color: var(--brand-yellow);
}

/* === Hero Section === */

/* === Form Styling === */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    transition: border-color 0.15s;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--black);
}

label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 0.5rem;
}

/* === Details/FAQ === */
details {
    background-color: var(--white);
    padding: 1.5rem;
    border: 2px solid var(--black);
}

details>div {
    margin-top: 1rem;
    color: #374151;
}

/* === Custom Scrollbar === */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #fff;
}

::-webkit-scrollbar-thumb {
    background: #e5e7eb;
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-yellow);
}

/* === Responsive Utilities === */

@media (min-width: 768px) {

    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .md\:flex-row {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .lg\:flex {
        display: flex;
    }

    .lg\:hidden {
        display: none;
    }

    .lg\:block {
        display: block;
    }

    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .lg\:col-span-2 {
        grid-column: span 2 / span 2;
    }

    .lg\:col-span-3 {
        grid-column: span 3 / span 3;
    }
}

/* === Utility Classes === */

.tracking-wider {
    letter-spacing: 0.05em;
}

.border-b-4 {
    border-bottom-width: 4px;
}

.bg-cover {
    background-size: cover;
}

.bg-no-repeat {
    background-repeat: no-repeat;
}

.bg-right {
    background-position: right center;
}

.bg-hero-gradient {
    background: linear-gradient(135deg, rgba(219, 226, 102, 0.85) 0%, rgba(232, 236, 122, 0.85) 100%);
}

/* === Sidebar === */
.sidebar-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: #374151;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.2s;
    margin-bottom: 0.25rem;
}

.sidebar-link:hover {
    background-color: #f3f4f6;
    color: var(--black);
}

.sidebar-link.active {
    background-color: var(--brand-yellow);
    color: var(--black);
}

.sidebar-link i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

/* === Admin Layout === */

/* === Tables === */
.table-container {
    width: 100%;
    overflow-x: auto;
    background-color: var(--white);
    border-radius: 0;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.875rem;
}

.table th {
    background-color: #f3f4f6;
    color: #374151;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #e5e7eb;
}

.table td {
    padding: 1rem 1.5rem;
    color: #111827;
    border-bottom: 1px solid #f3f4f6;
}

.table tr:last-child td {
    border-bottom: none;
}

.table tbody tr {
    transition: background-color 0.2s;
}

.table tbody tr:hover {
    background-color: #f9fafb;
}

/* === Badges === */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.625rem;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
}

.badge-warning {
    background-color: #fef3c7;
    color: #92400e;
}

.badge-secondary {
    background-color: #f3f4f6;
    color: #374151;
}

.badge-success {
    background-color: #dcfce7;
    color: #166534;
}

.badge-danger {
    background-color: #fee2e2;
    color: #991b1b;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: 'Nunito', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 0;
    text-decoration: none;
}

.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
}

.btn-outline-primary {
    background-color: transparent;
    border-color: var(--brand-yellow);
    color: var(--black);
}

.btn-outline-primary:hover {
    background-color: var(--brand-yellow);
}

.btn-outline-secondary {
    background-color: transparent;
    border-color: #d1d5db;
    color: #374151;
}

.btn-outline-secondary:hover {
    background-color: #f3f4f6;
    border-color: #9ca3af;
}

.btn-outline-danger {
    background-color: transparent;
    border-color: #fca5a5;
    color: #dc2626;
}

.btn-outline-danger:hover {
    background-color: #fee2e2;
    border-color: #ef4444;
}

.btn-danger {
    background-color: #dc2626;
    color: var(--white);
}

.btn-danger:hover {
    background-color: #b91c1c;
}

/* === Spacing Utilities (Added for Homepage) === */
.pt-16 {
    padding-top: 4rem !important;
}

.pt-20 {
    padding-top: 5rem !important;
}

.pb-12 {
    padding-bottom: 3rem !important;
}

.mb-12 {
    margin-bottom: 3rem !important;
}

.mt-12 {
    margin-top: 3rem !important;
}

/* === Course Card Height Fix === */
.course-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* ===== NEW HEADER STYLES (from styles_jara.css) ===== */

.btn-accent {
    background: var(--accent);
    color: var(--dark);
}

.btn-accent:hover {
    background: var(--accent-hover);
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--darker);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
}

.btn-outline-dark {
    background: transparent;
    border: 2px solid var(--dark);
    color: var(--dark);
}

.btn-outline-dark:hover {
    background: var(--dark);
    color: var(--white);
}

/* Hero buttons (header nav) */

/* ===== HEADER ===== */
.header {
    background: var(--darkest);
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: 'Jockey One', sans-serif;
    font-size: 22px;
    color: var(--white);
    line-height: 1.1;
}

.logo-subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #dbdbdb;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Header info items */
.header-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-info-icon {
    width: 22px;
    height: 26px;
    flex-shrink: 0;
}

.header-info-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    fill: var(--accent);
}

.header-info-text {
    display: flex;
    flex-direction: column;
}

.header-info-title {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.header-info-subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #dbdbdb;
    line-height: 1.2;
}

/* Telefon - zvýrazněný */
.header-phone .header-info-title {
    color: var(--accent);
    font-size: 16px;
}

/* Hamburger (Hidden on desktop) */
.hamburger,
.mobile-menu {
    display: none;
}

/* Header Mobile Responsive */
@media (max-width: 1024px) {
    .header-info {
        display: none;
    }

    .hamburger {
        display: block;
        width: 30px;
        height: 24px;
        position: relative;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: var(--white);
        position: absolute;
        left: 0;
        transition: all 0.3s ease;
        border-radius: 3px;
    }

    .hamburger span:nth-child(1) {
        top: 0;
    }

    .hamburger span:nth-child(2) {
        top: 10px;
    }

    .hamburger span:nth-child(3) {
        top: 20px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg);
        top: 10px;
        background-color: var(--accent);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg);
        top: 10px;
        background-color: var(--accent);
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--darkest, #131211);
        z-index: 1000;
        padding-top: 80px;
        flex-direction: column;
        display: none;
        /* Toggled via JS */
    }

    .mobile-menu-inner {
        padding: 2rem 2rem 5rem 2rem;
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: space-between;
        overflow-y: auto;
    }

    .mobile-nav {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .mobile-link {
        font-family: 'Jockey One', sans-serif;
        font-size: 2rem;
        color: var(--white);
        text-transform: uppercase;
        text-decoration: none;
        transition: color 0.2s;
    }

    .mobile-link:hover {
        color: var(--accent);
    }

    .mobile-social {
        display: flex;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .mobile-social a svg {
        width: 32px;
        height: 32px;
        fill: var(--white);
        transition: fill 0.2s;
    }

    .mobile-social a:hover svg {
        fill: var(--accent);
    }
}

/* === Footer === */
.footer-section {
    background: var(--darkest, #131211);
    background-image: url('/public/images/footer-bg.webp');
    background-size: auto 520px;
    background-position: left;
    background-repeat: no-repeat;
    border-top: 5px solid var(--accent, #dbe266);
    padding: 80px 0 0;
}

.footer-contact-area {
    padding-bottom: 40px;
}

.footer-contact-area a {
    color: var(--white, #ececec);
}

.footer-phone,
.footer-email {
    display: flex;
    align-items: center;
    width: fit-content;
    gap: 15px;
    margin-bottom: 15px;
    transition: opacity 0.2s;
}

.footer-phone svg,
.footer-email svg {
    width: 28px;
    height: 28px;
    fill: var(--accent, #dbe266);
}

.footer-phone:hover,
.footer-email:hover {
    color: var(--accent, #dbe266);
}

.footer-phone span {
    font-family: 'Jockey One', sans-serif;
    font-size: 36px;
}

.footer-email span {
    font-family: 'Jockey One', sans-serif;
    font-size: 32px;
}

.footer-owner {
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--white, #ececec);
    margin-top: 10px;
    padding-left: 43px;
}

/* Footer bottom */
.footer-bottom {
    padding: 30px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 40px;
}

.footer-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    max-width: 50%;
}

.footer-left a {
    color: var(--white, #ececec);
    text-decoration: none;
}

.footer-logo {
    flex-shrink: 0;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-copyright {
    font-family: 'Nunito', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
}

.footer-right {
    text-align: right;
}

.footer-social-label {
    font-family: 'Jockey One', sans-serif;
    font-size: 24px;
    color: var(--white, #ececec);
    margin-bottom: 15px;
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.footer-social svg {
    width: 36px;
    height: 36px;
    fill: var(--white, #ececec);
}

.footer-social a:hover svg {
    fill: var(--accent, #dbe266);
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: flex-end;
}

.footer-links a {
    font-family: 'Nunito', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #666;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent, #dbe266);
}

/* === Veřejný detail kurzu – seznam termínů === */
.term-list-public {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.term-row-public {
    position: relative;
    background: var(--white, #ececec);
    border: 2px solid var(--black, #131211);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

.term-row-public:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.1);
}

.term-row-public--full {
    opacity: 0.92;
}

.term-row-public__ribbon {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    background: #dc2626;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.35rem 0.65rem;
}

.term-row-public__grid {
    display: grid;
    gap: 1rem 1.25rem;
    align-items: center;
    padding: 1rem 1rem 1.1rem;
    min-width: 0;
}

@media (min-width: 768px) {
    .term-row-public__grid {
        grid-template-columns: auto minmax(0, 1fr) auto;
        padding: 1.15rem 1.25rem 1.2rem;
        gap: 1.25rem 1.5rem;
    }

    .term-row-public__main {
        text-align: left;
    }

    .term-row-public__action {
        justify-self: end;
    }
}

@media (max-width: 767px) {
    .term-row-public__grid {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1.1rem 1rem 1.15rem;
    }

    .term-row-public__badge {
        order: 0;
        justify-self: center;
    }

    .term-row-public__main {
        order: 1;
    }

    .term-row-public__action {
        order: 2;
        width: 100%;
        max-width: 20rem;
        margin-left: auto;
        margin-right: auto;
    }
}

.term-row-public__badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 4.5rem;
    min-height: 4.5rem;
    padding: 0.35rem 0.25rem;
    background: var(--brand-yellow, #dbe266);
    border: 2px solid var(--black, #131211);
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.12);
    font-family: 'Jockey One', sans-serif;
    line-height: 1;
}

.term-row-public__badge-month {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
    color: var(--black, #131211);
}

.term-row-public__badge-day {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--black, #131211);
}

.term-row-public__main {
    min-width: 0;
}

.term-row-public__title {
    font-family: 'Jockey One', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--black, #131211);
    margin: 0 0 0.5rem;
    line-height: 1.35;
    word-break: break-word;
}

@media (min-width: 768px) {
    .term-row-public__title {
        font-size: 1.05rem;
        margin-bottom: 0.45rem;
    }
}

.term-row-public__meta {
    margin: 0;
}

.term-row-public__pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: 'Nunito', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--gray-700, #374151);
    background: var(--gray-50, #f5f5f5);
    border: 1px solid var(--gray-200, #e0e0e0);
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
}

.term-row-public__action {
    display: flex;
    align-items: center;
    justify-content: center;
}

.term-row-public__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: 2.75rem;
    padding: 0.65rem 1.35rem;
    font-size: 0.8125rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
    width: 100%;
}

@media (min-width: 768px) {
    .term-row-public__btn {
        width: auto;
        min-width: 10.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

.term-row-public__btn--disabled {
    width: 100%;
    background: var(--gray-100, #f5f5f5);
    color: var(--gray-400, #9ca3af);
    border: 2px solid var(--gray-200, #e0e0e0);
    cursor: not-allowed;
}

@media (min-width: 768px) {
    .term-row-public__btn--disabled {
        width: auto;
        min-width: 10.5rem;
    }
}