/* ============================================================
   style.css — GFLAI LED Bracelets for Wedding Landing Page
   Static Tailwind CSS (extracted) + Custom Styles (merged)
   ============================================================ */

/* ─── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ─── Base / Body ────────────────────────────────────────── */
body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #0a0a0d;
    color: #f8fafc;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* ─── Custom Component: Ambient Glow Accents ─────────────── */
.ambient-glow-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    top: -5%;
    right: -5%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.06) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
    pointer-events: none;
}
.ambient-glow-2 {
    position: absolute;
    width: 800px;
    height: 800px;
    top: 35%;
    left: -15%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.04) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

/* ─── Custom Component: Typography System ───────────────── */
p { font-size: 1.1rem !important; line-height: 1.85 !important; color: #94a3b8; }
.text-sm-custom { font-size: 1.05rem !important; line-height: 1.75 !important; }

/* ─── Custom Component: Borderless Scenography Row ─────── */
.borderless-scenography-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 7rem 0;
    transition: all 0.4s ease;
}
.borderless-scenography-row:hover {
    border-bottom-color: #a855f7;
}

/* ─── Custom Component: Typography Gradient ─────────────── */
.typography-gradient {
    background: linear-gradient(180deg, #ffffff 40%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─── Custom Component: Image Hover Block ───────────────── */
.img-hover-block {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: #111115;
    transition: border-color 0.4s ease;
}
.img-hover-block:hover {
    border-color: rgba(168, 85, 247, 0.3);
}
.img-hover-block img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.img-hover-block:hover img {
    transform: scale(1.03);
}

/* ─── Custom Component: HubSpot Form Container ──────────── */
#hubspot-form-container { filter: none !important; opacity: 1 !important; }
#hubspot-form-container .hs-form { display: flex; flex-direction: column; gap: 1.5rem; }
#hubspot-form-container .hs-form label {
    color: #cbd5e1;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
#hubspot-form-container .hs-form input,
#hubspot-form-container .hs-form textarea,
#hubspot-form-container .hs-form select {
    background: #111115 !important;
    border: 1px solid #27272a !important;
    border-radius: 4px;
    padding: 1.1rem 1.25rem;
    color: #fff !important;
    font-size: 1.1rem;
    width: 100% !important;
    outline: none;
    transition: border-color 0.3s ease;
}
#hubspot-form-container .hs-form input:focus,
#hubspot-form-container .hs-form textarea:focus {
    border-color: #a855f7 !important;
}
#hubspot-form-container .hs-form .hs-button {
    background: #a855f7 !important;
    border: none !important;
    border-radius: 4px !important;
    padding: 1.2rem 3rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    font-size: 1.1rem !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-top: 1rem;
}
#hubspot-form-container .hs-form .hs-button:hover {
    background: #9333ea !important;
}

/* ─── Tailwind Utilities — Display ──────────────────────── */
.block   { display: block; }
.flex    { display: flex; }
.grid    { display: grid; }
.hidden  { display: none; }
.inline  { display: inline; }

/* ─── Tailwind Utilities — Position ─────────────────────── */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed    { position: fixed; }

/* ─── Tailwind Utilities — Inset ────────────────────────── */
.top-0   { top: 0; }
.left-0  { left: 0; }
.right-0 { right: 0; }
.bottom-4 { bottom: 1rem; }
.bottom-8 { bottom: 2rem; }
.left-4  { left: 1rem; }
.right-8 { right: 2rem; }

/* ─── Tailwind Utilities — Z-index ──────────────────────── */
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

/* ─── Tailwind Utilities — Overflow ─────────────────────── */
.overflow-hidden   { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }

/* ─── Tailwind Utilities — Flexbox ──────────────────────── */
.flex-wrap       { flex-wrap: wrap; }
.flex-col        { flex-direction: column; }
.items-center    { align-items: center; }
.items-end       { align-items: flex-end; }
.justify-between { justify-content: space-between; }

/* ─── Tailwind Utilities — Grid ─────────────────────────── */
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* ─── Tailwind Utilities — Gap ──────────────────────────── */
.gap-4  { gap: 1rem; }
.gap-6  { gap: 1.5rem; }
.gap-8  { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }

