﻿body {
    background: #fbf3ea;
    color: #222;
    font-family: 'UTM Avo', sans-serif;
}

body,
button,
input,
select,
textarea,
label {
    font-family: 'UTM Avo', sans-serif;
}

/* Header menu — UTM Avo (httpdocs/includes/header.php) */
.site-header,
.site-header .main-nav,
.site-header .nav-ul,
.site-header .nav-ul li,
.site-header .nav-ul li a,
.site-header .header-link-items,
.site-header .header-burger-icon,
.site-header .lang-switch {
    font-family: 'UTM Avo', sans-serif !important;
}

.site-header {
    background: #fee9d1;
    border-bottom: 1px solid #e6d3bf;
}

.site-header.header-scrolled {
    background: rgba(254, 233, 209, 0.95);
    box-shadow: 0 4px 16px rgba(166, 124, 82, 0.2);
}

.header-inner {
    max-width: min(1720px, 96vw);
    margin: 0 auto;
    padding: clamp(1.25rem, 4vw, 3rem) clamp(0.75rem, 3vw, 1.5rem);
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
}

.header-center {
    position: relative;
    text-align: center;
    width: 100%;
}

.header-mobile-actions {
    display: none;
}

.logo-block {
    margin-bottom: 2rem;
}

.logo-icon {
    height: 92px;
    animation: bounceIn 0.9s ease-out 0.2s both;
    filter: drop-shadow(0 2px 4px rgba(166, 124, 82, 0.2));
}

/* .logo-text {
    font-family: 'SVN-Bon Voyage';
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    color: #a67c52;
    letter-spacing: 2px;
    animation: slideInFromTop 0.9s ease-out 0.35s both;
} */

.brand {
    color: #a67c52;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
}

.brand img {
    height: 56px;
    width: auto;
    display: block;
}

.main-nav {
    position: relative;
    width: 100%;
    margin-top: 0.6rem;
}

.nav-ul {
    list-style: none;
    padding: 0;
    margin: 0.4rem 0 0;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: clamp(18px, 2vw, 36px);
}

.nav-ul li a {
    text-decoration: none;
    font-size: clamp(1.2rem, 1.45vw, 1.75rem);
    color: #a67c52;
    font-family: 'UTM Avo', sans-serif !important;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    padding: 6px clamp(6px, 0.5vw, 12px);
    transition: all 0.3s ease;
    letter-spacing: 0.45px;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-ul li a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 2px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #a67c52, #8b6952, #a67c52);
    transform: translateX(-50%);
    transition: width 0.35s ease;
}

.nav-ul li a:hover::after {
    width: 70%;
}

.header-burger-icon {
    display: none;
    color: #a67c52;
    font-size: 1.6rem;
    position: absolute;
    right: 1rem;
    top: 1rem;
    z-index: 20;
    cursor: pointer;
    padding: 0.35rem;
    border: none;
    background: transparent;
    line-height: 1;
}

.header-tools {
    flex-shrink: 0;
    align-self: flex-start;
    padding-top: 0.5rem;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem;
    text-decoration: none;
    border-radius: 6px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lang-switch:hover {
    transform: scale(1.08);
}

.lang-switch .lang-flag {
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    object-fit: contain;
    box-shadow: 0 1px 4px rgba(166, 124, 82, 0.35);
    border: 1px solid rgba(166, 124, 82, 0.25);
    background: #fff;
}


.main-content {
    min-height: 60vh;
}

.page-shell {
    padding-top: 1.5rem;
    padding-bottom: 2rem;
}

.hero-banner {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.hero-banner img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    text-align: center;
    color: #fff;
    padding: 1rem;
}

.section-title {
    font-size: 1.9rem;
    margin: 2rem 0 1rem;
}

.events-grid,
.news-grid,
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.2rem;
}

.event-card,
.news-card,
.promo-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #efdfcf;
    overflow: hidden;
}

.event-card-body,
.news-card-body,
.promo-card-body {
    padding: 1rem;
}

.event-card h3,
.news-card h3,
.promo-card h3 {
    font-size: 1.15rem;
    margin: 0 0 0.5rem;
}

.meta {
    color: #666;
    font-size: 0.92rem;
}

.btn-main {
    display: inline-block;
    margin-top: 0.6rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    text-decoration: none;
    background: #b17850;
    color: #fff;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-box,
.form-box {
    background: #fff;
    border: 1px solid #efdfcf;
    border-radius: 14px;
    padding: 1.1rem;
}

.contact-hero {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.3rem;
}

.contact-hero img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    filter: brightness(0.55);
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    text-align: center;
    color: #fff;
    padding: 1rem;
}

