.patron-logo {
    opacity: 0.85;
    /* Adjust value as needed for desired transparency */
    transition: opacity 0.3s ease;
    /* Smooth transition on hover */
}

.patron-logo:hover {
    opacity: 1;
    /* Fully opaque on hover */
}


.title-font {
    font-family: 'TitleFont';
}


.subtitle-font {
    font-family: 'TitleFont';
    font-size: 1rem;
}


.about-section {
    
    padding: 2rem 0;
    /* ample vertical space inside */
    margin: 2rem 0;
    /* space outside to prevent crowding */
}



.marquee-container {
    width: 100%;
    overflow: hidden;
    background-color: black;
    margin: 2rem 0;
    position: relative;
    padding: 0.5rem 0;
}

.marquee-content {
    display: flex;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

.marquee-content.reverse {
    animation: marquee-reverse 20s linear infinite;
}

.marquee-item {
    font-family: 'TitleFont', sans-serif;
    color: transparent;
    -webkit-text-stroke: 1px var(--olive, #C2C63E);
    font-size: 2rem;
    text-transform: uppercase;
    padding: 0 1rem;
    flex-shrink: 0;
}


@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    
    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-reverse {
    0% {
        transform: translateX(-50%);
    }
    
    100% {
        transform: translateX(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .marquee-item {
        font-size: 1.5rem;
        padding: 0 0.75rem;
    }
}

@media (max-width: 480px) {
    .marquee-item {
        font-size: 1.2rem;
        padding: 0 0.5rem;
    }
}


.patron-text {
    font-size: 1.25rem;
    margin-top: 0.5rem;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
}

.patron-text:hover {
    color: var(--crimson);
    filter: brightness(0.8);
    text-decoration: underline;
    text-underline-offset: 4px;
    opacity: 0.85;
    transition: color 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
}


/* Theme section styling */
.theme-section {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    position: relative;
    color: white;
}


.theme-header {
    font-family: 'TitleFont', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--crimson);
    transition: color 0.6s ease, filter 0.6s ease, opacity 0.6s ease;
    
}

.theme-header:hover {
    transition: color 0.6s ease, filter 0.6s ease, opacity 0.6s ease;
    color: var(--crimson);
    opacity: 0.25;
}

.theme-section h4 {
    font-size: 1.5rem;
    color: var(--crimson);
    margin-bottom: 1rem;
    text-transform: uppercase;
    transition: color 0.6s ease, filter 0.6s ease, opacity 0.6s ease;
    font-family: "Roboto", serif !important;
    
}


.theme-section h4:hover {
    transition: color 0.6s ease, filter 0.6s ease, opacity 0.6s ease;
    color: var(--crimson);
    opacity: 0.25;
}

.theme-section p {
    font-size: 1.25rem;
    margin-top: 1em;
    color: var(--silver);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .theme-section {
        max-width: 90%;
        padding: 1.5rem;
    }
    
    .theme-header {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .theme-section {
        padding: 1rem;
    }
    
    .theme-header {
        font-size: 1.8rem;
    }
    
    .theme-section h4 {
        font-size: 1rem;
    }
}


.patron-title{
    opacity: 0.85;
    font-size: 2em;
    font-family: "Roboto", serif !important;
    
}

/* Header styling with adjusted spacing for Roboto font */
.header-container {
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.header-text-holder {
    margin: 3rem auto;
    max-width: 900px;
    position: relative;
    gap: 0;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

/* Main title on the left */
.header-left {
    position: relative;
    flex: 2.2; /* Further reduced to give even more space to right column */
    min-width: 300px;
    padding-right: 1rem;
}

.header-left .main-title {
    font-size: 5rem;
    font-weight: 700;
    line-height: 0.85;
    color: white;
    margin: 0 0 1.25rem 0;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.header-left p {
    color: var(--silver);
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    max-width: 600px;
}

/* Vertical divider between sections */
.header-divider {
    width: 2px;
    min-height: 320px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 2.5rem; /* Increased margin */
    display: block;
    flex-shrink: 0; /* Prevent divider from shrinking */
}

/* Right side text block - adjusted for Roboto font */
.header-right {
    position: relative;
    flex: 1.3; /* Increased flex ratio */
    min-width: 280px; /* Increased minimum width */
    display: flex;
    align-items: center;
    padding-left: 1rem;
}

.header-right .header-info {
    font-size: 2.5rem;
    line-height: 1.3;
    font-weight: 700;
    color: var(--olive);
    text-transform: uppercase;
    margin: 0;
    white-space: nowrap;
    font-family: 'Roboto', sans-serif; /* Explicitly set to Roboto */
    letter-spacing: 0.01em; /* Add slight letter spacing */
}

/* Extra large screens - BIGGER TEXT with balanced spacing */
@media (min-width: 1400px) {
    .header-text-holder {
        max-width: 1300px; /* Wider container on largest screens */
    }
    
    .header-left .main-title {
        font-size: 6rem;
    }
    
    .header-left p {
        font-size: 1.25rem;
        line-height: 1.4;
        max-width: 700px;
    }
    
    .header-divider {
        min-height: 360px;
        margin: 0 3.5rem; /* More spacing around divider */
    }
    
    .header-right .header-info {
        font-size: 3rem;
        line-height: 1.2;
    }
}

/* Large screens */
@media (min-width: 1200px) and (max-width: 1399px) {
    .header-text-holder {
        max-width: 1200px; /* Increased max-width */
    }
    
    .header-left .main-title {
        font-size: 5.5rem;
    }
    
    .header-left p {
        font-size: 1.15rem;
    }
    
    .header-right .header-info {
        font-size: 2.75rem;
    }
    
    .header-divider {
        margin: 0 3rem; /* More spacing around divider */
    }
}

/* Medium-large screens */
@media (min-width: 992px) and (max-width: 1199px) {
    .header-text-holder {
        max-width: 960px; /* Set an explicit max-width */
    }
    
    .header-left {
        flex: 1.8; /* Give more space to right side on medium-large screens */
    }
    
    .header-right {
        min-width: 300px; /* Ensure enough space for the text */
        flex: 1.2;
    }
    
    .header-divider {
        margin: 0 2rem; /* Adjusted divider margin */
    }
    
    .header-right .header-info {
        font-size: 2.5rem; /* Slightly reduced for better fit */
    }
}

/* Tablet and mobile adjustments */
@media (max-width: 991px) {
    .header-text-holder {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 0;
    }
    
    .header-left, .header-right {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .header-left .main-title {
        font-size: 3.5rem;
    }
    
    .header-right {
        justify-content: center;
    }
    
    .header-right .header-info {
        font-size: 1.8rem;
    }
    
    /* Convert to horizontal divider for all sizes below 992px */
    .header-divider {
        width: 50%;
        min-width: 200px;
        height: 2px;
        min-height: 0;
        margin: 2rem auto;
    }
    
    /* Remove any possible after pseudo-element */
    .header-left:after {
        display: none;
    }
}

/* Small screen adjustments */
@media (max-width: 576px) {
    .header-left .main-title {
        font-size: 3rem;
    }
    
    .header-right .header-info {
        font-size: 1.5rem;
    }
    
    /* Ensure divider visibility even on smallest screens */
    .header-divider {
        width: 70%;
    }
}

/* Center the overall header container */
.header-container {
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
}

/* Reset the header text holder to control exact positioning */
.header-text-holder {
    margin: 3rem 0;
    width: 100%; 
    max-width: 1200px;
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding: 0 15px; /* Consistent with Bootstrap container padding */
}

/* Left side adjustments */
.header-left {
    position: relative;
    flex: 1;
    min-width: 300px;
    max-width: 60%;
    padding-right: 2rem;
}

/* Maintain the divider position */
.header-divider {
    width: 2px;
    min-height: 320px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0;
    display: block;
    flex-shrink: 0;
}

/* Right side adjustments to align properly */
.header-right {
    position: relative;
    flex: 0 0 auto;
    min-width: 220px;
    max-width: 40%;
    display: flex;
    align-items: center;
    padding-left: 2rem;
}

/* Media queries for responsive behavior */
@media (min-width: 1400px) {
    .header-text-holder {
        max-width: 1300px;
    }
}

@media (max-width: 991px) {
    /* Make sure mobile layout stacks properly */
    .header-text-holder {
        flex-direction: column;
        align-items: center;
    }
    
    .header-left, .header-right {
        max-width: 100%;
        padding: 0;
    }
}



/* Responsive layout adjustments */
@media (min-width: 1400px) {
    .header-text-holder {
        max-width: 1400px;
    }
    
    .header-left .main-title {
        font-size: 6rem;
    }
    
    .header-right .header-info {
        font-size: 3rem;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .header-text-holder {
        max-width: 1100px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .header-text-holder {
        max-width: 960px;
    }
    
    .header-left {
        flex: 1.8;
    }
    
    .header-right {
        flex: 1.2;
    }
}

/* Tablet layout */
@media (min-width: 768px) and (max-width: 991px) {
    .header-text-holder {
        max-width: 720px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .header-left, .header-right {
        width: 100%;
        max-width: 100%;
        padding: 0;
        text-align: center;
    }
    
    .header-divider {
        width: 50%;
        min-width: 200px;
        height: 2px;
        min-height: 0;
        margin: 2rem auto;
    }
}

/* Tablet and mobile layout fix for the divider */
@media (max-width: 991px) {
    .header-text-holder {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .header-left, .header-right {
        width: 100%;
        max-width: 100%;
        padding: 0;
        text-align: center;
    }
    
    /* Fix for the divider becoming a block */
    .header-divider {
        width: 50%;
        height: 2px; /* Keep this very thin */
        min-height: 2px; /* Important: reset min-height to prevent block appearance */
        max-height: 2px; /* Add max-height to ensure it stays a line */
        margin: 2rem auto;
        background-color: rgba(255, 255, 255, 0.3);
    }
    
    .header-right {
        justify-content: center;
    }
}

/* Specific fix for exactly the breakpoint you're seeing issues at */
@media (max-width: 767px) {
    .header-divider {
        width: 70%;
        height: 2px;
        min-height: 2px;
        max-height: 2px;
        margin: 1.5rem auto;
    }
}