/* ======================================================
FILE: /css/styles.css
PROJECT: IATTV Website
PURPOSE: Main visual styles and responsive layout.
====================================================== */


/* ======================================================
   DESIGN VARIABLES
====================================================== */

:root {
    --royal-blue: #0b3190;
    --royal-blue-dark: #071f62;
    --gold: #c7941d;
    --gold-light: #e0bd62;

    --white: #ffffff;
    --warm-white: #fffdf8;
    --soft-cream: #faf6ed;
    --soft-blue: #f2f6ff;

    --text: #252525;
    --text-soft: #606060;

    --border: rgba(199, 148, 29, 0.28);

    --shadow:
        0 12px 35px rgba(18, 42, 90, 0.10);

    --max-width: 1400px;
}


/* ======================================================
   RESET / BASE
====================================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--text);
    font-family:
        Arial,
        Helvetica,
        sans-serif;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}


/* ======================================================
   TYPOGRAPHY
====================================================== */

h1,
h2,
h3,
.brand-name,
.jesus-is-lord {
    font-family:
        Georgia,
        "Times New Roman",
        serif;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

.section-eyebrow {
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}


/* ======================================================
   BUTTONS
====================================================== */

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: 1px solid transparent;
    border-radius: 6px;

    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary,
.button-live {
    background: var(--royal-blue);
    color: var(--white);
    box-shadow: 0 7px 18px rgba(11, 49, 144, 0.20);
}

.button-primary:hover,
.button-live:hover {
    background: var(--royal-blue-dark);
}

.button-secondary {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.92);
    color: var(--royal-blue);
}

.button-gold {
    background: var(--gold);
    color: var(--white);
}

.text-link {
    color: var(--royal-blue);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}


/* ======================================================
   HEADER
====================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(11, 49, 144, 0.08);

    backdrop-filter: blur(10px);
}

.header-inner {
    width: min(94%, var(--max-width));
    min-height: 88px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    gap: 30px;
}

.brand {
    min-width: 280px;
    display: flex;
    flex-direction: column;
}

.brand-name {
    color: var(--royal-blue);
    font-size: 3.1rem;
    line-height: 0.9;
    letter-spacing: 0.04em;
}

.brand-tagline {
    margin-top: 9px;
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.76rem;
    letter-spacing: 0.31em;
}

.main-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    position: relative;
    color: var(--royal-blue-dark);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.main-nav a::after {
    position: absolute;
    left: 0;
    bottom: -9px;

    width: 0;
    height: 2px;

    background: var(--gold);
    content: "";

    transition: width 0.2s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
}

.language-switcher button {
    padding: 5px;

    border: 0;
    background: transparent;
    color: var(--text-soft);

    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 700;
}

.language-switcher button.active {
    color: var(--royal-blue);
}

.language-switcher span {
    width: 1px;
    height: 17px;
    background: var(--border);
}

.mobile-menu-button {
    display: none;
}


/* ======================================================
   HERO
====================================================== */

.hero {
    position: relative;
    min-height: 0;
    overflow: visible;
    padding-bottom: 0;
    background: none;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 610px;
    z-index: 0;
    pointer-events: none;

    background:
      linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.00) 0%,
        rgba(255, 255, 255, 0.68) 30%,
        rgba(255, 255, 255, 0.10) 52%,
        rgba(255, 255, 255, 0.00) 72%
      ),
      url("../assets/images/hero-vineyard.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at 75% 25%,
            rgba(255, 213, 105, 0.25),
            transparent 27%);

    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;

    width: min(92%, var(--max-width));
    min-height: 610px;
    margin: 0 auto;
    padding: 80px 0;

    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(290px, 0.75fr);
    align-items: center;
    gap: 70px;
}

.hero-message {
    max-width: 680px;
    text-align: center;
}

.hero-ministry-name {
    margin-bottom: 20px;

    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.85rem;
    letter-spacing: 0.35em;
}

.hero h1 {
    margin-bottom: 20px;

    color: var(--royal-blue);
    font-size: clamp(3rem, 5.2vw, 5.5rem);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: 0.025em;
}

.hero h1 span,
.hero h1 strong {
    display: block;
}

.hero h1 span {
    white-space: nowrap;
}

.hero h1 strong {
    margin-top: 12px;

    color: var(--gold);
    font-size: 0.62em;
    font-weight: 400;
}

.vine-divider {
    margin: 26px auto;

    display: flex;
    max-width: 330px;
    align-items: center;
    gap: 12px;

    color: var(--gold);
}