.contact-hero-overlay h1 {
    margin: 0;
    font-family: 'SVN-Bon Voyage';
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.contact-hero-overlay p {
    margin: 0.55rem 0 0;
    font-size: 1rem;
    opacity: 0.95;
}

.contact-page {
    margin-bottom: 2rem;
}

.contact-box h3,
.form-box h3 {
    font-size: 2rem;
    margin: 0 0 1rem;
    font-family: 'SVN-Bon Voyage';
    color: #8b6952;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.08rem;
    padding: 0.55rem 0;
    color: #2f2f2f;
}

.contact-item i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #a67c52;
    background: rgba(166, 124, 82, 0.12);
}

/* Contact page - match MVC/eventphp style */
.eventphp-contact {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Contact Hero Section - match eventphp */
.contact-hero {
    background: linear-gradient(rgba(166, 124, 82, 0.8), rgba(139, 100, 66, 0.8)),
        url('/images/about-us-upper-banner-img.jpg') center/cover no-repeat;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-align: center;
    margin-bottom: 0;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'SVN-Bon Voyage';
}

.contact-hero p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    font-family: 'UTM Avo';
}

.eventphp-contact .contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.eventphp-contact .contact-box,
.eventphp-contact .form-box {
    border-radius: 15px;
    background: #fdf9f5;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.eventphp-contact .contact-box h3,
.eventphp-contact .form-box h3 {
    margin: 0 0 30px;
    font-family: 'SVN-Bon Voyage';
    font-size: 2rem;
    color: #a38260;
    font-weight: 600;
}

.contact-item-row {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 1.05rem;
    font-family: 'UTM Avo';
    color: #666;
    padding: 0 0 0 1rem;
    margin-bottom: 0.3rem;
    border-bottom: 1px solid #f0f0f0;
}

.contact-item-row i {
    width: 50px;
    height: 26px;
    text-align: center;
    font-size: 1.2rem;
    color: #000;
    margin-right: 12px;
    flex-shrink: 0;
    padding-top: 2px;
}

.contact-map-wrap {
    margin: 30px 0;
    border-radius: 14px;
    overflow: hidden;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-map-wrap iframe {
    width: 100%;
    height: 250px;
    border: 0;
    display: block;
}

.contact-social {
    margin-top: 1.4rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.contact-social a {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    border: 2px solid #111;
    color: #111;
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.contact-social a:hover {
    background: #111;
    color: #fff;
}

.eventphp-contact .contact-form .input,
.eventphp-contact .contact-form input,
.eventphp-contact .contact-form textarea,
.eventphp-contact .contact-form .form-control {
    border-radius: 8px;
    font-size: 1.05rem;
}

.eventphp-contact .contact-form label {
    font-size: 1.05rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px;
}

.eventphp-contact .contact-form textarea {
    min-height: 120px;
    color: #333; 
    resize: vertical;
}

.eventphp-contact .contact-form .input {
    margin-bottom: 0px;
}

.contact-submit-btn {
    width: 100%;
    margin-top: 0.2rem;
    border-radius: 8px;
    padding: 15px 30px;
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    line-height: 1;
    font-size: 1.1rem;
    font-family: 'SVN-Bon Voyage';
    letter-spacing: 1px;
    background: #a38260;
    border: none;
    text-transform: uppercase;
}

.contact-submit-btn:hover {
    background: #8b6442;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(166, 124, 82, 0.4);
}

.contact-submit-btn i {
    margin-right: 0;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    transform: translateY(-1px);
}

/* Public footer — UTM Avo (aligned with legacy httpdocs includes/footer.php) */
.site-footer.twr-footer {
    position: relative;
    margin: 0;
    padding: 0;
    font-family: 'UTM Avo', sans-serif !important;
    color: #000;
    background-color: #fbf3ea;
    border-top: none;
}

.twr-footer .footer-main {
    background-color: #fbf3ea;
    padding: 50px 3% 0;
    box-shadow: 0 -5px 15px rgba(255, 255, 255, 0.7);
}

.twr-footer .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
}

.twr-footer .footer-section {
    flex: 1;
    min-width: 260px;
}

.twr-footer .footer-section-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.twr-footer .footer-section-brand .footer-logo {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.twr-footer .footer-logo img {
    height: 70px;
    width: auto;
    filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.3));
}

.twr-footer .footer-heading {
    margin: 0.67em 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
    font-family: 'UTM Avo', sans-serif !important;
}

.twr-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.twr-footer .footer-links li {
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    color: #000;
    font-size: 1.2rem;
    font-family: 'UTM Avo', sans-serif !important;
}

.twr-footer .footer-links a,
.twr-footer .footer-link-items {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease, margin-left 0.3s ease;
    font-size: 1.2rem;
    font-family: 'UTM Avo', sans-serif !important;
}

.twr-footer .footer-links a:hover {
    color: #1f2a44;
    margin-left: 8px;
}

.twr-footer .footer-links i {
    margin-right: 12px;
    color: #000;
    font-size: 1rem;
    min-width: 20px;
    margin-top: 4px;
}

/* Keep FA icons when parent uses UTM Avo */
.twr-footer .fas,
.twr-footer .far {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900;
}

.twr-footer .fab {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400;
}

.twr-footer .footer-contact-line {
    align-items: flex-start;
}

.twr-footer .social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.35rem;
    width: 100%;
    margin: 0 auto;
}

.twr-footer .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #b27b53;
    transition: color 0.3s ease, transform 0.3s ease;
    font-size: 1.85rem;
    line-height: 1;
    min-width: 2.35rem;
    min-height: 2.35rem;
}

