/* ===================================
   HAIL-X v3 - Gallery Page Styles
   =================================== */

/* === PAGE HEADER === */
.page-header {
    padding: 140px 0 60px;
    background: #000000;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-family: 'Ubuntu', sans-serif;
    margin-bottom: 15px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 2, 0.1);
    border: 1px solid rgba(255, 255, 2, 0.3);
    padding: 10px 20px;
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.location-badge i {
    color: #ffff02;
    font-size: 1.2rem;
}

/* === GALLERY SECTION === */
.gallery-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

/* === GALLERY CARD === */
.gallery-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.gallery-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 2, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 2, 0.2);
}

.gallery-card-header {
    padding: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-card-header h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.gallery-card-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin: 0;
}

/* === GALLERY IMAGES === */
.gallery-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.gallery-image-wrapper {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-label {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    z-index: 1;
}

.gallery-label.before {
    background: rgba(220, 53, 69, 0.85);
    color: #ffffff;
}

.gallery-label.after {
    background: rgba(40, 167, 69, 0.85);
    color: #ffffff;
}

/* === PLACEHOLDER IMAGE === */
.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
}

.placeholder-image i {
    font-size: 3rem;
}

/* === GALLERY CTA === */
.gallery-cta {
    text-align: center;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.gallery-cta h2 {
    font-size: 2rem;
    font-family: 'Ubuntu', sans-serif;
    margin-bottom: 15px;
}

.gallery-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 40px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .gallery-images {
        grid-template-columns: 1fr;
    }

    .gallery-label {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .gallery-cta {
        padding: 40px 20px;
    }

    .gallery-cta h2 {
        font-size: 1.6rem;
    }

    .gallery-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.8rem;
    }

    .location-badge {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}
