/* =========================
   UPLOAD PAGE
========================= */

.upload-page{
    min-height: 100vh;
    background: #f8fafc;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.upload-container{
    background: white;
    width: 100%;
    max-width: 600px;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    text-align: center;
}

.upload-container h1{
    font-size: 42px;
    margin-bottom: 15px;
    color: #111827;
}

.upload-container p{
    color: #f97316;
    margin-bottom: 25px;
}

.upload-area{
    border: 3px dashed #f97316;
    padding: 50px 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    background: #fff7ed;
}

.upload-area input{
    width: 100%;
    cursor: pointer;
    font-size: 16px;
}

.upload-container button{
    background: #f97316;
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.upload-container button:hover{
    background: #ea580c;
}

/* =========================
   GALLERY HERO
========================= */

.gallery-hero{
    position: relative;
    height: 70vh;
    background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.gallery-hero .overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
}

.gallery-hero-content{
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding: 20px;
}

.gallery-hero-content span{
    color: #f97316;
    letter-spacing: 3px;
    font-size: 14px;
    font-weight: 600;
}

.gallery-hero-content h1{
    font-size: 72px;
    margin: 20px 0;
    font-weight: 800;
}

.gallery-hero-content p{
    font-size: 18px;
    line-height: 1.8;
    color: #e5e7eb;
}

/* =========================
   INSTAGRAM GALLERY
========================= */

.gallery-section{
    padding: 100px 6%;
    background: #f8fafc;
}

.instagram-gallery{
    columns: 4 280px;
    column-gap: 18px;
}

.gallery-card{
    margin-bottom: 18px;
    break-inside: avoid;
    overflow: hidden;
    border-radius: 22px;
    position: relative;
    cursor: pointer;
}

.gallery-card img{
    width: 100%;
    border-radius: 22px;
    display: block;
    transition: 0.5s;
}

/* HOVER EFFECT */

.gallery-card::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
    opacity: 0;
    transition: 0.4s;
    z-index: 1;
    border-radius: 22px;
}

.gallery-card:hover::before{
    opacity: 1;
}

.gallery-card:hover img{
    transform: scale(1.08);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

    .gallery-hero-content h1{
        font-size: 54px;
    }
}

@media(max-width:768px){

    .gallery-hero{
        height: 60vh;
    }

    .gallery-hero-content h1{
        font-size: 40px;
    }

    .gallery-hero-content p{
        font-size: 16px;
    }

    .upload-container{
        padding: 35px;
    }
}