.twr-footer .social-icons a:hover {
    color: #000;
    transform: scale(1.1);
}

.twr-footer .footer-bottom-copy {
    text-align: center;
    font-size: 1.2rem;
    padding: 1.5rem 1rem 2rem;
    margin: 0;
    color: #000;
    font-family: 'UTM Avo', sans-serif !important;
}

.twr-footer .footer-bottom-copy p {
    margin: 0;
    font-family: 'UTM Avo', sans-serif !important;
}

.twr-footer .nowrap {
    white-space: nowrap;
}

/* Policy page — layout in ticket-terms.css */

@media (min-width: 901px) {
    .header-center {
        container-type: inline-size;
        container-name: site-header-nav;
    }

    .nav-ul {
        width: 100%;
        justify-content: space-evenly;
        gap: clamp(16px, 2.4cqi, 44px);
        padding-inline: clamp(0.75rem, 2.5cqi, 2.5rem);
    }

    .nav-ul li a {
        font-size: clamp(1.25rem, 2.1cqi, 2rem);
        padding: 6px clamp(4px, 0.55cqi, 14px);
        letter-spacing: clamp(0.25px, 0.06cqi, 0.55px);
    }
}

@supports not (width: 1cqi) {
    @media (min-width: 901px) {
        .nav-ul {
            width: 100%;
            justify-content: space-evenly;
            gap: clamp(16px, 2.2vw, 44px);
            padding-inline: clamp(0.75rem, 3vw, 2.5rem);
        }

        .nav-ul li a {
            font-size: clamp(1.25rem, 1rem + 0.7vw, 2rem);
            padding: 6px clamp(6px, 0.55vw, 14px);
        }
    }
}