/* ─── Tailwind Utilities — Sizing ───────────────────────── */
.w-auto  { width: auto; }
.w-full  { width: 100%; }
.w-7     { width: 1.75rem; }
.h-7     { height: 1.75rem; }
.h-8     { height: 2rem; }
.h-full  { height: 100%; }

.max-w-xl  { max-width: 36rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-7xl { max-width: 80rem; }

/* ─── Tailwind Utilities — Aspect Ratio ─────────────────── */
.aspect-video    { aspect-ratio: 16 / 9; }
.aspect-square   { aspect-ratio: 1 / 1; }
.aspect-\[4\/5\] { aspect-ratio: 4 / 5; }

/* ─── Tailwind Utilities — Margin ───────────────────────── */
.mx-auto { margin-left: auto; margin-right: auto; }
.mr-2    { margin-right: 0.5rem; }
.mt-3    { margin-top: 0.75rem; }
.mt-4    { margin-top: 1rem; }
.mt-6    { margin-top: 1.5rem; }
.mt-20   { margin-top: 5rem; }
.mb-1    { margin-bottom: 0.25rem; }
.mb-2    { margin-bottom: 0.5rem; }
.mb-3    { margin-bottom: 0.75rem; }
.mb-4    { margin-bottom: 1rem; }
.mb-6    { margin-bottom: 1.5rem; }
.mb-8    { margin-bottom: 2rem; }
.mb-16   { margin-bottom: 4rem; }
.mb-24   { margin-bottom: 6rem; }

/* ─── Tailwind Utilities — Padding ──────────────────────── */
.p-4  { padding: 1rem; }
.p-8  { padding: 2rem; }
.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; }
.py-5 { padding-top: 1.25rem;  padding-bottom: 1.25rem; }
.py-24 { padding-top: 6rem;   padding-bottom: 6rem; }
.py-32 { padding-top: 8rem;   padding-bottom: 8rem; }
.pt-6  { padding-top: 1.5rem; }
.pt-8  { padding-top: 2rem; }
.pt-24 { padding-top: 6rem; }
.pb-10 { padding-bottom: 2.5rem; }
.pb-36 { padding-bottom: 9rem; }

/* ─── Tailwind Utilities — Space ────────────────────────── */
.space-y-3  > * + * { margin-top: 0.75rem; }
.space-y-4  > * + * { margin-top: 1rem; }
.space-y-16 > * + * { margin-top: 4rem; }

/* ─── Tailwind Utilities — Font Size ────────────────────── */
.text-\[9px\]  { font-size: 9px; }
.text-\[10px\] { font-size: 10px; }
.text-\[11px\] { font-size: 11px; }
.text-xs  { font-size: 0.75rem;  line-height: 1rem; }
.text-sm  { font-size: 0.875rem; line-height: 1.25rem; }
.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; }

