/* Explain: Base reset and typography defaults with premium feel. - */
* {
    box-sizing: border-box;
}

html {
    background: var(--background-color);
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    position: relative;
    z-index: 0;
}

body::before {
    content: "";
    position: fixed;
    inset: -50%;
    background-image: url('https://files.cdn-files-a.com/uploads/12289510/normal_6a6a2a39a890d.png?format=avif');
    background-size: 150px;
    background-repeat: repeat;
    opacity: 0.2;
    z-index: -1;
    pointer-events: none;
    transform: rotate(-15deg);
}

[x-cloak] { display: none !important; }

/* Overrides to make text thicker and easier to read */
.font-light {
    font-weight: 400 !important;
    letter-spacing: 0.02em;
}

h1, h2, h3, h4, h5, h6 {
    letter-spacing: -0.01em;
}

/* Form Global Refinements for Premium Feel */
input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]),
textarea,
select {
    transition: all 0.3s ease;
}
input:focus, textarea:focus, select:focus {
    box-shadow: 0 4px 20px -10px var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    outline: none !important;
}
