/* ==========================================================================
   Module: Pressvik Core Utilities - FINAL PURIFIED VERSION
   Project: Bunkhouse Skydive Oslo
   ========================================================================== */

/* 1. STRICT BASE RESET */
*, ::before, ::after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
}

html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

a {
    color: inherit;
    text-decoration: inherit;
}

/* 2. LAYOUT AND POSITIONING */
.absolute { position: absolute; }
.fixed { position: fixed; }
.relative { position: relative; }
.sticky { position: -webkit-sticky; position: sticky; }
.top-0 { top: 0; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-\[1\.5rem\] { top: 1.5rem; }
.bottom-\[1\.5rem\] { bottom: 1.5rem; }
.right-\[1\.5rem\] { right: 1.5rem; }

.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.inline-block { display: inline-block; }

.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-row-reverse { flex-direction: row-reverse; }
.flex-wrap { flex-wrap: wrap; }

.items-baseline { align-items: baseline; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.items-start { align-items: flex-start; }

.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }

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

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

.z-0 { z-index: 0; }
.z-\[1\] { z-index: 1; }
.z-\[2\] { z-index: 2; }
.z-\[99999\] { z-index: 99999; }

/* 3. DIMENSIONS AND SPACING */
.w-\[100\%\] { width: 100%; }
.w-auto { width: auto; }
.w-\[1rem\] { width: 1rem; }
.w-\[2px\] { width: 2px; }
.w-\[2\.5rem\] { width: 2.5rem; }
.w-\[3rem\] { width: 3rem; }
.w-\[calc\(100\%-4rem\)\] { width: calc(100% - 4rem); }
.w-\[0\.5rem\] { width: 0.5rem; }

.min-h-\[70vh\] { min-height: 70vh; }
.min-h-\[100vh\] { min-height: 100vh; }
.max-h-\[90vh\] { max-height: 90vh; }

.h-\[1px\] { height: 1px; }
.h-\[0\.5rem\] { height: 0.5rem; }
.h-\[100\%\] { height: 100%; }
.h-\[1rem\] { height: 1rem; }
.h-\[15rem\] { height: 15rem; }
.h-\[3rem\] { height: 3rem; }

.max-w-\[35rem\] { max-width: 35rem; }
.max-w-\[40rem\] { max-width: 40rem; }
.max-w-\[50rem\] { max-width: 50rem; }
.max-w-\[55rem\] { max-width: 55rem; }
.max-w-\[75rem\] { max-width: 75rem; }
.max-w-\[30rem\] { max-width: 30rem; }
.max-w-\[90vw\] { max-width: 90vw; }

.basis-\[15rem\] { flex-basis: 15rem; }

/* Paddings */
.p-0 { padding: 0; }
.p-\[1\.5rem\] { padding: 1.5rem; }
.p-\[2\.5rem\] { padding: 2.5rem; }
.p-\[2rem\] { padding: 2rem; }
.p-\[4rem\] { padding: 4rem; }
.px-\[1\.5rem\] { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-\[2rem\] { padding-left: 2rem; padding-right: 2rem; }
.py-\[0\.75rem\] { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-\[1rem\] { padding-top: 1rem; padding-bottom: 1rem; }
.py-\[1\.25rem\] { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-\[4rem\] { padding-top: 4rem; padding-bottom: 4rem; }
.pt-\[1\.5rem\] { padding-top: 1.5rem; }
.pt-\[4rem\] { padding-top: 4rem; }
.pb-\[2rem\] { padding-bottom: 2rem; }

/* Margins */
.m-0 { margin: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mx-\[0\.5rem\] { margin-left: 0.5rem; margin-right: 0.5rem; }
.mx-\[1rem\] { margin-left: 1rem; margin-right: 1rem; }
.mt-\[0\.25rem\] { margin-top: 0.25rem; }
.mt-\[0\.4rem\] { margin-top: 0.4rem; }
.mt-\[0\.5rem\] { margin-top: 0.5rem; }
.mt-\[1\.5rem\] { margin-top: 1.5rem; }
.mt-\[4rem\] { margin-top: 4rem; }
.mt-\[-2rem\] { margin-top: -2rem; }
.mb-\[0\.35rem\] { margin-bottom: 0.35rem; }
.mb-\[0\.5rem\] { margin-bottom: 0.5rem; }
.mb-\[0\.75rem\] { margin-bottom: 0.75rem; }
.mb-\[1rem\] { margin-bottom: 1rem; }
.mb-\[1\.5rem\] { margin-bottom: 1.5rem; }
.mb-\[2rem\] { margin-bottom: 2rem; }
.mb-\[2\.5rem\] { margin-bottom: 2.5rem; }
.mb-\[3rem\] { margin-bottom: 3rem; }
.last\:mb-0:last-child { margin-bottom: 0; }

.gap-\[0\.5rem\] { gap: 0.5rem; }
.gap-\[1rem\] { gap: 1rem; }
.gap-\[1\.5rem\] { gap: 1.5rem; }
.gap-\[2rem\] { gap: 2rem; }
.gap-\[3rem\] { gap: 3rem; }
.gap-\[4rem\] { gap: 4rem; }
.gap-\[6rem\] { gap: 6rem; }

/* 4. TYPOGRAPHY */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-\[0\.875rem\] { font-size: 0.875rem; }
.text-\[1rem\] { font-size: 1rem; }
.text-\[1\.125rem\] { font-size: 1.125rem; }
.text-\[1\.25rem\] { font-size: 1.25rem; }
.text-\[1\.5rem\] { font-size: 1.5rem; }
.text-\[2rem\] { font-size: 2rem; }
.text-\[2\.5rem\] { font-size: 2.5rem; }
.text-\[3rem\] { font-size: 3rem; }
.text-\[4rem\] { font-size: 4rem; }
.text-\[6rem\] { font-size: 6rem; }

.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
.leading-none { line-height: 1; }
.leading-normal { line-height: 1.5; }
.leading-tight { line-height: 1.25; }
.whitespace-nowrap { white-space: nowrap; }
.tracking-tight { letter-spacing: -0.025em; }
.no-underline { text-decoration-line: none; }

/* 5. COLORS */
.bg-\[\#111111\] { background-color: #111111; }
.bg-\[\#222222\] { background-color: #222222; }
.bg-\[\#e60000\] { background-color: #e60000; }
.bg-\[\#f31ca1\] { background-color: #f31ca1; }
.bg-\[\#f9f9f9\] { background-color: #f9f9f9; }
.bg-\[\#fff0f9\] { background-color: #fff0f9; }
.bg-white { background-color: #ffffff; }

.text-\[\#111111\] { color: #111111; }
.text-\[\#4a4a4a\] { color: #4a4a4a; }
.text-\[\#666666\] { color: #666666; }
.text-\[\#cccccc\] { color: #cccccc; }
.text-\[\#e5e5e5\] { color: #e5e5e5; }
.text-\[\#f31ca1\] { color: #f31ca1; }
.text-white { color: #ffffff; }

.bg-opacity-0 { background-color: rgba(17, 17, 17, 0); }
.bg-opacity-\[0\.2\] { background-color: rgba(17, 17, 17, 0.2); }
.bg-opacity-\[0\.6\] { background-color: rgba(17, 17, 17, 0.6); }
.bg-opacity-\[0\.95\] { background-color: rgba(17, 17, 17, 0.95); }

/* 6. EFFECTS & BORDERS */
.border { border-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-b-\[2px\] { border-bottom-width: 2px; }
.border-l { border-left-width: 1px; }
.border-r { border-right-width: 1px; }
.border-t { border-top-width: 1px; }
.border-dotted { border-style: dotted; }
.border-\[\#cccccc\] { border-color: #cccccc; }
.border-\[\#e5e5e5\] { border-color: #e5e5e5; }

.rounded-\[0\.25rem\] { border-radius: 0.25rem; }
.rounded-\[0\.375rem\] { border-radius: 0.375rem; }
.rounded-\[0\.5rem\] { border-radius: 0.5rem; }
.rounded-\[1rem\] { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

.object-contain { object-fit: contain; }
.object-cover { object-fit: cover; }
.cursor-pointer { cursor: pointer; }
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }

/* 7. TRANSITIONS & HOVER */
.duration-300 { transition-duration: 300ms; }
.transition-all { transition-property: all; }
.transition-colors { transition-property: color, background-color, border-color; }
.transition-transform { transition-property: transform; }
.hover\:scale-\[1\.05\]:hover { transform: scale(1.05); }
.hover\:scale-\[1\.1\]:hover { transform: scale(1.1); }
.hover\:text-\[\#f31ca1\]:hover { color: #f31ca1; }
.hover\:bg-\[\#f9f9f9\]:hover { background-color: #f9f9f9; }
.hover\:border-\[\#cccccc\]:hover { border-color: #cccccc; }

.group:hover .group-hover\:bg-opacity-\[0\.2\] { background-color: rgba(17, 17, 17, 0.2); }
.group:hover .group-hover\:scale-\[1\.02\] { transform: scale(1.02); }

.focus\:outline-none:focus { outline: 2px solid transparent; }
.focus\:ring-\[2px\]:focus { box-shadow: 0 0 0 2px var(--tw-ring-color, #f31ca1); }
.focus\:ring-offset-\[2px\]:focus { box-shadow: 0 0 0 2px #fff, 0 0 0 4px #f31ca1; }

/* 8. MEDIA QUERIES (Mobile-First) */
@media (min-width: 768px) {
    .md\:absolute { position: absolute; }
    .md\:fixed { position: fixed; }
    .md\:sticky { position: -webkit-sticky; position: sticky; }
    .md\:top-0 { top: 0; }
    .md\:left-0 { left: 0; }
    .md\:z-\[99999\] { z-index: 99999; }
    .md\:block { display: block; }
    .md\:flex { display: flex; }
    .md\:hidden { display: none; }
    .md\:flex-row { flex-direction: row; }
    .md\:items-center { align-items: center; }
    .md\:items-start { align-items: flex-start; }
    .md\:justify-between { justify-content: space-between; }
    .md\:justify-center { justify-content: center; }
    .md\:justify-start { justify-content: flex-start; }
    .md\:justify-end { justify-content: flex-end; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .md\:order-first { order: -9999; }
    .md\:order-last { order: 9999; }
    .md\:w-\[20rem\] { width: 20rem; }
    .md\:max-h-\[30rem\] { max-height: 30rem; }
    .md\:p-\[4rem\] { padding: 4rem; }
    .md\:text-left { text-align: left; }
    .md\:text-\[6rem\] { font-size: 6rem; }
    .md\:text-\[1\.5rem\] { font-size: 1.5rem; }
    .md\:gap-\[6rem\] { gap: 6rem; }
}

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