/*
Theme Name: Upshft26 Labs
Theme URI: https://upshft26.com
Author: Upshft26 Labs
Description: Custom product engineering lab theme for Upshft26 Labs
Version: 1.1.0
License: Private
Tags: custom
*/

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background-color: #fff9ee;
    color: #17130f;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ────────── ANIMATIONS ────────── */
@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(28px) scale(.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes subtleFloat {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.float-in {
    animation: floatIn .85s cubic-bezier(.22,.68,0,1.2) both;
}

.float-slow {
    animation: subtleFloat 6s ease-in-out infinite;
}

@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-track {
    display: flex;
    animation: marquee 40s linear infinite;
    will-change: transform;
    white-space: nowrap;
}

.marquee-track:hover {
    animation-play-state: paused;
}

/* ────────── SUREFORMS STYLING ────────── */
.upshft-contact-form .sureforms-form,
.upshft-contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.upshft-contact-form input[type="text"],
.upshft-contact-form input[type="email"],
.upshft-contact-form input[type="tel"],
.upshft-contact-form textarea,
.upshft-contact-form select {
    width: 100%;
    padding: 0.875rem 1.125rem;
    border: 1.5px solid #eadfce;
    border-radius: 1rem;
    background: #fdfaf5;
    color: #17130f;
    font-size: 0.9375rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.upshft-contact-form input[type="text"]:focus,
.upshft-contact-form input[type="email"]:focus,
.upshft-contact-form input[type="tel"]:focus,
.upshft-contact-form textarea:focus,
.upshft-contact-form select:focus {
    border-color: #17130f;
    box-shadow: 0 0 0 3px rgba(23,19,15,.07);
}

.upshft-contact-form input::placeholder,
.upshft-contact-form textarea::placeholder {
    color: #b0a394;
}

.upshft-contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.upshft-contact-form label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #4d443b;
    margin-bottom: 0.375rem;
    letter-spacing: 0.01em;
}

.upshft-contact-form button[type="submit"],
.upshft-contact-form input[type="submit"] {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: #17130f;
    color: #fff;
    border: none;
    border-radius: 99px;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 10px 32px rgba(23,19,15,.20);
}

.upshft-contact-form button[type="submit"]:hover,
.upshft-contact-form input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 44px rgba(23,19,15,.28);
}

/* ────────── NAV SCROLL SHADOW ────────── */
.upshft-nav.scrolled {
    box-shadow: 0 1px 40px rgba(23,19,15,.08);
}

/* ────────── SELECTION COLOR ────────── */
::selection {
    background: #f4b740;
    color: #17130f;
}