.vine-divider span:not(.vine-symbol) {
    height: 1px;
    flex: 1;
    background: linear-gradient(to right,
            transparent,
            var(--gold));
}

.vine-divider span:last-child {
    background: linear-gradient(to left,
            transparent,
            var(--gold));
}

.vine-symbol {
    font-size: 1.4rem;
}

.hero blockquote {
    max-width: 590px;
    margin: 0 auto 8px;

    color: var(--royal-blue);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.4rem, 2vw, 2rem);
    font-style: italic;
    line-height: 1.4;
}

.scripture-reference {
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    letter-spacing: 0.13em;
}

.jesus-is-lord {
    margin: 20px 0;

    color: var(--royal-blue);
    font-size: 1.45rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
}

/* ======================================================
   LIVE CARD
====================================================== */

.live-card {
    width: 100%;
    max-width: 380px;
    margin-left: auto;
    padding: 36px 32px 32px;

    border: 1px solid rgba(199, 148, 29, 0.28);
    border-radius: 16px;

    background:
        linear-gradient(180deg, rgba(255, 252, 246, 0.97) 0%, rgba(255, 255, 255, 0.94) 100%);
    box-shadow:
        0 18px 40px rgba(20, 36, 72, 0.16),
        0 0 0 1px rgba(255, 255, 255, 0.4) inset;

    text-align: center;
}

