/* ===================================
   LOOK.CSS — Base / Reset Styles
   =================================== */

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

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease, opacity 0.3s ease;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.site-content {
    flex: 1;
}

/* Base grid structure */
.headshots {
    display: grid;
    gap: 24px;
}

.model-holder {
    position: relative;
}

.model-card {
    display: block;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.model-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.model-stats span {
    display: block;
}

/* Form base */
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
}

.form-group input {
    width: 100%;
    border: 1px solid #ccc;
    outline: none;
    transition: border-color 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
}

hr {
    border: none;
}
