/* ============================================
   MONTHLY MEETINGS PAGE STYLES
   Reuses classes from upcoming-events.css
   ============================================ */

/* === PAGE HEADER === */
.page-header {
    margin-bottom: 35px;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e2a3a;
    margin: 0 0 10px 0;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin: 0;
}

/* === NEXT MEETING HIGHLIGHT === */
.next-meeting-highlight {
    margin-bottom: 40px;
}

.next-meeting-highlight .card-top {
    height: 6px;
    background: linear-gradient(90deg, rgba(201, 162, 77, .95), rgba(201, 162, 77, .5));
}

.highlight-content {
    padding: 35px;
}

.highlight-label {
    margin-bottom: 20px;
}

.highlight-main {
    display: flex;
    gap: 30px;
    align-items: start;
}

/* Large date box for next meeting */
.event-date-box.large {
    padding: 20px 25px;
    min-width: 110px;
}

.event-date-box.large .month {
    font-size: 1rem;
}

.event-date-box.large .day {
    font-size: 3.5rem;
    margin: 8px 0;
}

.event-date-box.large .year {
    font-size: 1rem;
}

.highlight-info {
    flex: 1;
}

.highlight-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e2a3a;
    margin: 0 0 20px 0;
}

.event-meta.large {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.event-meta.large .meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: #4a5568;
}

.event-meta .meta-item .icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.event-meta .meta-item .text {
    flex: 1;
}

.highlight-description {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin: 0 0 25px 0;
}

/* === MEETING INFO SECTION === */
.meeting-info-section {
    margin: 40px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.info-card .card-content {
    padding: 30px;
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.8;
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e2a3a;
    margin: 0 0 15px 0;
}

.info-card p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

.info-card p + p {
    margin-top: 15px;
}

/* Format List */
.format-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.format-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 1.05rem;
    color: #4a5568;
}

.format-list li:last-child {
    border-bottom: none;
}

.format-list strong {
    color: #c9a24d;
    font-weight: 700;
}

/* Schedule Specific */
.schedule-main {
    font-size: 1.2rem;
    font-weight: 700;
    color: #c9a24d;
    margin: 0 0 12px 0 !important;
}

.schedule-note {
    font-size: 0.95rem;
    color: #64748b;
}

/* === FIRST VISITOR CTA === */
.first-visitor-cta {
    margin: 40px 0;
    background: linear-gradient(135deg, #fff9e6, #ffffff);
    border: 2px solid #c9a24d;
}

.first-visitor-cta .card-top {
    background: linear-gradient(90deg, rgba(201, 162, 77, .95), rgba(201, 162, 77, .5));
}

.cta-content {
    padding: 40px;
    text-align: center;
}

.cta-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e2a3a;
    margin: 0 0 15px 0;
}

.cta-content p {
    font-size: 1.15rem;
    color: #4a5568;
    margin: 0 0 25px 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === UPCOMING MEETINGS SECTION === */
.upcoming-meetings-section {
    margin: 50px 0;
}

.upcoming-meetings-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e2a3a;
    margin: 0 0 30px 0;
    padding-bottom: 12px;
    border-bottom: 3px solid #c9a24d;
}

.meetings-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.meeting-card {
    /* Inherits all .event-card styles */
}

.meeting-card .card-header {
    padding: 25px 30px 15px;
}

.meeting-card .event-body {
    padding: 0 30px 20px;
}

.meeting-card .event-actions {
    padding: 0 30px 30px;
}

/* === NO MEETINGS STATE === */
.no-meetings-state .card-top {
    height: 4px;
}

.no-events-content {
    padding: 60px 40px;
    text-align: center;
}

.no-events-content .icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.no-events-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e2a3a;
    margin: 0 0 15px 0;
}