.live-label {
    margin-bottom: 10px;

    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.live-card h2,
.live-title {
    margin: 0 0 8px;

    color: var(--royal-blue);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.25;
    letter-spacing: 0;
    text-transform: none;
}

.live-day {
    margin: 0 0 2px;

    color: var(--royal-blue-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.live-time {
    margin-bottom: 16px;

    color: var(--royal-blue-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
}

.small-divider {
    width: 80px;
    height: 1px;
    margin: 0 auto 16px;

    background: var(--gold-light);
}

.live-features {
    margin-bottom: 4px;
    color: var(--royal-blue);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.live-features span {
    padding: 0 5px;
    color: var(--gold);
}

.live-card-link {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 22px;

    border: 1px solid var(--gold);
    border-radius: 999px;

    color: var(--royal-blue);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
}

.live-card-link:hover {
    background: var(--royal-blue);
    border-color: var(--royal-blue);
    color: #fff;
}

.live-card-link.live-service-disabled {
    opacity: 0.45;
    pointer-events: none;
}

/* ======================================================
   QUICK ACTIONS
====================================================== */

.quick-actions {
    position: relative;
    z-index: 5;

    width: min(94%, var(--max-width));
    margin: -75px auto 0;

    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.quick-actions-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.action-card {
    position: relative;
    min-height: 190px;
    padding: 30px 25px;

    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.action-card:not(:last-child)::after {
    position: absolute;
    top: 30px;
    right: 0;
    bottom: 30px;

    width: 1px;

    background: var(--border);
    content: "";
}

.action-icon {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: var(--soft-blue);
    color: var(--royal-blue);

    font-size: 1.8rem;
}

.action-icon.gold {
    background: var(--soft-cream);
    color: var(--gold);
}

.action-card h2 {
    margin-bottom: 6px;

    color: var(--royal-blue);
    font-size: 1.2rem;
}

.action-card p {
    margin-bottom: 10px;

    color: var(--text-soft);
    font-size: 0.9rem;
}

.action-card a {
    color: var(--royal-blue);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}


/* ======================================================
   MISSION
====================================================== */

.mission-section {
    padding: 65px 4%;
    background:
        linear-gradient(
            180deg,
            #fffdf8 0%,
            #fbf6ea 100%
        );

    border-top: 1px solid rgba(199, 148, 29, 0.22);
}

.mission-inner {
    width: min(100%, var(--max-width));
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1.15fr 0.9fr;
    align-items: center;
}

.mission-content,
.mission-scripture,
.mission-declaration {
    min-height: 230px;
    padding: 35px 50px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mission-content,
.mission-scripture {
    border-right: 1px solid var(--border);
}

.mission-content h2,
.mission-declaration h2 {
    margin-bottom: 10px;

    color: var(--royal-blue);
    font-size: 1.8rem;
    font-weight: 400;
}

.mission-content p {
    color: var(--text-soft);
}

.mission-scripture {
    position: relative;
}

.quote-mark {
    height: 45px;

    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 4rem;
    line-height: 1;
}

.mission-scripture blockquote {
    margin: 0;

    color: var(--royal-blue);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.15rem;
    line-height: 1.55;
}

.mission-scripture p {
    margin-top: 12px;
    margin-bottom: 0;

    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
}

.mission-declaration {
    align-items: center;
    text-align: center;
}

.cross-symbol {
    color: var(--gold);
    font-size: 3.2rem;
    line-height: 1;
}

.mission-declaration p {
    margin-bottom: 0;

    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}


/* ======================================================
   LATEST MESSAGES
====================================================== */

.messages-section {
    width: min(92%, var(--max-width));
    margin: 0 auto;
    padding: 80px 0;
}

.section-heading {
    margin-bottom: 28px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.section-heading h2 {
    margin-bottom: 0;

    color: var(--royal-blue);
    font-size: 2.5rem;
    font-weight: 400;
}

.message-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.message-card {
    overflow: hidden;

    border: 1px solid rgba(11, 49, 144, 0.08);
    border-radius: 10px;

    background: var(--white);
    box-shadow: 0 8px 24px rgba(18, 42, 90, 0.08);
}

.message-image {
    position: relative;
    height: 190px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(135deg,
            #dbe8c4,
            #f7e9b7,
            #c9dcf7);
}

.message-image-two {
    background:
        linear-gradient(135deg,
            #efe2c4,
            #fffaf0,
            #d7c59d);
}

.message-image-three {
    background:
        linear-gradient(135deg,
            #d8e7f4,
            #dbe8c4,
            #fff3c8);
}

.message-image-four {
    background:
        linear-gradient(135deg,
            #cfdca9,
            #edf3da,
            #b8cde5);
}

.play-button {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid var(--white);
    border-radius: 50%;

    background: rgba(11, 49, 144, 0.88);
    color: var(--white);

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.16);
}

.message-content {
    padding: 20px;
}

.message-reference {
    margin-bottom: 5px;

    color: var(--gold);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
}

.message-content h3 {
    min-height: 55px;
    margin-bottom: 14px;

    color: var(--royal-blue);
    font-size: 1.25rem;
}

.message-content a {
    color: var(--royal-blue);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}


/* ======================================================
   PRAYER
====================================================== */

.prayer-section {
    padding: 100px 5%;

    background:
        linear-gradient(135deg,
            #f7faff,
            #edf4ff);

    text-align: center;
}

.content-narrow {
    max-width: 760px;
    margin: 0 auto;
}

.content-narrow h2 {
    margin-bottom: 16px;

    color: var(--royal-blue);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 400;
}

.content-narrow>p:not(.section-eyebrow) {
    margin-bottom: 30px;

    color: var(--text-soft);
    font-size: 1.05rem;
}


/* ======================================================
   GIVE
====================================================== */

.give-section {
    padding: 100px 5%;

    background:
        linear-gradient(135deg,
            #fffdf8,
            #faf3df);

    text-align: center;
}


/* ======================================================
   CONTACT
====================================================== */

.contact-section {
    padding: 90px 5%;

    background: var(--white);
    text-align: center;
}


/* ======================================================
   FOOTER
====================================================== */

.site-footer {
    padding: 55px 5%;

    border-top: 3px solid var(--gold);
    background: var(--royal-blue-dark);
    color: var(--white);
}

.footer-inner {
    width: min(92%, var(--max-width));
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-brand strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.footer-brand span {
    color: var(--gold-light);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
}

.site-footer p {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
}


/* ======================================================
   TABLET
====================================================== */

@media (max-width: 1100px) {

    .header-inner {
        flex-wrap: wrap;
        padding: 18px 0;
    }

    .brand {
        min-width: 230px;
    }

    .brand-name {
        font-size: 2.6rem;
    }

    .main-nav {
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .header-actions {
        margin-left: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .live-card {
        margin: 0 auto;
    }

    .quick-actions-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .action-card:nth-child(2)::after {
        display: none;
    }

    .mission-inner {
        grid-template-columns: 1fr;
    }

    .mission-content,
    .mission-scripture {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .message-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* ======================================================
   MOBILE
====================================================== */

@media (max-width: 720px) {

    .site-header {
        position: relative;
    }

    .header-inner {
        min-height: 75px;
    }

    .brand {
        min-width: 0;
        flex: 1;
    }

    .brand-name {
        font-size: 2.25rem;
    }

    .brand-tagline {
        font-size: 0.58rem;
        letter-spacing: 0.2em;
    }

    .mobile-menu-button {
        display: block;

        border: 0;
        background: transparent;
        color: var(--royal-blue);

        cursor: pointer;
        font-size: 1.8rem;
    }

    .main-nav {
        display: none;

        padding: 18px 0;

        flex-direction: column;
        align-items: flex-start;
        gap: 18px;

        border-top: 1px solid rgba(11, 49, 144, 0.08);
    }

    .main-nav.open {
        display: flex;
    }

    .header-actions {
        width: 100%;
        justify-content: space-between;
    }

    .button-live {
        min-height: 42px;
        padding: 9px 14px;
        font-size: 0.74rem;
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        min-height: auto;
        padding: 65px 0 80px;
    }

    .hero-message {
        text-align: center;
    }

    .hero h1 {
        font-size: clamp(2.1rem, 10vw, 3.6rem);
    }

    .hero blockquote {
        font-size: 1.3rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .button {
        width: 100%;
    }

    .live-card {
        max-width: 100%;
    }

    .quick-actions {
        margin-top: -25px;
    }

    .quick-actions-inner {
        grid-template-columns: 1fr;
    }

    .action-card {
        min-height: 0;
    }

    .action-card:not(:last-child)::after {
        top: auto;
        left: 25px;
        right: 25px;
        bottom: 0;

        width: auto;
        height: 1px;
    }

    .mission-content,
    .mission-scripture,
    .mission-declaration {
        min-height: 0;
        padding: 35px 15px;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .message-grid {
        grid-template-columns: 1fr;
    }

    .message-image {
        height: 220px;
    }

    .prayer-section,
    .give-section,
    .contact-section {
        padding: 75px 7%;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
    
        .language-switcher {
        position: relative;
        z-index: 1100;
        gap: 4px;
    }

    .language-switcher button {
        min-width: 40px;
        min-height: 40px;
        padding: 8px;
    }

    .header-actions {
        width: auto;
        margin-left: auto;
        gap: 10px;
    }

}

/* ======================================================
LIVE SERVICE STATE
====================================================== */

.live-service-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

/* ======================================================
PRAYER REQUEST MODAL
====================================================== */

body.modal-open {
  overflow: hidden;
}

.prayer-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.55);
}

.prayer-modal[hidden] {
  display: none;
}

.prayer-modal-card {
  position: relative;
  width: min(100%, 620px);
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px;
  background: #fff;
  border-radius: 12px;
}

.prayer-modal-card h2 {
  margin-top: 6px;
  color: #003399;
}

.prayer-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  border: 0;
  background: transparent;
  font-size: 30px;
  cursor: pointer;
}

#prayerRequestForm {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

#prayerRequestForm label {
  margin-top: 8px;
  font-weight: 600;
}

#prayerRequestForm label span {
  font-weight: 400;
}

#prayerRequestForm input,
#prayerRequestForm textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccd3df;
  border-radius: 6px;
  font: inherit;
}

#prayerRequestForm textarea {
  resize: vertical;
}

#prayerRequestForm .prayer-confidential {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  font-weight: 400;
}

#prayerRequestForm .prayer-confidential input {
  width: auto;
}

.prayer-form-status {
  min-height: 24px;
  margin: 4px 0 0;
}

@media (max-width: 600px) {
  .prayer-modal {
    padding: 12px;
  }

  .prayer-modal-card {
    padding: 28px 20px;
  }
}

/* ======================================================
   MORE FROM THE MINISTRY
====================================================== */

.ministry-links {
  width: 100%;
  margin: 0;
  padding: 36px 0 20px;
  background: var(--soft-cream);
}

.ministry-links-inner {
  width: min(94%, var(--max-width));
  margin: 0 auto;
  text-align: center;
}

.ministry-links .section-eyebrow {
  margin-bottom: 16px;
}

.ministry-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ministry-link-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  text-align: left;
  padding: 24px 26px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.ministry-link-card h2 {
  margin: 0 0 6px;
}

.ministry-link-card p {
  margin: 0 0 10px;
}

@media (max-width: 700px) {
  .ministry-links-grid {
    grid-template-columns: 1fr;
  }
}

.live-card:has(.live-card-flyer:not([hidden])) {
    max-width: 320px;
    padding: 12px 12px 16px;
}

.live-card-flyer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.live-card-flyer[hidden],
.live-card-text[hidden] {
    display: none;
}

.live-flyer-open {
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.live-flyer-thumb {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    border: 1px solid rgba(199, 148, 29, 0.4);
    border-radius: 8px;
}

.flyer-lightbox {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px;
    background: rgba(10, 16, 32, 0.88);
}

.flyer-lightbox[hidden] {
    display: none;
}

.flyer-lightbox-image {
    max-width: min(92vw, 720px);
    max-height: 78vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.flyer-lightbox-close {
    position: absolute;
    top: 16px;
    right: 20px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

body.flyer-lightbox-open {
    overflow: hidden;
}