﻿/* Event subheader styling with light blue gradient */
.event-subheader {
    background: linear-gradient(180deg, #e6f0fa 0%, #f0f8ff 100%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    transition: transform 0.2s ease-in-out;
    z-index: 1000;
}

    .event-subheader.sticky-top {
        position: sticky;
        top: 0;
    }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Event title and subline */
.event-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    max-width: 100%;
}

.event-subline {
    font-size: 0.875rem;
    color: #6b7280; /* Gray for better contrast on light blue */
    line-height: 1.3;
}

/* Buttons */
.btn-back, .btn-outline-secondary {
    border-radius: 9999px; /* Fully rounded for modern look */
    padding: 6px 12px;
    font-size: 0.875rem;
    transition: background-color 0.2s, color 0.2s, transform 0.1s;
}

.btn-back {
    background-color: #3b82f6; /* Light blue to match theme */
    color: #fff;
    border: none;
}

    .btn-back:hover, .btn-back:focus {
        background-color: #2563eb; /* Darker blue on hover */
        transform: translateY(-1px);
    }

.btn-outline-secondary {
    border: 1px solid #6b7280;
    color: #6b7280;
    background-color: transparent;
}

    .btn-outline-secondary:hover, .btn-outline-secondary:focus {
        background-color: #6b7280;
        color: #fff;
        transform: translateY(-1px);
    }

/* Breadcrumbs */
.breadcrumb-nav {
    font-size: 0.875rem;
}

.breadcrumb-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

    .breadcrumb-item.active {
        color: #1a1a1a;
        font-weight: 500;
    }

.pill-link {
    color: #3b82f6; /* Blue to match theme */
    text-decoration: none;
    padding: 2px 8px;
    border-radius: 12px;
    background-color: #e6f0fa; /* Light blue background for pills */
    transition: background-color 0.2s, color 0.2s;
}

    .pill-link:hover, .pill-link:focus {
        background-color: #3b82f6;
        color: #fff;
    }

/* Responsive adjustments */
@media (max-width: 576px) {
    .event-title {
        font-size: 1rem;
    }

    .event-subline {
        font-size: 0.75rem;
    }

    .btn-back, .btn-outline-secondary {
        padding: 4px 8px;
    }

        .btn-back span, .btn-outline-secondary span {
            display: none; /* Hide text on small screens */
        }

    .breadcrumb-nav {
        font-size: 0.75rem;
    }
}

@media (min-width: 768px) {
    .event-title {
        font-size: 1.5rem;
    }

    .event-subline {
        font-size: 1rem;
    }
}