.no-events-content p {
    font-size: 1.15rem;
    color: #64748b;
    margin: 0 0 25px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* === LOCATIONS SECTION === */
.locations-section {
    margin: 50px 0;
}

.locations-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e2a3a;
    margin: 0 0 30px 0;
    padding-bottom: 12px;
    border-bottom: 3px solid #c9a24d;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.location-card .card-content {
    padding: 30px;
}

.location-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1e2a3a;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.location-details {
    margin-bottom: 25px;
}

.location-details p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.location-details .address {
    font-size: 1.05rem;
}

.location-details strong {
    color: #1e2a3a;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.location-actions {
    display: flex;
    gap: 12px;
}

/* === NEWSLETTER CTA === */
.newsletter-cta {
    margin: 40px 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border: 1px solid #e2e8f0;
}

/* === RESPONSIVE STYLES === */

/* Tablet (768px - 1023px) */
@media screen and (max-width: 1023px) {
    .highlight-main {
        gap: 25px;
    }
    
    .event-date-box.large {
        padding: 18px 22px;
        min-width: 100px;
    }
    
    .event-date-box.large .day {
        font-size: 3rem;
    }
    
    .highlight-info h2 {
        font-size: 1.8rem;
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
}

/* Tablet Portrait (600px - 767px) */
@media screen and (max-width: 767px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .highlight-content {
        padding: 30px 25px;
    }
    
    .highlight-main {
        flex-direction: column;
        gap: 20px;
    }
    
    .event-date-box.large {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }
    
    .event-date-box.large time {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }
    
    .event-date-box.large .day {
        font-size: 2.5rem;
        margin: 0;
    }
    
    .highlight-info h2 {
        font-size: 1.6rem;
    }
    
    .event-meta.large .meta-item {
        font-size: 1rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .meeting-card .card-header {
        padding: 22px 25px 12px;
    }
    
    .meeting-card .event-body {
        padding: 0 25px 18px;
    }
    
    .meeting-card .event-actions {
        padding: 0 25px 25px;
    }
}

/* Mobile (< 600px) */
@media screen and (max-width: 599px) {
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .highlight-content {
        padding: 25px 20px;
    }
    
    .highlight-info h2 {
        font-size: 1.4rem;
    }
    
    .event-meta.large {
        gap: 8px;
    }
    
    .event-meta.large .meta-item {
        font-size: 0.95rem;
    }
    
    .highlight-description {
        font-size: 1rem;
    }
    
    .event-actions {
        flex-direction: column;
    }
    
    .event-actions .btn {
        width: 100%;
    }
    
    .info-card .card-content {
        padding: 25px;
    }
    
    .info-icon {
        font-size: 2.5rem;
    }
    
    .info-card h3 {
        font-size: 1.3rem;
    }
    
    .info-card p {
        font-size: 1rem;
    }
    
    .cta-content {
        padding: 30px 25px;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1.05rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .location-card .card-content {
        padding: 25px;
    }
    
    .location-card h3 {
        font-size: 1.4rem;
    }
    
    .location-actions {
        flex-direction: column;
    }
    
    .location-actions .btn {
        width: 100%;
    }
}

/* Mobile Small (< 480px) */
@media screen and (max-width: 479px) {
    .highlight-content {
        padding: 20px 18px;
    }
    
    .event-date-box.large {
        padding: 15px 20px;
    }
    
    .event-date-box.large .month {
        font-size: 0.9rem;
    }
    
    .event-date-box.large .day {
        font-size: 2.2rem;
    }
    
    .event-date-box.large .year {
        font-size: 0.9rem;
    }
    
    .upcoming-meetings-section h2,
    .locations-section h2 {
        font-size: 1.6rem;
    }
}

/* === PRINT STYLES === */
@media print {
    .sub-navigation,
    .event-actions,
    .cta-buttons,
    .first-visitor-cta,
    .newsletter-cta {
        display: none;
    }
    
    .card {
        page-break-inside: avoid;
        border: 1px solid #000;
        box-shadow: none;
    }
    
    .next-meeting-highlight {
        border: 2px solid #000;
    }
}