
* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

/* PRELOADER */
.preloader {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    letter-spacing: 10px;
    font-weight: 800;
    z-index: 9999;
    transition: opacity 0.8s ease;
}

/* CUSTOM CURSOR */
.cursor {
    width: 14px;
    height: 14px;
    border: 1px solid white;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

/* HERO */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    width: 120%;
    height: 120%;
    background: linear-gradient(130deg, #0a0a0a 0%, #101820 50%, #0a0a0a 100%);
    animation: slowZoom 20s infinite alternate ease-in-out;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.05), transparent 60%);
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
}

.hero h1 {
    font-size: 90px;
    font-weight: 900;
    letter-spacing: 8px;
    line-height: 1.1;
}

.hero h1 span {
    display: block;
    opacity: 0;
    transform: translateY(40px);
    animation: reveal 1s forwards;
}

.hero h1 span:nth-child(1) { animation-delay: 0.4s; }
.hero h1 span:nth-child(2) { animation-delay: 0.7s; }
.hero h1 span:nth-child(3) { animation-delay: 1s; }

@keyframes reveal {
    to { opacity: 1; transform: translateY(0); }
}

.hero p {
    margin-top: 20px;
    opacity: 0.6;
    letter-spacing: 2px;
}

button {
    margin-top: 40px;
    padding: 16px 60px;
    border-radius: 50px;
    border: 1px solid white;
    background: transparent;
    color: white;
    font-weight: 600;
    transition: all 0.4s ease;
}

button:hover {
    background: white;
    color: black;
    transform: translateY(-4px);
}

/* LOGIN */
.login-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card input {
    padding: 14px;
    width: 280px;
    margin: 20px 0;
}

/* GALLERY */
.gallery {
    padding: 80px;
    background: #050505;
}

.gallery header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#galleryGrid {
    margin-top: 60px;
    column-count: 3;
    column-gap: 40px;
}

#galleryGrid img {
    width: 100%;
    margin-bottom: 40px;
    transition: transform 0.4s ease;
}

#galleryGrid img:hover {
    transform: scale(1.03);
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
}

.lightbox span {
    position: absolute;
    top: 40px;
    right: 60px;
    font-size: 40px;
    cursor: pointer;
}

.hidden { display: none; }
