/* Custom styles */
.transition-shadow {
    transition: box-shadow 0.3s ease-in-out;
}

/* Ensure images maintain aspect ratio */
.object-cover {
    object-fit: cover;
}

/* Add a subtle hover effect to cards */
.hover\:shadow-lg:hover {
    transform: translateY(-2px);
    transition: transform 0.2s ease-in-out;
}

body, html {
    background: #18181b;
    color: #fff;
    min-height: 100vh;
}

.card-dark {
    background: #27272a;
    border: 1px solid #2c2c2c;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.44);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.3s, border-color 0.3s, transform 0.2s;
}
.card-dark:hover {
    /* No transform or box-shadow change */
}

/* Add specific hover effect for lesson page cards */

.card-dark-row {
    flex-direction: row !important;
    align-items: stretch !important;
}

.card-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: #222;
}

.card-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
    margin: 0.5rem 0 1rem 0;
}

.header-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin: 2rem 0 2rem 0;
    letter-spacing: 0.02em;
}

.grid-sports {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 400px;
    margin: 0 auto;
}
@media (min-width: 640px) {
    .grid-sports {
        grid-template-columns: 1fr 1fr;
        max-width: 600px;
    }
}

.login-btn {
    display: block;
    width: 100%;
    background: #27272a;
    color: #fff;
    font-weight: 700;
    border-radius: 0.75rem;
    padding: 0.75rem 0;
    text-align: center;
    margin: 2rem auto 0 auto;
    max-width: 400px;
    transition: background 0.2s;
}
.login-btn:hover {
    background: #3f3f46;
}

/* Navbar and Cart Styles */
.right-nav {
    display: none; /* Hide by default on mobile */
}

.right-flex-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-button {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: color 0.2s ease-in-out;
}

.cart-button:hover {
    color: #60a5fa;
}

/* Ensure navbar row has proper spacing */
.flex.justify-between.items-center {
    padding: 1rem;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

/* Desktop styles */
@media (min-width: 768px) {
    .right-nav {
        display: flex; /* Show on desktop */
        align-items: center;
        gap: 1rem;
    }

    .right-flex-nav {
        display: none; /* Hide on desktop */
    }
}

/* --- Custom Quill/Tailwind prose list fixes --- */
.prose ul, .prose ol {
  list-style-position: inside !important;
  margin-left: 1.5em !important;
}
.prose ul {
  list-style-type: disc !important;
}
.prose ol {
  list-style-type: decimal !important;
}
.prose li {
  margin-bottom: 0.25em !important;
}
/* --- End custom list fixes --- */

.card-outline {
    border: 1px solid #2c2c2c;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.44);
    border-radius: 12px;
    background: inherit;
} 