/* my-custom-styles.css */
/* Minimal replacement for Tailwind utility classes used in index.php */

:root {
    --bookea-primary: #9DE5C2;
    --bookea-blue: #2563EB;
    --bookea-black: #000000;
    --bookea-green: #10B981;
    --gray-200: #E5E7EB;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --bg-light: #F8F9FA;
    --card-bg: #FFFFFF;
    --radius: 0.5rem;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #1f2937;
    background-color: #ffffff;
    margin: 0;
    line-height: inherit;
    overflow-x: hidden;
}

/* Layout Utilities */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.overflow-hidden {
    overflow: hidden;
}

/* Spacing Container & Sections */
.max-w-screen-xl {
    max-width: 1280px;
}

.max-w-2xl {
    max-width: 42rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.container-padding {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Grid Layouts */
.grid {
    display: grid;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

@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\:scale-105 {
        transform: scale(1.05);
    }

    .md\:p-12 {
        padding: 3rem;
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Flexbox Layouts */
.flex {
    display: flex;
}

.inline-flex {
    display: inline-flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.items-baseline {
    align-items: baseline;
}

.items-start {
    align-items: flex-start;
}

.justify-center {
    justify-content: center;
}

.space-y-1\.5> :not([hidden])~ :not([hidden]) {
    margin-top: 0.375rem;
}

.space-y-4> :not([hidden])~ :not([hidden]) {
    margin-top: 1rem;
}

.space-x-3> :not([hidden])~ :not([hidden]) {
    margin-left: 0.75rem;
}

.flex-1 {
    flex: 1 1 0%;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

/* Typography */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.font-medium {
    font-weight: 500;
}

.font-normal {
    font-weight: 400;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.text-5xl {
    font-size: 3rem;
    line-height: 1;
}

@media (min-width: 640px) {
    .sm\:text-base {
        font-size: 1rem;
    }

    .sm\:text-xl {
        font-size: 1.25rem;
    }

    .sm\:text-2xl {
        font-size: 1.5rem;
    }

    .sm\:text-3xl {
        font-size: 1.875rem;
    }

    .sm\:text-5xl {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .md\:text-4xl {
        font-size: 2.25rem;
    }
}

/* Colors & Backgrounds */
.text-white {
    color: #ffffff;
}

.text-gray-500 {
    color: var(--gray-500);
}

.text-gray-600 {
    color: var(--gray-600);
}

.text-bookea-black {
    color: var(--bookea-black);
}

.text-bookea-black\/80 {
    color: rgba(0, 0, 0, 0.8);
}

.text-bookea-blue {
    color: var(--bookea-blue);
}

.text-bookea-green {
    color: var(--bookea-green);
}

.text-bookea-primary {
    color: var(--bookea-primary);
}

.text-muted-foreground {
    color: var(--gray-500);
}

.bg-white {
    background-color: #ffffff;
}

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

.bg-bookea-blue {
    background-color: var(--bookea-blue);
}

.bg-bookea-black {
    background-color: var(--bookea-black);
}

.bg-bookea-primary {
    background-color: var(--bookea-primary);
}

.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-bookea-light {
    --tw-gradient-from: #D1F2E0;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 242, 224, 0));
}

.to-bookea-primary {
    --tw-gradient-to: var(--bookea-primary);
}

.from-gray-100 {
    --tw-gradient-from: #F3F4F6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0));
}

.to-gray-200 {
    --tw-gradient-to: #E5E7EB;
}

/* Borders & Shadows */
.border {
    border-width: 1px;
    border-style: solid;
    border-color: var(--gray-200);
}

.border-transparent {
    border-color: transparent;
}

.border-black {
    border-color: #000;
}

.border-gray-200 {
    border-color: var(--gray-200);
}

.border-bookea-primary {
    border-color: var(--bookea-primary);
}

.rounded-md {
    border-radius: 0.375rem;
}

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

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-full {
    border-radius: 9999px;
}

.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Spacing Margins & Paddings */
.m-0 {
    margin: 0;
}

.mt-0\.5 {
    margin-top: 0.125rem;
}

.mt-3 {
    margin-top: 0.75rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-20 {
    margin-top: 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;
}

.mb-16 {
    margin-bottom: 4rem;
}

.ml-1 {
    margin-left: 0.25rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .sm\:mb-6 {
        margin-bottom: 1.5rem;
    }

    .sm\:mb-8 {
        margin-bottom: 2rem;
    }

    .sm\:mb-16 {
        margin-bottom: 4rem;
    }

    .sm\:mr-3 {
        margin-right: 0.75rem;
    }
}

.p-1 {
    padding: 0.25rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.pt-0 {
    padding-top: 0;
}

.pb-2 {
    padding-bottom: 0.5rem;
}

.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* Sizing Utilities */
.w-4 {
    width: 1rem;
}

.w-8 {
    width: 2rem;
}

.w-10 {
    width: 2.5rem;
}

.w-16 {
    width: 4rem;
}

.w-full {
    width: 100%;
}

.h-4 {
    height: 1rem;
}

.h-8 {
    height: 2rem;
}

.h-10 {
    height: 2.5rem;
}

.h-11 {
    height: 2.75rem;
}

.h-16 {
    height: 4rem;
}

.h-40 {
    height: 10rem;
}

@media (min-width: 640px) {
    .sm\:w-5 {
        width: 1.25rem;
    }

    .sm\:h-5 {
        height: 1.25rem;
    }
}

/* Positioning & Transforms */
.top-0 {
    top: 0;
}

.left-1\/2 {
    left: 50%;
}

.transform {
    transform: translate(var(--tw-translate-x, 0), var(--tw-translate-y, 0)) rotate(var(--tw-rotate, 0)) skewX(var(--tw-skew-x, 0)) skewY(var(--tw-skew-y, 0)) scaleX(var(--tw-scale-x, 1)) scaleY(var(--tw-scale-y, 1));
}

.-translate-x-1\/2 {
    --tw-translate-x: -50%;
}

.-translate-y-1\/2 {
    --tw-translate-y: -50%;
}

.rotate-3 {
    --tw-rotate: 3deg;
}

.hover\:rotate-1:hover {
    --tw-rotate: 1deg;
}

/* Misc / Interactive Utilities */
.tracking-tight {
    letter-spacing: -0.025em;
}

.leading-relaxed {
    line-height: 1.625;
}

.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, text-decoration-color, fill, stroke;
    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;
}

.duration-200 {
    transition-duration: 200ms;
}

.whitespace-nowrap {
    white-space: nowrap;
}

.ring-offset-background {
    --tw-ring-offset-color: #fff;
}

.focus-visible\:outline-none:focus-visible {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.focus-visible\:ring-2:focus-visible {
    box-shadow: 0 0 0 2px var(--tw-ring-color);
}

.focus-visible\:ring-ring:focus-visible {
    --tw-ring-color: var(--bookea-primary);
}

.focus-visible\:ring-offset-2:focus-visible {
    box-shadow: 0 0 0 2px #fff, 0 0 0 calc(2px + 2px) var(--tw-ring-color);
}

/* Hover States */
.hover\:bg-gray-800:hover {
    background-color: #1f2937;
}

.hover\:bg-bookea-primary:hover {
    background-color: var(--bookea-primary);
}

.hover\:bg-bookea-black:hover {
    background-color: var(--bookea-black);
}

.hover\:text-bookea-black:hover {
    color: var(--bookea-black);
}

.hover\:text-white:hover {
    color: #ffffff;
}

.hover\:border-bookea-primary:hover {
    border-color: var(--bookea-primary);
}