/* ─── Tailwind Utilities — Font Weight ──────────────────── */
.font-light    { font-weight: 300; }
.font-normal   { font-weight: 400; }
.font-medium   { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold     { font-weight: 700; }

/* ─── Tailwind Utilities — Font Family ──────────────────── */
.font-mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/* ─── Tailwind Utilities — Letter Spacing ───────────────── */
.tracking-tight   { letter-spacing: -0.025em; }
.tracking-wide    { letter-spacing: 0.025em; }
.tracking-wider   { letter-spacing: 0.05em; }
.tracking-widest  { letter-spacing: 0.1em; }
.tracking-\[0\.2em\] { letter-spacing: 0.2em; }
.tracking-\[0\.3em\] { letter-spacing: 0.3em; }
.tracking-\[0\.4em\] { letter-spacing: 0.4em; }
.tracking-\[0\.6em\] { letter-spacing: 0.6em; }

/* ─── Tailwind Utilities — Line Height ──────────────────── */
.leading-relaxed   { line-height: 1.625; }
.leading-\[1\.15\] { line-height: 1.15; }

/* ─── Tailwind Utilities — Text Transform / Align ───────── */
.uppercase   { text-transform: uppercase; }
.text-left   { text-align: left; }
.text-center { text-align: center; }

/* ─── Tailwind Utilities — Text Colors ──────────────────── */
.text-white       { color: #ffffff; }
.text-black       { color: #000000; }
.text-purple-300  { color: #d8b4fe; }
.text-purple-400  { color: #c084fc; }
.text-purple-500  { color: #a855f7; }
.text-zinc-400    { color: #a1a1aa; }
.text-zinc-500    { color: #71717a; }
.text-zinc-600    { color: #52525b; }
.text-zinc-700    { color: #3f3f46; }
.text-slate-300   { color: #cbd5e1; }
.text-slate-400   { color: #94a3b8; }
.text-slate-500   { color: #64748b; }
.text-slate-600   { color: #475569; }
.text-slate-700   { color: #334155; }

/* ─── Tailwind Utilities — Background Colors ────────────── */
.bg-white         { background-color: #ffffff; }
.bg-\[\#0a0a0d\]  { background-color: #0a0a0d; }
.bg-\[\#0f0f13\]  { background-color: #0f0f13; }
.bg-\[\#060608\]  { background-color: #060608; }
.bg-\[\#121216\]  { background-color: #121216; }
.bg-\[\#25D366\]  { background-color: #25D366; }
.bg-\[\#0a0a0d\]\/85 { background-color: rgb(10 10 13 / 0.85); }
.bg-black\/80        { background-color: rgb(0 0 0 / 0.80); }

/* ─── Tailwind Utilities — Borders ──────────────────────── */
.border   { border-width: 1px; border-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-y {
    border-top-width: 1px; border-top-style: solid;
    border-bottom-width: 1px; border-bottom-style: solid;
}
.border-zinc-800 { border-color: #27272a; }
.border-zinc-900 { border-color: #18181b; }

/* ─── Tailwind Utilities — Border Radius ────────────────── */
.rounded-full { border-radius: 9999px; }
.rounded-none { border-radius: 0; }

/* ─── Tailwind Utilities — Shadow ───────────────────────── */
.shadow-lg  {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}
.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

/* ─── Tailwind Utilities — Backdrop Filter ──────────────── */
.backdrop-blur-md {
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

/* ─── Tailwind Utilities — Transition ───────────────────── */
.transition {
    transition-property: color, background-color, border-color,
        text-decoration-color, fill, stroke, opacity, box-shadow,
        transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.duration-300 { transition-duration: 300ms; }

/* ─── Tailwind Utilities — Object Fit ───────────────────── */
.object-cover { object-fit: cover; }

/* ─── Tailwind Utilities — Hover States ─────────────────── */
.hover\:text-purple-400:hover { color: #c084fc; }
.hover\:text-purple-300:hover { color: #d8b4fe; }
.hover\:text-slate-300:hover  { color: #cbd5e1; }
.hover\:bg-zinc-200:hover     { background-color: #e4e4e7; }
.hover\:scale-105:hover       { transform: scale(1.05); }

/* ─── Responsive: sm ≥ 640px ─────────────────────────────── */
@media (min-width: 640px) {
    .sm\:inline { display: inline; }
}

/* ─── Responsive: md ≥ 768px ─────────────────────────────── */
@media (min-width: 768px) {
    .md\:px-16 { padding-left: 4rem; padding-right: 4rem; }
    .md\:h-8   { height: 2rem; }
    .md\:pt-32 { padding-top: 8rem; }
    .md\:pb-48 { padding-bottom: 12rem; }
    .md\:py-44 { padding-top: 11rem; padding-bottom: 11rem; }
    .md\:p-12  { padding: 3rem; }
    .md\:pl-12 { padding-left: 3rem; }
    .md\:pr-12 { padding-right: 3rem; }

    .md\:grid-cols-2  { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }

    .md\:col-span-4 { grid-column: span 4 / span 4; }
    .md\:col-span-5 { grid-column: span 5 / span 5; }
    .md\:col-span-7 { grid-column: span 7 / span 7; }
    .md\:col-span-8 { grid-column: span 8 / span 8; }

    .md\:order-1 { order: 1; }
    .md\:order-2 { order: 2; }

    .md\:text-right { text-align: right; }
    .md\:items-end  { align-items: flex-end; }

    .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
    .md\:text-5xl { font-size: 3rem;    line-height: 1; }
    .md\:text-xl  { font-size: 1.25rem; line-height: 1.75rem; }
}
