/* ═══════════════════════════════════════════════════════════
   SHARED PAGE STYLES — Weddings, Corporate, Concerts, Blog
   ═══════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────────────────────
   NAV DARK VARIANT
   ────────────────────────────────────────────────────────── */
.nav--dark {
    background: rgba(11, 11, 11, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.nav__link.active {
    color: var(--color-gold);
    opacity: 1;
}

.nav__link.active::after {
    width: 100%;
}


/* ──────────────────────────────────────────────────────────
   PAGE HERO
   ────────────────────────────────────────────────────────── */
.page-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero--compact {
    min-height: 50vh;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
}

.page-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(11, 11, 11, 0.6) 0%,
        rgba(11, 11, 11, 0.85) 100%
    );
}

.page-hero__overlay--solid {
    background: var(--color-black);
}

.page-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding-top: 100px;
}

.page-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 300;
    color: var(--color-ivory);
    line-height: 1.15;
    margin-bottom: 20px;
}

.page-hero__subtitle {
    font-size: var(--body-size);
    color: var(--color-white);
    opacity: 0.6;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}


/* ──────────────────────────────────────────────────────────
   PAGE SECTIONS
   ────────────────────────────────────────────────────────── */
.page-section {
    padding: var(--section-padding) 0;
    background: var(--color-black);
}

.page-section--dark {
    background: var(--color-dark);
}


/* ──────────────────────────────────────────────────────────
   SPLIT CONTENT
   ────────────────────────────────────────────────────────── */
.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.split-content--reverse {
    direction: rtl;
}

.split-content--reverse > * {
    direction: ltr;
}

.split-content__text p {
    color: var(--color-white);
    opacity: 0.6;
    line-height: 1.8;
}

.split-content__image {
    border-radius: 4px;
    overflow: hidden;
}

.split-content__image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    transition: transform 0.8s var(--ease-out-expo);
}

.split-content__image:hover img {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .split-content {
        grid-template-columns: 1fr;
    }

    .split-content--reverse {
        direction: ltr;
    }
}


/* ──────────────────────────────────────────────────────────
   OFFERINGS GRID
   ────────────────────────────────────────────────────────── */
.offerings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .offerings-grid {
        grid-template-columns: 1fr;
    }
}

.offering-card {
    padding: 40px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.offering-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s var(--ease-out-expo);
}

.offering-card:hover::before {
    transform: scaleX(1);
}

.offering-card:hover {
    border-color: rgba(198, 168, 90, 0.2);
    background: rgba(255, 255, 255, 0.02);
}

.offering-card__number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-gold);
    opacity: 0.2;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 16px;
}

.offering-card__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-ivory);
    font-weight: 400;
    margin-bottom: 12px;
}

.offering-card__desc {
    font-size: var(--small-size);
    color: var(--color-white);
    opacity: 0.55;
    line-height: 1.7;
    margin: 0;
}


/* ──────────────────────────────────────────────────────────
   GALLERY GRID
   ────────────────────────────────────────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 16px;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* .gallery-item rules moved to gallery.css — removed to avoid conflicts */

.gallery-item--wide {
    grid-row: span 2;
    aspect-ratio: auto;
}

/* gallery-item img handled in gallery.css with focal-point support */



/* ──────────────────────────────────────────────────────────
   EVENTS LIST (Concerts page)
   ────────────────────────────────────────────────────────── */
.events-list {
    max-width: 800px;
    margin: 0 auto;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition-fast);
}

.event-item:first-child {
    border-top: 1px solid var(--border-color);
}

.event-item:hover {
    padding-left: 12px;
}

.event-item__date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.event-item__month {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.event-item__day {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-ivory);
    line-height: 1;
}

.event-item__info {
    flex: 1;
}

.event-item__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-ivory);
    font-weight: 400;
    margin-bottom: 4px;
}

.event-item__venue {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    color: var(--color-white);
    opacity: 0.5;
    margin: 0;
}

.event-item__status .tag {
    padding: 4px 14px;
    font-size: 0.65rem;
}

@media (max-width: 480px) {
    .event-item {
        flex-wrap: wrap;
        gap: 16px;
    }

    .event-item__status {
        width: 100%;
    }
}


/* ──────────────────────────────────────────────────────────
   BLOG STYLES
   ────────────────────────────────────────────────────────── */
.blog-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
}

.blog-filter {
    font-family: var(--font-accent);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 20px;
    border: 1px solid var(--border-color);
    border-radius: 100px;
    color: var(--color-light-grey);
    transition: all var(--transition-fast);
    cursor: pointer;
    background: none;
}

.blog-filter:hover,
.blog-filter.active {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.blog-filter.active {
    background: rgba(198, 168, 90, 0.1);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.blog-card {
    transition: opacity 0.4s, transform 0.4s;
}

.blog-card.hidden {
    display: none;
}

.blog-card__image {
    display: block;
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s var(--ease-out-expo);
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.05);
}

.blog-card__tag {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: var(--font-accent);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    background: rgba(11, 11, 11, 0.7);
    backdrop-filter: blur(4px);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    color: var(--color-gold);
}

.blog-card__date {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-gold);
    opacity: 0.6;
}

.blog-card__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--color-ivory);
    margin: 8px 0 12px;
    line-height: 1.35;
}

.blog-card__title a {
    transition: color var(--transition-fast);
}

.blog-card__title a:hover {
    color: var(--color-gold);
}

.blog-card__excerpt {
    font-size: var(--small-size);
    color: var(--color-white);
    opacity: 0.5;
    line-height: 1.7;
    margin-bottom: 16px;
}

.blog-card__read-more {
    font-family: var(--font-accent);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-gold);
    transition: all var(--transition-fast);
}

.blog-card__read-more:hover {
    color: var(--color-gold-hover);
    letter-spacing: 0.1em;
}

/* Admin page-builder output */
.builder-rendered-sections {
    width: 100%;
}

.builder-section-live {
    padding: clamp(64px, 8vw, 110px) 0;
}

.builder-section-live--dark {
    background: #090909;
}

.builder-section-live--light {
    background: #f7f4ef;
    color: #16120f;
}

.builder-section-live--gold {
    background: linear-gradient(135deg, rgba(194, 153, 91, 0.18), rgba(255, 255, 255, 0.02));
}

.builder-section-live--spacer {
    min-height: clamp(36px, 8vw, 90px);
    padding: 0;
}

.builder-section-live__copy {
    max-width: 780px;
    margin: 1.25rem auto 0;
    color: var(--color-text-muted);
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    line-height: 1.8;
}

.split-content .builder-section-live__copy {
    margin-left: 0;
    margin-right: 0;
}

.builder-section-live--light .builder-section-live__copy {
    color: #4d463e;
}

.builder-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4 / 3;
    background: #111;
}

.builder-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.builder-gallery-item figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem;
    color: #fff;
    font-family: var(--font-heading);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent);
}

.builder-testimonial {
    max-width: 860px;
    margin: 0 auto;
    padding: clamp(32px, 5vw, 56px);
    border-left: 3px solid var(--color-gold);
    background: rgba(255, 255, 255, 0.04);
}

.builder-testimonial p {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 3rem);
    line-height: 1.2;
}

.builder-testimonial cite {
    display: block;
    margin-top: 1.5rem;
    color: var(--color-gold);
    font-style: normal;
}

.builder-video {
    max-width: 980px;
    margin: 2rem auto 0;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 8px;
    background: #0b0b0b;
}

.builder-video iframe,
.builder-video img {
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
    display: block;
}
