﻿:root
{
    --accent: #7B2D3B;
    --gold: #C8940E;
    --bg-card: #FAF8F5;
    --border-card: #EBE4DA;
    --muted: #7A7369;
}

.cont .media-body h2
{
    margin-top: 0;
}

[data-bs-theme='dark'] .page-hero
{
    background: linear-gradient(135deg, #1a0810 0%, #2d0f1a 100%);
}

.page-hero
{
    background: linear-gradient(135deg, #FAF4EF 0%, #F3E8DF 100%);
    padding: 30px 15px;
    text-align: center;
}

.hero-title
{
    font-family: 'Georgia', serif;
    font-size: 2.6em;
    color: var(--accent);
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

[data-bs-theme='dark'] .hero-title
{
    color: #ff8a94;
}

.hero-text
{
    max-width: 740px;
    margin: auto;
    font-size: 1.25em;
    line-height: 1.85;
}

.section-title
{
    text-align: center;
    color: var(--accent);
    padding-bottom: 14px;
    margin-bottom: 32px;
    position: relative;
}

[data-bs-theme='dark'] .section-title
{
    color: #ff8a94;
}

.section-title::after
{
    content: '';
    display: block;
    width: 50%;
    max-width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 14px auto 0;
}

.info-card, .event-card, .live-card
{
    border-radius: 8px;
    padding: 10px 32px;
    margin-bottom: 16px;
    background-color: var(--bg-card);
    border-left: 4px solid var(--accent);
}

[data-bs-theme='dark'] .info-card,
[data-bs-theme='dark'] .event-card,
[data-bs-theme='dark'] .live-card
{
    background-color: #2a231e;
    border-left-color: #ff8a94;
    color: #f0e6dd;
}

.event-date, .live-badge
{
    display: inline-block;
    color: #fff;
    border-radius: 5px;
    padding: 6px 14px;
    font-size: .82em;
    margin-bottom: 18px;
}

.event-date
{
    background-color: var(--gold);
}

.live-badge
{
    background-color: #8B0000;
}

.btn-gold
{
    display: inline-block;
    background-color: var(--gold);
    color: #fff !important;
    border-radius: 5px;
    padding: 10px 26px;
    text-decoration: none !important;
    font-weight: bold;
    margin-top: 18px;
}

.btn-gold:hover
{
    opacity: .9;
    color: #fff !important;
}

.pricing-row
{
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 18px;
}

.price-item
{
    text-align: center;
    border-radius: 6px;
    padding: 20px 34px;
    min-width: 220px;
    align-content: center;
    border: 1px solid var(--accent);
}

[data-bs-theme='dark'] .price-item
{
    background-color: #3a322b !important;
}

.price-amount
{
    font-weight: bold;
    font-size: 1.3em;
    color: var(--accent);
    display: block;
    margin-bottom: 6px;
}

[data-bs-theme='dark'] .price-amount
{
    color: #ff8a94;
}

.event-list
{
    padding-left: 24px;
}

.event-list li
{
    margin-bottom: 8px;
    line-height: 1.7;
}

.content-divider
{
    border: none;
    height: 1px;
    background-color: var(--border-card);
    margin: 36px 0;
}

[data-bs-theme='dark'] .content-divider
{
    background-color: #4a423b;
}

/* For tablets phones */
@media only screen and (max-width: 767px)
{
    .cont .media-left
    {
        display: flex;
        justify-content: center;
    }

    .cont .media-body h2
    {
        margin-top: 10px;
    }

    .hero-title
    {
        font-size: 2em !important;
    }

    .info-card, .event-card, .live-card
    {
        padding: 24px 18px;
        margin-bottom: 12px;
    }

    .price-item
    {
        min-width: unset;
        width: 100%;
        margin-bottom: 16px;
    }
}