@media (max-width: 900px) {
    .header-inner {
        padding: 1.25rem 1rem 1rem;
        align-items: flex-start;
        position: relative;
    }

    .header-center {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        column-gap: 0.5rem;
        align-items: start;
        box-sizing: border-box;
        padding-right: 0;
    }

    .logo-block {
        grid-column: 1 / -1;
        grid-row: 1;
        margin-bottom: 0.65rem;
        padding-right: 3.25rem;
        box-sizing: border-box;
    }

    .logo-icon {
        height: auto;
        max-height: clamp(64px, 18vw, 88px);
        width: auto;
        max-width: min(100%, 420px);
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .header-tools {
        display: none;
    }

    .header-mobile-actions {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        gap: 0.35rem;
        grid-column: 2;
        grid-row: 1;
        position: static;
        justify-self: end;
        align-self: start;
        z-index: 25;
        flex-shrink: 0;
    }

    .main-nav {
        grid-column: 1 / -1;
        grid-row: 2;
        margin-top: 0;
        width: 100%;
    }

    .header-mobile-actions .header-burger-icon {
        position: static;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding: 0.35rem;
    }

    .header-mobile-actions .lang-switch {
        flex-shrink: 0;
    }

    .contact-layout,
    .twr-footer .footer-content {
        flex-direction: column;
    }

    .twr-footer .footer-section {
        margin-bottom: 20px;
    }

    .twr-footer .footer-section-brand {
        align-items: center;
    }

    .twr-footer .footer-section-brand .footer-logo {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .twr-footer .social-icons {
        justify-content: center;
        gap: clamp(1rem, 4vw, 1.35rem);
    }

    .twr-footer .social-icons a {
        font-size: clamp(1.65rem, 6vw, 2rem);
    }

    .twr-footer .footer-links li {
        font-size: 1rem;
    }

    .twr-footer .footer-links a {
        font-size: 1rem;
    }

    .eventphp-contact .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .eventphp-contact .contact-box,
    .eventphp-contact .form-box {
        padding: 30px 20px;
    }

    .contact-item-row,
    .eventphp-contact .contact-form .input,
    .eventphp-contact .contact-form input,
    .eventphp-contact .contact-form textarea,
    .eventphp-contact .contact-form .form-control,
    .eventphp-contact .contact-form label,
    .contact-submit-btn {
        font-size: 1.05rem;
    }

    .contact-hero img {
        height: 220px;
    }

    .contact-box,
    .form-box {
        padding: 1rem;
    }

    .nav-ul {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 15;
        background: rgba(255, 255, 255, 0.97);
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        box-shadow: 0 8px 24px rgba(166, 124, 82, 0.15);
        display: block;
        max-height: 0;
        overflow: hidden;
        padding: 0 14px;
        transition: max-height 0.35s ease, padding 0.35s ease;
    }
    .nav-ul.show {
        max-height: min(75vh, 420px);
        overflow-y: auto;
        padding: 12px 14px 16px;
    }
    .nav-ul li {
        margin: 8px 0;
    }
    .nav-ul li a {
        display: block;
        text-align: center;
        font-size: clamp(1.05rem, 4vw, 1.2rem);
        padding: 8px 10px;
    }

    .page-shell {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

@media (max-width: 480px) {
    .header-inner {
        padding: 1rem 0.75rem 0.85rem;
    }

    .logo-block {
        padding-right: 3rem;
    }

    .logo-icon {
        max-height: clamp(58px, 17vw, 76px);
    }

    .header-mobile-actions {
        position: static;
        gap: 0.35rem;
    }
}

/* Language switcher inside burger menu (mobile) */
.nav-lang-item--mobile {
    display: none;
}

@media (max-width: 900px) {
    .nav-lang-item--mobile {
        display: list-item;
        border-bottom: 1px solid rgba(166, 124, 82, 0.25);
        margin-bottom: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .nav-lang-switch {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        gap: 0.55rem;
        padding: 10px 12px !important;
    }

    .nav-lang-switch .lang-flag {
        width: 22px;
        height: 22px;
        border-radius: 4px;
        object-fit: contain;
        box-shadow: 0 1px 4px rgba(166, 124, 82, 0.25);
    }

    .nav-lang-switch span {
        font-size: inherit;
        font-weight: 600;
    }
}

@media (min-width: 901px) {
    .nav-lang-item--mobile {
        display: none !important;
    }
}

@keyframes slideInFromTop {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.9); }
    60% { opacity: 1; transform: scale(1.05); }
    100% { transform: scale(1); }
}



/* News pages */
.news-hero-eventphp {
    position: relative;
    height: 44vh;
    background: url('/images/home_banner_img_2.jpg') center/cover no-repeat;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.news-hero-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    padding: 1rem;
}

.news-hero-overlay h1 {
    margin: 0;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-family: 'SVN-Bon Voyage';
}

.news-listing { padding-bottom: 2rem; }

.news-list-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.news-item-card {
    display: grid;
    grid-template-columns: 360px 1fr;
    border: 1px solid #efdfcf;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
}

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

.news-item-content { padding: 1.1rem 1.2rem; }

.news-item-date {
    color: #666;
    font-size: 0.92rem;
    margin: 0 0 0.4rem;
}

.news-item-content h3 {
    margin: 0 0 0.65rem;
    font-family: 'SVN-Bon Voyage', 'SVN-BonVoyage-Regular', serif;
    font-size: clamp(1.45rem, 2.8vw, 1.85rem);
    font-weight: 400;
    line-height: 1.25;
    color: #1a1a1a;
    letter-spacing: 0.02em;
}

.news-item-content > p:not(.news-item-date) {
    font-size: clamp(0.88rem, 1.6vw, 0.98rem);
    line-height: 1.6;
    color: #555;
    margin: 0 0 1rem;
}

/* News Detail - white content panel on beige page */
.news-detail-container {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: clamp(1.25rem, 2.5vw, 2rem) clamp(1.5rem, 4vw, 3rem);
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(139, 105, 82, 0.1);
    box-sizing: border-box;
}

.news-back-section {
    margin-bottom: 2rem;
}

.news-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    color: #6c757d;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.news-back-btn:hover {
    background: #e9ecef;
    color: #495057;
    text-decoration: none;
}

.news-header {
    margin-bottom: 2.25rem; /* 1.5rem * 1.5 */
    padding-bottom: 1.5rem; /* 1rem * 1.5 */
    border-bottom: 1.5px solid #e9ecef; /* 1px * 1.5 */
}

.news-title {
    font-size: 3.3rem; /* 2.2rem * 1.5 */
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem; /* 1rem * 1.5 */
    line-height: 1.3;
}

.news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2.25rem; /* 1.5rem * 1.5 */
    margin-bottom: 1.5rem; /* 1rem * 1.5 */
    font-size: 1.35rem; /* 0.9rem * 1.5 */
    color: #6c757d;
}

.news-meta i {
    margin-right: 0.45rem; /* 0.3rem * 1.5 */
}

.news-summary-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-left: 4px solid #007bff;
    border-radius: 0 8px 8px 0;
}

