/* JPR Collective - Coming Soon */

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
    height: 100%; /* fallback */
    height: 100svh; /* small viewport - doesn't change with URL bar */
}

body {
    font-family: 'Inter', sans-serif;
    background: #050b14;
    color: #fff;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior-y: none;
}

/* Fixed background layer - uses svh to prevent resize */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* fallback */
    height: 100svh;
    background: url('../images/wallpaper.webp') center center / cover no-repeat;
    z-index: -1;
    pointer-events: none;
}

.container {
    min-height: 100vh; /* fallback */
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.logo-wrapper { margin-bottom: 2rem; }

.logo {
    width: 250px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5));
}

.content { text-align: center; max-width: 600px; }

.tagline {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff, #9BC53D, #5295C0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 0.85rem;
    color: #CAD4D6;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #9BC53D, #5295C0, transparent);
    margin: 0 auto 2rem;
}

.coming-soon {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #9BC53D;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.description {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
}

/* Showcase Gallery */
.showcase {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 2.5rem 0;
    padding: 0 1rem;
}

.showcase img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #5295C0;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.showcase img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(155,197,61,0.4);
    border-color: #9BC53D;
}

/* Footer */
.footer {
    margin-top: auto;
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
}

.footer a {
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.2s;
}

.footer a:hover {
    color: #9BC53D;
}

/* Modal - semi-transparent background */
.modal {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(5, 11, 20, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.active { display: flex; }

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
}

.modal-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 0 60px rgba(0,0,0,0.5);
}

.modal-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: transparent;
    border: 2px solid #9BC53D;
    color: #9BC53D;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.modal-close:hover {
    background: #9BC53D;
    color: #050b14;
}

/* Mobile */
@media (max-width: 768px) {
    .logo { width: 180px; }
    .tagline { font-size: 2rem; }
    .subtitle { font-size: 0.7rem; }
    .showcase img { width: 100px; height: 100px; }
}

@media (max-width: 480px) {
    .logo { width: 150px; }
    .tagline { font-size: 1.7rem; }
    .showcase img { width: 80px; height: 80px; }
}
