/* ================================================
   NEWS PAGE STYLESHEET
   ================================================ */

/* Import color variables from main stylesheet */
:root {
    --mahogany: #4a2c2a;
    --cream: #fdf5e6;
    --gold: #d4af37;
}
/* Target the links in the desktop navigation */
.desktop-nav ul li a {
    color: var(--mahogany);
    text-shadow: none;
}



/* ================================================
   PAGE CONTAINER
   ================================================ */

.news-page-container {
    background-color: var(--cream);
    padding-top: 100px;
}

/* ================================================
   HEADER & BREADCRUMBS
   ================================================ */

.news-header {
    padding: 60px 0 40px;
    text-align: left;
    border-bottom: 1px solid rgba(74, 44, 42, 0.1);
}

.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.breadcrumb a {
    color: var(--mahogany);
    text-decoration: none;
}

.news-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--mahogany);
    margin-bottom: 15px;
}

.news-meta {
    color: #888;
    font-size: 0.9rem;
    margin-top: 10px;
    padding-bottom: 20px;
}

/* ================================================
   ARTICLE LAYOUT & CONTENT
   ================================================ */

.news-body {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    padding: 60px 20px;
}

.featured-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.article-content h2 {
    font-family: 'Playfair Display', serif;
    color: var(--mahogany);
    margin: 40px 0 20px;
}

.intro-text {
    margin-bottom: 40px;
}

.intro-text p {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 15px;
}

blockquote {
    border-left: 4px solid var(--gold);
    padding-left: 20px;
    font-style: italic;
    font-size: 1.3rem;
    margin: 40px 0;
    color: var(--mahogany);
}
/* ================================================
    EVENT BOX STYLING (Moved from Inline)
   ================================================ */

.event-info-box {
    background: var(--mahogany, #4a2c2a);
    color: #fff;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    border: 1px solid var(--gold, #d4af37);
    line-height: 1.8;
}

.event-info-box i {
    color: var(--gold, #d4af37);
    margin-right: 10px;
}
.event-info-box {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Side-by-side on desktop */
    gap: 30px;
    background: var(--mahogany, #4a2c2a);
    color: #fff;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    border: 1px solid var(--gold, #d4af37);
    align-items: center;
}

.map-embed {
    width: 100%;
    line-height: 0; /* Removes extra spacing under iframe */
}

/* Responsive Stack for Mobile */
@media (max-width: 768px) {
    .event-info-box {
        grid-template-columns: 1fr;
    }
}

/* Container to center the button and subtext */
.ticket-cta-container {
    display: flex;
    flex-direction: column; /* Stacks items vertically */
    align-items: center;    /* Centers items horizontally */
    justify-content: center;
    text-align: center;
    margin: 50px 0;         /* Adds space above and below the whole section */
    width: 100%;
}

/* Mahogany styling for the button */
.news-cta {
    color: var(--mahogany);
    border-color: var(--mahogany) !important; /* !important ensures it overrides index.css */
    background-color: transparent;
    margin-bottom: 15px;    /* Adds space between button and subtext */
}

.news-cta:hover {
    background-color: var(--mahogany);
    color: var(--gold); 
    transform: scale(1.05);
}

/* Ensure the subtext is centered and styled */
.ticket-subtext {
    font-size: 0.9rem;
    color: var(--mahogany);
    opacity: 0.8;
    margin: 0;
    font-family: "Crimson Text", serif;
}
/* ================================================
   TITLE IMAGE
   ================================================ */

.title-sub-image {
    width: 100%;
    margin: 20px 0;
    overflow: hidden;
    border-radius: 4px;
}

.header-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    border-bottom: 3px solid var(--gold);
}

.about-cafe-section {
    margin-top: 40px;
    line-height: 1.8;
    h2{
        text-align: center;
    }
}

.cafe-portrait-wrapper {
    float: right;            /* This pushes the image to the right */
    width: 300px;            /* Control how much horizontal space the image takes */
    margin: 0 0 20px 30px;   /* Top, Right, Bottom, Left margin (30px buffer for text) */
}

.half-height-img {
    width: 100%;             /* Fills the 300px wrapper */
    height: 250px;           /* Your requested half-height */
    object-fit: contain;     /* Since this is a logo, 'contain' ensures no part is cut off */
    border: 3px solid var(--gold);
    border-radius: 15px;
    background-color: #fff;  /* Optional: gives a clean background if the logo is transparent */
    box-shadow: 10px 10px 0 var(--mahogany);
}
/* ================================================
   SIDEBAR
   ================================================ */

.sidebar-box {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid #eee;
}

.sidebar-box h4 {
    border-bottom: 2px solid var(--gold);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.sidebar-box ul {
    list-style: none;
    padding: 0;
}

.sidebar-box ul li {
    margin-bottom: 10px;
}

.sidebar-box a {
    color: var(--mahogany);
    text-decoration: none;
    transition: 0.3s;
}

.sidebar-box a:hover {
    color: var(--gold);
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

@media (max-width: 992px) {
    .news-body {
        grid-template-columns: 1fr;
    }

    .news-title {
        font-size: 2.2rem;
    }
}

