/* ==========================================================================
   JEM-X STUDIO GLOBAL STYLES
   ========================================================================== */

/* Reset browser defaults and eliminate round corners */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-radius: 0 !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Premium scroll interactions and solid backgrounds */
html {
    scroll-behavior: smooth;
    background-color: #ffffff;
}

body {
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Elegant selection highlight color */
::-webkit-selection {
    background: #000000;
    color: #ffffff;
}
::selection {
    background: #000000;
    color: #ffffff;
}

/* Clean up hyperlink tap states on mobile viewports */
a {
    transition: opacity 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

a:hover {
    opacity: 0.6 !important;
}

/* Seamless form fields aesthetics */
input, textarea {
    -webkit-appearance: none;
    appearance: none;
}

input:focus, textarea:focus {
    border-bottom: 1px solid #777777 !important;
}
/* --- Lookbook Responsive Grid System --- */

/* Desktop view: Lock into a clean 3-column split */
.lookbook-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 0 4%;
}

/* Mobile view: Automatically snap to 1 clean image per row so it looks amazing on phones */
@media (max-width: 768px) {
    .lookbook-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        padding: 0 6% !important;
    }
}