/**
 * LOCATION STUDIO — Hall Gallery Page Styles
 */

/* ─── Hall Hero ─── */
.hall-hero {
    padding: 3rem 2rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hall-hero-content {
    max-width: 700px;
}

.hall-back-link {
    display: inline-block;
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    transition: color 0.3s;
}

.hall-back-link:hover {
    color: var(--red);
}

.hall-hero h1 {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 1.2rem;
}

.hall-hero h1 .accent {
    color: var(--red);
}

.hall-description {
    color: var(--text-dim);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 550px;
}

.hall-price-row {
    display: flex;
    align-items: baseline;
    gap: 1.2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hall-price-block {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.hall-price-number {
    font-family: 'Unbounded', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.04em;
    line-height: 1;
}

.hall-price-unit {
    font-size: 1rem;
    color: var(--text-dim);
    font-weight: 500;
}

.hall-price-note {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ─── Hall Subtitle ─── */
.hall-subtitle {
    font-family: 'Unbounded', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}

/* ─── Features Grid ─── */
.hall-features {
    padding: 0 2rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.feature-card {
    background: var(--bg-panel);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    padding: 2rem 1.5rem;
    transition: all 0.35s ease;
}

.feature-card:hover {
    border-color: rgba(230, 0, 0, 0.15);
    box-shadow: 0 0 25px rgba(230, 0, 0, 0.06);
}

.feature-icon {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--red);
    margin-bottom: 1rem;
    line-height: 1;
}

.feature-icon svg {
    stroke: var(--red);
}

.feature-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
    margin-top: 0;
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}

.feature-text {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.65;
}

/* ─── Included Section ─── */
.hall-included {
    padding: 0 2rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hall-included h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hall-included h2 .accent {
    color: var(--red);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.included-item {
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1.5rem;
}

.included-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.included-text {
    font-size: 0.88rem;
    color: var(--text-dim);
    line-height: 1.6;
}

/* ─── Gallery Grid ─── */
.hall-gallery {
    padding: 0 2rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 1rem;
}

.gallery-item {
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    border: 1px solid var(--border);
    transition: all 0.35s ease;
}

.gallery-item:hover {
    border-color: rgba(230, 0, 0, 0.3);
    box-shadow: 0 0 30px rgba(230, 0, 0, 0.08);
    transform: translateY(-2px);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
    transform: scale(1.03);
}

/* ─── Reportage Photo Inserts ─── */
.rp {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.rp--reverse { flex-direction: row-reverse; }

.rp-photo {
    flex: 0 0 45%;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
}

.rp-photo:hover {
    border-color: rgba(230, 0, 0, 0.3);
    box-shadow: 0 8px 40px rgba(230, 0, 0, 0.1);
}

.rp-photo img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rp-photo:hover img {
    transform: scale(1.03);
}

.rp-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 200px;
    background: var(--bg-panel, rgba(255,255,255,0.03));
    border: 1px solid var(--glass-border, rgba(255,255,255,0.06));
    border-radius: 6px;
    padding: 2rem 1.5rem;
}

.rp-text h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 0.8rem;
    letter-spacing: -0.01em;
}

.rp-text p {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.75;
    margin: 0;
}

/* Full-width photo break */
.rp-break {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
}

.rp-break-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.rp-break-inner .rp-photo {
    flex: none;
}

/* Wide single photo */
.rp-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
}

.rp-wide .rp-photo {
    max-height: 450px;
}

.rp-wide .rp-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .rp {
        flex-direction: column !important;
        padding: 0 1rem 2rem;
    }
    .rp-photo { flex: none; width: 100%; }
    .rp-text { min-height: auto; }
    .rp-break { padding: 0 1rem 2rem; }
    .rp-break-inner { grid-template-columns: 1fr; }
    .rp-wide { padding: 0 1rem 2rem; }
}

/* ─── Lightbox ─── */
.lightbox {
    display: none;
    position: fixed;
    z-index: 3000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.2s ease;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    user-select: none;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10;
    line-height: 1;
}

.lightbox-close:hover {
    color: #fff;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-dim);
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.lightbox-nav:hover {
    background: rgba(230, 0, 0, 0.15);
    border-color: var(--red);
    color: #fff;
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-counter {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-dim);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .hall-hero {
        padding: 2rem 1rem 1rem;
    }

    .hall-features,
    .hall-included {
        padding: 0 1rem 2rem;
    }

    .features-grid,
    .included-grid {
        grid-template-columns: 1fr;
    }

    .hall-gallery {
        padding: 0 1rem 3rem;
    }

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

    .hall-price-number {
        font-size: 2.2rem;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .lightbox-prev {
        left: 0.8rem;
    }

    .lightbox-next {
        right: 0.8rem;
    }
}