.news-summary {
    font-size: 1.1rem;
    color: #495057;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

.news-featured-image {
    margin-bottom: 2.5rem;
    text-align: center;
}

.news-featured-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.image-caption {
    margin-top: 0.8rem;
    font-size: 0.85rem;
    color: #6c757d;
    font-style: italic;
    text-align: center;
}

.news-content {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 2.5rem;
}

.news-content p {
    margin-bottom: 1.2rem;
}

.news-content h2, .news-content h3 {
    margin: 2rem 0 1rem;
    color: #2c3e50;
}

.news-footer {
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.news-source, .news-tags {
    font-size: 0.9rem;
    color: #6c757d;
}

.news-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.news-tags .tag {
    background: #f8f9fa;
    color: #495057;
    padding: 0.25rem 0.6rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid #dee2e6;
}

/* News detail — desktop typography (base ~16px) */
@media (min-width: 769px) {
    .news-detail-container {
        font-size: 16px;
    }

    .news-back-btn {
        font-size: 16px;
    }

    .news-meta {
        font-size: 16px;
    }

    .news-summary {
        font-size: 18px;
    }

    .news-content {
        font-size: 16px;
        line-height: 1.75;
    }

    .news-content h2 {
        font-size: 24px;
    }

    .news-content h3 {
        font-size: 20px;
    }

    .news-source,
    .news-tags {
        font-size: 15px;
    }

    .news-tags .tag {
        font-size: 14px;
    }

    .image-caption {
        font-size: 14px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .news-detail-container {
        padding: 1rem clamp(0.85rem, 3.5vw, 1.25rem);
        box-sizing: border-box;
    }

    .news-title {
        font-size: clamp(1.35rem, 6.5vw, 1.85rem);
    }

    .news-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .news-summary-section {
        padding: 1rem 0.9rem;
    }

    .news-content {
        font-size: 1rem;
    }

    .news-footer {
        flex-direction: column;
    }
}

@media (max-width: 900px) {
    .news-item-card,
    .news-detail-grid { grid-template-columns: 1fr; }
    .news-item-thumb { max-height: 260px; overflow: hidden; }
}

/* ===============================
   SEAT MANAGEMENT STYLES
   =============================== */

.seat-management-stats .card {
    transition: transform 0.2s ease-in-out;
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.seat-management-stats .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.zone-color-preview {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    border: 1px solid #dee2e6;
    display: inline-block;
}

.seat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(40px, 1fr));
    gap: 2px;
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
}

.seat-item {
    width: 40px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    color: white;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.seat-item:hover {
    transform: scale(1.1);
    z-index: 10;
    position: relative;
}

.seat-item.available {
    background-color: #28a745;
}

.seat-item.inactive {
    background-color: #6c757d;
}

.seat-item.booked {
    background-color: #dc3545;
}

.hall-layout {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.zone-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.zone-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 10px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.admin-sidebar .nav-link.active {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border-radius: 8px;
    margin: 2px 0;
}

.admin-sidebar .nav-link:hover {
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 8px;
    margin: 2px 0;
}

.seat-management-breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 1rem;
}

.seat-management-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #6c757d;
}
