/* ── Models (Model Sign-Up) Page ─────────────────────────────────────────────── */

.models-page .models-intro-section {
    position: relative;
    padding: 160px 0 120px;
    background-image: url('https://static.wixstatic.com/media/d9e883_ae4290a5d492487384605bc413d993d1~mv2.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    text-align: center;
    isolation: isolate;
}

.models-page .models-intro-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.models-page .models-intro-title {
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
}

.models-page .models-intro-subtitle {
    font-size: clamp(15px, 2vw, 19px);
    color: rgba(255,255,255,0.9);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.models-page .models-cta-center {
    text-align: center;
    margin: 40px 0;
}

.models-page .models-section-label {
    font-size: 13px;
    font-weight: 600;
    color: #999;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 18px;  /* space between button and label */
    margin-bottom: 0;
    display: block;
}

/* CTA block: button on top, label caption below, both centred */
.models-page .models-cta-center {
    text-align: center;
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* Image grids */
.models-img-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 40px 0;
}

.models-img-grid img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.models-img-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.models-img-grid-sm img  { height: 300px; }
.models-img-grid-bot img { height: 350px; }
.models-img-grid-bot2 img { height: 400px; }

/* Why model section */
.models-page .why-model-section {
    padding: 80px 0;
    background: rgba(255,255,255,0.93);
}

.models-page .why-model-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 60px;
    text-align: center;
}

.models-page .reason-item {
    margin-bottom: 50px;
}

.models-page .reason-title {
    font-size: 24px;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 15px;
}

.models-page .reason-body {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.models-page .models-closing-text {
    margin-top: 50px;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.lightbox-close {
    position: fixed;
    top: 20px; right: 30px;
    font-size: 50px;
    color: #fff;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.3);
    z-index: 10000;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: #fff;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.3);
    z-index: 10000;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav.prev { left: 30px; }
.lightbox-nav.next { right: 30px; }

.lightbox-counter {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 18px;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 20px;
    z-index: 10000;
}

@media (max-width: 768px) {
    .models-img-grid { grid-template-columns: repeat(2, 1fr); }
    .models-img-grid img { height: 250px; }
    .models-img-grid-sm img { height: 200px; }
    .models-img-grid-bot img { height: 220px; }
    .models-img-grid-bot2 img { height: 250px; }
    .models-page .models-intro-title { font-size: 32px; }
    .models-page .why-model-title { font-size: 28px; }
}

/* ── Models Gallery Section ─────────────────────────────────────────────────── */
.models-gallery-section {
    padding: 70px 0 80px;
    background: rgba(255,255,255,0.93);
}
.models-gallery-heading {
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 14px;
}
.models-gallery-subtext {
    font-size: 17px;
    color: #64748b;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.7;
}
.models-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.models-gallery-item {
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 3/4;
    background: #f1f5f9;
}
.models-gallery-item img,
.models-gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: transform 0.35s;
    border-radius: 10px;
}
.models-gallery-item:hover img,
.models-gallery-grid img:hover {
    transform: scale(1.05);
}
@@media (max-width: 900px) {
    .models-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@@media (max-width: 480px) {
    .models-gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
}

/* ── Models Intro Images Section ───────────────────────────────────────────── */
.models-intro-images-section {
    padding: 70px 0 60px;
    background: rgba(255,255,255,0.93);
}
.models-section-intro-text {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
}
.models-section-intro-text h2 {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
}
.models-section-intro-text p {
    font-size: 17px;
    color: #64748b;
    line-height: 1.8;
}

/* Models gallery - 4 thumbnails per row */
.models-gallery-grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 24px;
}
@media (max-width: 900px) {
    .models-gallery-grid-4col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
    .models-gallery-grid-4col { grid-template-columns: repeat(1, 1fr); }
}
.models-gallery-thumb {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
    background: #f1f5f9;
}
.models-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s;
}
.models-gallery-thumb:hover img { transform: scale(1.06); }
