/* Euromaster Group — static stylesheet (replaces Tailwind CDN/JIT) */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
    font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }
input, textarea { font: inherit; color: inherit; background: none; }
ul { list-style: none; }

/* ---------- Layout ---------- */
.flex { display: flex; }
.grid { display: grid; }
.block { display: block; }
.hidden { display: none; }
.flex-1 { flex: 1 1 0%; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-shrink-0 { flex-shrink: 0; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.group { position: relative; }
.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.z-50 { z-index: 50; }
.overflow-hidden { overflow: hidden; }
.cursor-pointer { cursor: pointer; }

/* ---------- Sizing ---------- */
.container { width: 100%; max-width: 1280px; margin-inline: auto; }
.w-3 { width: .75rem; } .w-4 { width: 1rem; } .w-5 { width: 1.25rem; } .w-6 { width: 1.5rem; }
.w-8 { width: 2rem; } .w-10 { width: 2.5rem; } .w-12 { width: 3rem; } .w-16 { width: 4rem; }
.w-20 { width: 5rem; } .w-full { width: 100%; }
.h-3 { height: .75rem; } .h-4 { height: 1rem; } .h-5 { height: 1.25rem; } .h-6 { height: 1.5rem; }
.h-8 { height: 2rem; } .h-10 { height: 2.5rem; } .h-12 { height: 3rem; } .h-16 { height: 4rem; }
.h-20 { height: 5rem; } .h-40 { height: 10rem; } .h-full { height: 100%; } .h-screen { height: 100vh; }
.min-h-screen { min-height: 100vh; }
.min-h-\[80px\] { min-height: 80px; }
.min-h-\[100px\] { min-height: 100px; }
.max-w-xs { max-width: 20rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-6xl { max-width: 72rem; }
.aspect-\[4\/3\] { aspect-ratio: 4 / 3; }

/* ---------- Spacing ---------- */
.p-0 { padding: 0; } .p-1\.5 { padding: .375rem; } .p-2 { padding: .5rem; }
.p-4 { padding: 1rem; } .p-6 { padding: 1.5rem; }
.px-3 { padding-inline: .75rem; } .px-4 { padding-inline: 1rem; } .px-8 { padding-inline: 2rem; }
.py-2 { padding-block: .5rem; } .py-3 { padding-block: .75rem; } .py-4 { padding-block: 1rem; }
.py-8 { padding-block: 2rem; } .py-12 { padding-block: 3rem; }
.pb-4 { padding-bottom: 1rem; } .pt-0 { padding-top: 0; } .pt-6 { padding-top: 1.5rem; }
.mt-1 { margin-top: .25rem; } .mt-6 { margin-top: 1.5rem; } .mt-8 { margin-top: 2rem; }
.mb-1 { margin-bottom: .25rem; } .mb-2 { margin-bottom: .5rem; } .mb-3 { margin-bottom: .75rem; }
.mb-4 { margin-bottom: 1rem; } .mb-6 { margin-bottom: 1.5rem; } .mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.ml-2 { margin-left: .5rem; } .ml-auto { margin-left: auto; }
.mx-auto { margin-inline: auto; }
.gap-1 { gap: .25rem; } .gap-2 { gap: .5rem; } .gap-3 { gap: .75rem; } .gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; } .gap-8 { gap: 2rem; }
.space-y-2 > * + * { margin-top: .5rem; }
.space-y-3 > * + * { margin-top: .75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

/* ---------- Borders / radius ---------- */
.border { border-width: 1px; border-style: solid; border-color: currentColor; }
.border-2 { border-width: 2px; border-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-l { border-left-width: 1px; border-left-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-yellow-500 { border-color: #eab308; }
.border-yellow-500\/20 { border-color: rgba(234,179,8,.2); }
.border-yellow-500\/30 { border-color: rgba(234,179,8,.3); }
.rounded { border-radius: .25rem; }
.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: .5rem; }
.rounded-md { border-radius: .375rem; }

/* ---------- Colors ---------- */
.bg-black { background-color: #000; }
.bg-black\/60 { background-color: rgba(0,0,0,.6); }
.bg-black\/95 { background-color: rgba(0,0,0,.95); }
.bg-gray-900 { background-color: #111827; }
.bg-yellow-500 { background-color: #eab308; }
.bg-transparent { background-color: transparent; }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--grad-from), var(--grad-via), var(--grad-to)); }
.from-black\/80 { --grad-from: rgba(0,0,0,.8); }
.via-black\/40 { --grad-via: rgba(0,0,0,.4); }
.to-black\/80 { --grad-to: rgba(0,0,0,.8); }
.text-black { color: #000; }
.text-white { color: #fff; }
.text-yellow-500 { color: #eab308; }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-300 { color: #d1d5db; } /* fallback for a missing color-prefix class in the original markup */
.fill-yellow-500 { fill: #eab308; }
.hover\:bg-yellow-400:hover { background-color: #facc15; }
.hover\:bg-yellow-500:hover { background-color: #eab308; }
.hover\:border-yellow-500:hover { border-color: #eab308; }
.hover\:text-black:hover { color: #000; }
.hover\:text-yellow-500:hover { color: #eab308; }

/* ---------- Typography ---------- */
.text-xs { font-size: .75rem; } .text-sm { font-size: .875rem; } .text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; } .text-xl { font-size: 1.25rem; } .text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; } .text-4xl { font-size: 2.25rem; }
.font-medium { font-weight: 500; } .font-bold { font-weight: 700; } .font-black { font-weight: 900; }
.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }
.tracking-wide { letter-spacing: .025em; }
.leading-tight { line-height: 1.25; }
.text-center { text-align: center; }
.break-all { word-break: break-all; }

/* ---------- Effects / transitions ---------- */
.opacity-0 { opacity: 0; }
.opacity-40 { opacity: .4; }
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.object-cover { object-fit: cover; }
.transition-all { transition-property: all; transition-duration: .15s; }
.transition-colors { transition-property: color, background-color, border-color; transition-duration: .15s; }
.transition-opacity { transition-property: opacity; transition-duration: .15s; }
.transition-transform { transition-property: transform; transition-duration: .15s; }
.duration-300 { transition-duration: .3s; }
.duration-500 { transition-duration: .5s; }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }

/* ---------- Form-element states ---------- */
input::placeholder, textarea::placeholder { color: #6b7280; }
input:disabled, textarea:disabled { cursor: not-allowed; opacity: .5; }
input:focus-visible, textarea:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px #eab308;
}

/* ================= Responsive ================= */
@media (min-width: 640px) {
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sm\:w-auto { width: auto; }
}

@media (min-width: 768px) {
    .md\:flex-row { flex-direction: row; }
    .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\:col-span-2 { grid-column: span 2 / span 2; }
    .md\:px-6 { padding-inline: 1.5rem; }
    .md\:text-xl { font-size: 1.25rem; }
    .md\:text-5xl { font-size: 3rem; }
    .md\:text-6xl { font-size: 3.75rem; }
}

@media (min-width: 1024px) {
    .lg\:flex { display: flex; }
    .lg\:hidden { display: none; }
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:col-span-1 { grid-column: span 1 / span 1; }
    .lg\:w-5 { width: 1.25rem; } .lg\:w-8 { width: 2rem; } .lg\:w-10 { width: 2.5rem; }
    .lg\:w-12 { width: 3rem; } .lg\:w-16 { width: 4rem; } .lg\:w-20 { width: 5rem; } .lg\:w-24 { width: 6rem; }
    .lg\:h-5 { height: 1.25rem; } .lg\:h-8 { height: 2rem; } .lg\:h-10 { height: 2.5rem; }
    .lg\:h-12 { height: 3rem; } .lg\:h-16 { height: 4rem; } .lg\:h-20 { height: 5rem; } .lg\:h-24 { height: 6rem; }
    .lg\:p-2 { padding: .5rem; }
    .lg\:px-6 { padding-inline: 1.5rem; } .lg\:px-12 { padding-inline: 3rem; }
    .lg\:py-6 { padding-block: 1.5rem; } .lg\:py-12 { padding-block: 3rem; } .lg\:py-20 { padding-block: 5rem; }
    .lg\:pt-8 { padding-top: 2rem; }
    .lg\:mb-2 { margin-bottom: .5rem; } .lg\:mb-4 { margin-bottom: 1rem; } .lg\:mb-6 { margin-bottom: 1.5rem; }
    .lg\:mb-8 { margin-bottom: 2rem; } .lg\:mb-12 { margin-bottom: 3rem; } .lg\:mb-16 { margin-bottom: 4rem; }
    .lg\:mt-8 { margin-top: 2rem; } .lg\:mt-12 { margin-top: 3rem; }
    .lg\:ml-3 { margin-left: .75rem; }
    .lg\:gap-6 { gap: 1.5rem; } .lg\:gap-8 { gap: 2rem; } .lg\:gap-12 { gap: 3rem; }
    .lg\:space-y-6 > * + * { margin-top: 1.5rem; }
    .lg\:space-y-8 > * + * { margin-top: 2rem; }
    .lg\:text-sm { font-size: .875rem; } .lg\:text-base { font-size: 1rem; } .lg\:text-lg { font-size: 1.125rem; }
    .lg\:text-xl { font-size: 1.25rem; } .lg\:text-2xl { font-size: 1.5rem; } .lg\:text-3xl { font-size: 1.875rem; }
    .lg\:text-6xl { font-size: 3.75rem; } .lg\:text-8xl { font-size: 6rem; }
    .lg\:min-h-\[120px\] { min-height: 120px; }
}
