/* skims-rebuild/css/style.css */

:root {
    --color-dark: #000000;
    --color-light: #ffffff;
    --color-onyx: #2d2a26;
    --color-sienna: #986b58;
    --color-tertiary: #787572;
    --color-gray-dark: #e8e5df;
    --color-gray-lighter: #f5f5f5;

    --font-primary: "Inter", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    --font-display: "Tstar Pro Headline", "Impact", "Arial Narrow", sans-serif;

    --header-height: 64px;
}

/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    margin: 0;
}

body {
    font-family: var(--font-primary);
    color: var(--color-onyx);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

ul {
    list-style: none;
}

button {
    font: inherit;
}

/* Utilities - Commented out to use Tailwind
/* 
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-1 { flex: 1; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }

.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-10 { gap: 2.5rem; }

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }

.w-full { width: 100%; }
.h-full { height: 100%; }
.h-auto { height: auto; }
.max-w-screen-xl { max-width: 1280px; margin-left: auto; margin-right: auto; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

.m-0 { margin: 0; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }
.my-8 { margin-top: 2rem; margin-bottom: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mt-4 { margin-top: 1rem; }

.p-0 { padding: 0; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.uppercase { text-transform: uppercase; }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
*/

/* Colors - Commented out as we defined them in Tailwind config, but keeping variables for reference just in case */
/*
.bg-white { background-color: var(--color-light); }
.bg-onyx { background-color: var(--color-onyx); }
.bg-light { background-color: var(--color-light); }
.text-white { color: var(--color-light); }
.text-primary { color: var(--color-onyx); }
.text-sienna { color: var(--color-sienna); }

.border-b { border-bottom: 1px solid var(--color-gray-dark); }
*/

/* Typography */
.heading-1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.heading-2 {
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.heading-3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-transform: uppercase;
}

.subheading-2 {
    font-family: var(--font-display);
    font-size: 0.875rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.body-3 {
    font-size: 0.875rem;
}

/* Specific Components */
.header-top {
    min-height: 3rem;
    /* md:h-12 */
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 40;
    display: none;
}

.mobile-menu-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    z-index: 50;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    padding: 20px;
}

.mobile-menu-drawer.open {
    transform: translateX(0);
}

.mobile-menu-overlay.open {
    display: block;
}

.close-menu-btn {
    font-size: 1.5rem;
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    cursor: pointer;
}

.object-cover {
    object-fit: cover;
}

.object-contain {
    object-fit: contain;
}

/* Media Queries for Rebuild */

@media (min-width: 768px) {
    .md\:block {
        display: block;
    }

    .md\:hidden {
        display: none;
    }

    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .md\:flex-row {
        flex-direction: row;
    }

    .md\:gap-6 {
        gap: 1.5rem;
    }

    .md\:p-12 {
        padding: 3rem;
    }

    .md\:max-w-2\/3 {
        max-width: 66.666667%;
    }
}

@media (min-width: 1024px) {
    .lg\:flex {
        display: flex;
    }

    .lg\:hidden {
        display: none;
    }

    .lg\:max-w-1\/2 {
        max-width: 50%;
    }
}