:root {
     --gold: #b6955c;
     --gold-light: #e9d18b;
     --gold-lighter: #f1e6c1;
     --gold-dark: #a38728;
     --gold-darker: #866a1a;
     --white: #ffffff;
     --off-white: #f9f7f2;
     --light-gray: #f0ede5;
     --mid-gray: #e0d9c5;
     --dark-gray: #333333;
     --cream: #f5f1e4;
     --font-serif-display: "DM Serif Text", serif;
     --font-sans-clean: "Assistant", sans-serif;
     --font-sans-elegant: "Montserrat", sans-serif;
}
/* Global styles */
 body {
     font-family: var(--font-sans-clean);
     line-height: 1.6;
     color: var(--dark-gray);
     background-color: var(--white);
}
 .btn-event-details.disabled {
     cursor: not-allowed;
     pointer-events: none;
     background-color: #CBB986 !important;
    /* Grays out the button */
     border-color: #CBB986 !important;
}
 .text-link {
     color: var(--gold-dark);
     text-decoration: none;
     position: relative;
     transition: color 0.3s ease;
     padding-bottom: 2px;
}
 .text-link::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     height: 1px;
     background: var(--gold);
     transform: scaleX(0);
     transform-origin: right;
     transition: transform 0.3s ease;
}
 .text-link:hover {
     color: var(--gold);
}
 .text-link:hover::after {
     transform: scaleX(1);
     transform-origin: left;
}
 .text-link:focus-visible {
     outline: 2px solid var(--gold);
     outline-offset: 4px;
     border-radius: 2px;
}
/* Hero section styling */
 .hero-section {
     background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 50%, var(--light-gray) 100%);
     min-height: 80vh;
     display: flex;
     align-items: center;
     color: var(--dark-gray);
     padding: 120px 0;
     position: relative;
}
 .logo-container {
     max-width: 700px;
     margin: 0 auto;
}
 .hero-logo {
     max-width: 100%;
     height: auto;
     margin: 0 auto;
}
 .hero-title {
     font-family: var(--font-serif-display);
     color: var(--gold-dark);
     font-weight: 400;
     font-size: 3.5rem;
     text-shadow: 2px 2px 4px rgba(212, 175, 55, 0.1);
}
 .hero-section .lead {
     font-family: var(--font-sans-elegant);
     font-weight: 500;
     color: var(--dark-gray);
}
 .video-container {
     position: relative;
     width: 100%;
     max-width: 800px;
     margin: 0 auto;
     aspect-ratio: 16 / 9;
     border-radius: 15px;
     overflow: hidden;
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
     background: transparent;
}
 .stats-section {
     background: var(--gold);
     padding: 60px 0;
     color: var(--white);
}
 .stat-item {
     text-align: center;
     padding: 20px;
}
 .stat-number {
     display: block;
     font-size: 3rem;
     font-weight: 700;
     font-family: var(--font-sans-elegant);
     color: var(--white);
     margin-bottom: 10px;
}
 .stat-text {
     display: block;
     font-size: 3rem;
     font-weight: 700;
     font-family: var(--font-sans-elegant);
     color: var(--white);
     margin-bottom: 10px;
}
 .stat-item span:last-child {
     font-family: var(--font-sans-clean);
     font-size: 0.9rem;
     text-transform: uppercase;
     letter-spacing: 1px;
}
 .churchill-portrait {
     background: linear-gradient(45deg, var(--white) 0%, var(--off-white) 100%);
     padding: 120px 0;
}
 .section-title {
     font-family: var(--font-serif-display);
     color: var(--gold-dark);
     font-weight: 400;
}
/* .churchill-silhouette-container {
     */
    /* display: flex;
     */
    /* justify-content: center;
     */
    /* align-items: center;
     */
    /* 
}
 */
 .churchill-image-full {
     width: 100%;
     height: 100%;
     min-height: 500px;
     border-radius: 15px;
     overflow: hidden;
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
     background: var(--white);
}
 .churchill-portrait-full {
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: center;
     filter: sepia(20%) contrast(1.1);
}
 .churchill-quote-section {
     padding: 40px;
     background: var(--white);
     border-radius: 15px;
     box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
     border-left: 5px solid var(--gold);
}
 .churchill-quote {
     margin-bottom: 30px;
}
 .quote-text {
     font-family: var(--font-serif-display);
     font-size: 1.5rem;
     line-height: 1.4;
     color: var(--dark-gray);
     font-style: italic;
     margin-bottom: 20px;
}
 .quote-attribution {
     text-align: right;
     font-family: var(--font-sans-elegant);
     color: var(--gold-dark);
     font-weight: 600;
}
 .churchill-context h4 {
     font-family: var(--font-serif-display);
     color: var(--gold-dark);
     margin-bottom: 15px;
}
 .churchill-context p {
     font-family: var(--font-sans-clean);
     line-height: 1.6;
     color: var(--dark-gray);
}
 .events-section {
     padding: 120px 0;
     background: var(--off-white);
}
 .event-card {
     background: var(--white);
     border: 2px solid var(--gold-light);
     border-radius: 15px;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
     transition: all 0.3s ease;
     height: 100%;
     min-height: 280px;
}
 .event-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
}
 .event-date {
     background: var(--gold);
     color: var(--white);
     padding: 15px 20px;
     text-align: center;
     font-weight: 600;
     font-family: var(--font-sans-elegant);
     font-size: 0.9rem;
     text-transform: uppercase;
     letter-spacing: 1px;
}
 .event-card-title {
     font-family: var(--font-serif-display);
     color: var(--gold-dark);
     font-weight: 400;
     font-size: 1.3rem;
     margin-bottom: 15px;
}
 .event-card .card-text {
     font-family: var(--font-sans-clean);
     line-height: 1.6;
     color: var(--dark-gray);
}
 .event-card .text-muted {
     color: var(--gold-dark) !important;
     font-weight: 500;
}
 .event-card .btn-event-details {
     background: var(--gold);
     color: var(--white);
     border: none;
     padding: 8px 16px;
     border-radius: 25px;
     font-size: 0.85rem;
     font-weight: 600;
     transition: all 0.3s ease;
}
 .event-card .btn-event-details:hover {
     background: var(--gold-dark);
     transform: scale(1.05);
}
 .event-card .btn-event-details {
     flex: 1;
}
 .event-card .btn-calendar {
     background: var(--white);
     color: var(--gold-dark);
     border: 2px solid var(--gold);
     padding: 8px 16px;
     border-radius: 25px;
     font-size: 0.85rem;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     justify-content: center;
     width: 45px;
     height: 38px;
}
 .event-card .btn-calendar:hover {
     background: var(--gold-light);
     color: var(--white);
     transform: scale(1.05);
}
 .event-card .btn-calendar:focus-visible {
     outline: 2px solid var(--gold-dark);
     outline-offset: 2px;
}
 .calendar-dropdown {
     position: absolute;
     z-index: 1000;
     background: var(--white);
     border-radius: 12px;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
     overflow: hidden;
     border: 1px solid var(--gold-light);
}
 .calendar-options {
     display: flex;
     flex-direction: column;
     padding: 8px;
}
 .calendar-options button {
     background: var(--white);
     border: none;
     padding: 10px 15px;
     text-align: left;
     color: var(--dark-gray);
     cursor: pointer;
     transition: all 0.2s ease;
     white-space: nowrap;
}
 .calendar-options button:hover {
     background: var(--gold-lighter);
     color: var(--gold-darker);
}
 .calendar-options button:first-child {
     border-radius: 8px 8px 0 0;
}
 .calendar-options button:last-child {
     border-radius: 0 0 8px 8px;
}
 .donation-section {
     background: linear-gradient(135deg, var(--gold-lighter) 0%, var(--gold-light) 100%);
     padding: 120px 0;
}
 .donation-title {
     font-family: var(--font-serif-display);
     color: var(--gold-darker);
     font-weight: 400;
}
 .donation-section .lead {
     font-family: var(--font-sans-clean);
     color: var(--dark-gray);
}
 .donation-section h5 {
     font-family: var(--font-sans-elegant);
     color: var(--gold-darker);
     font-weight: 600;
     margin-bottom: 15px;
}
 .donation-section p {
     font-family: var(--font-sans-clean);
     color: var(--dark-gray);
     line-height: 1.6;
}
 .donation-benefit {
     text-align: left;
     padding: 20px;
     background: var(--white);
     border-radius: 20px;
     border: none;
     box-shadow: 0 15px 35px rgba(212, 175, 55, 0.12);
     transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
     height: 100%;
     position: relative;
     overflow: hidden;
     display: flex;
     flex-direction: column;
}
 .donation-benefit::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 6px;
     height: 100%;
     background: linear-gradient(180deg, var(--gold) 0%, var(--gold-light) 100%);
     border-radius: 3px;
}
 .donation-benefit:hover {
     transform: translateY(-5px);
     box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}
 .donation-benefit h5 {
     font-family: var(--font-serif-display);
     color: var(--gold-darker);
     font-weight: 400;
     font-size: 1.75rem;
     margin: 0 0 20px;
     padding-left: 20px;
}
 .donation-benefit p {
     color: var(--dark-gray);
     line-height: 1.8;
     font-size: 1.1rem;
     margin-bottom: 0;
     padding-left: 20px;
     opacity: 0.9;
}
 .museum-showcase {
     background: var(--white);
     padding: 120px 0;
}
 .showcase-item {
     text-align: center;
}
 .showcase-image {
     border-radius: 15px;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
     transition: transform 0.3s ease;
     aspect-ratio: 16 / 9;
     object-fit: cover;
     width: 100%;
     border: 2px solid var(--gold-lighter);
}
 .showcase-image:hover {
     transform: scale(1.05);
}
 .showcase-item h5 {
     font-family: var(--font-sans-elegant);
     color: var(--gold-dark);
     font-weight: 600;
     margin-top: 20px;
}
 .showcase-item p {
     color: var(--dark-gray);
     line-height: 1.6;
}
/* Meet the Speaker Section */
 .speaker-section {
     background: linear-gradient(135deg, var(--off-white) 0%, var(--cream) 100%);
     padding: 120px 0;
}
 .speaker-image-container {
     border-radius: 15px;
     overflow: hidden;
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    /* removed height constraint to prevent whitespace below image */
}
 .speaker-image {
     width: 100%;
     height: auto;
     display: block;
     aspect-ratio: 3 / 4;
     object-fit: cover;
}
 .speaker-bio-section {
     padding: 40px;
     background: var(--white);
     border-radius: 15px;
     box-shadow: 0 10px 30px rgba(201, 169, 97, 0.15);
     border-left: 5px solid var(--gold);
}
 .speaker-name {
     font-family: var(--font-serif-display);
     color: var(--gold-dark);
     font-size: 2.2rem;
     font-weight: 400;
     margin-bottom: 5px;
}
 .speaker-title {
     font-family: var(--font-sans-elegant);
     color: var(--gold);
     font-size: 1.1rem;
     font-weight: 600;
     margin-bottom: 20px;
}
 .speaker-bio-content {
     font-family: var(--font-sans-clean);
     line-height: 1.8;
     color: var(--dark-gray);
}
 .speaker-bio-content p {
     margin-bottom: 15px;
     font-size: 1rem;
}
 .speaker-bio-content em {
     color: var(--gold-dark);
     font-style: italic;
}
/* Museum Info Section */
 .museum-info {
     background: linear-gradient(135deg, var(--off-white) 0%, var(--light-gray) 100%);
}
 .museum-title {
     font-family: "DM Serif Text", serif;
     color: var(--gold-dark);
     font-weight: 400;
}
 .museum-info .lead {
     color: var(--dark-gray);
}
 .info-card {
     background: var(--white);
     padding: 30px;
     border-radius: 15px;
     box-shadow: 0 10px 25px rgba(212, 175, 55, 0.12);
     height: 100%;
     border: 2px solid var(--gold-lighter);
     transition: all 0.3s ease;
}
 .info-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
}
 .visit-info-title {
     font-family: "Montserrat", sans-serif;
     color: var(--gold-dark);
     font-weight: 600;
     font-size: 1.2rem;
     margin-bottom: 15px;
}
 .btn-royal {
     background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%) !important;
     border: none !important;
     color: var(--white) !important;
     font-weight: 700;
     padding: 18px 40px;
     border-radius: 50px;
     text-transform: uppercase;
     letter-spacing: 1.5px;
     transition: all 0.4s ease;
     font-family: var(--font-sans-elegant);
     font-size: 0.95rem;
     box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4) !important;
     position: relative;
     overflow: hidden;
     text-decoration: none;
}
 .btn-royal::before {
     content: "";
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
     transition: left 0.6s;
}
 .btn-royal:hover::before {
     left: 100%;
}
 .btn-royal:hover {
     background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-darker) 100%) !important;
     color: var(--white) !important;
     transform: translateY(-3px);
     box-shadow: 0 15px 35px rgba(212, 175, 55, 0.5) !important;
}
 .btn-outline-royal {
     border: none !important;
     color: var(--gold-darker) !important;
     background: var(--white) !important;
     font-weight: 700;
     padding: 15px 40px;
     border-radius: 50px;
     text-transform: uppercase;
     letter-spacing: 1.5px;
     transition: all 0.4s ease;
     font-family: var(--font-sans-elegant);
     font-size: 0.95rem;
     box-shadow: 0 8px 20px rgba(163, 135, 40, 0.3) !important;
     text-decoration: none;
}
 .btn-outline-royal:hover {
     background: var(--gold-dark) !important;
     color: var(--white) !important;
     transform: translateY(-3px);
     box-shadow: 0 15px 35px rgba(163, 135, 40, 0.5) !important;
}
 .btn-outline-royal:focus, .btn-outline-royal:active {
     background: var(--gold-darker) !important;
     color: var(--white) !important;
     box-shadow: 0 8px 20px rgba(163, 135, 40, 0.5) !important;
}
 .footer {
     background: var(--dark-gray);
     color: var(--white);
     padding: 80px 0 40px;
}
 .footer-title {
     max-width: 300px;
}
 .footer h6 {
     font-family: var(--font-sans-elegant);
     color: var(--gold-light);
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 1px;
}
 .footer p, .footer li {
     font-family: var(--font-sans-clean);
     color: var(--white);
}
 .footer-quote {
     font-family: var(--font-serif-display);
     font-size: 0.9rem;
     font-style: italic;
     color: var(--gold-light);
}
 .footer a:hover {
     color: var(--gold) !important;
     transition: color 0.3s ease;
}
 @media (max-width: 992px) {
     .hero-title {
         font-size: 3rem;
    }
     .quote-text {
         font-size: 1.2rem;
    }
     .stat-number {
         font-size: 2.5rem;
    }
     .stat-text {
         font-size: 2.5rem;
    }
     .btn-royal, .btn-outline-royal {
         padding: 15px 30px;
         font-size: 0.9rem;
    }
}
 @media (max-width: 768px) {
     .video-container {
         margin-bottom: 2rem;
         aspect-ratio: 16 / 9;
    }
     .churchill-image-full {
         height: 400px;
         margin-bottom: 2rem;
    }
     .churchill-portrait-full {
         width: 100%;
         height: 100%;
         object-fit: cover;
    }
     .museum-info {
         padding-top: 1.5rem !important;
    }
     .museum-info .col-lg-4 {
         margin-top: 2rem;
    }
     .museum-info .col-lg-4 .bg-white {
         padding: 1.5rem !important;
    }
     .event-card {
         margin-bottom: 1.5rem;
    }
     .donation-benefit {
         margin-bottom: 2rem;
    }
     .info-card {
         margin-bottom: 1.5rem;
    }
     .contact-card {
         padding: 1.5rem;
    }
     .hero-section {
         padding: 60px 0;
         min-height: auto;
    }
     .stats-section {
         padding: 40px 0;
    }
     .showcase-image {
         margin-bottom: 1rem;
    }
     .btn-group-responsive {
         flex-direction: column;
         width: 100%;
    }
     .btn-group-responsive .btn {
         width: 100%;
         margin-bottom: 1rem;
    }
}
 @media (max-width: 576px) {
     .hero-title {
         font-size: 2rem;
    }
     .churchill-image-full {
         height: 350px;
    }
     .stat-number {
         font-size: 2rem;
    }
     .stat-text {
         font-size: 2rem;
    }
     .btn-royal, .btn-outline-royal {
         width: 100%;
         margin-bottom: 1rem;
    }
     .footer {
         text-align: center;
         padding: 40px 0 20px;
    }
     .footer .col-md-3 {
         margin-top: 2rem;
    }
     .footer .d-flex.gap-3 {
         justify-content: center;
    }
     .stat-item {
         padding: 10px;
    }
}
 .contact-section {
     background: linear-gradient(135deg, var(--off-white) 0%, var(--cream) 100%);
}
 .contact-card {
     background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
     border: 2px solid var(--gold);
     border-radius: 15px;
     padding: 2.5rem;
     box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
}
 .contact-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}
 .contact-avatar {
     width: 160px;
     height: 160px;
     border-radius: 50%;
     border: 4px solid var(--gold);
     object-fit: cover;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
 .contact-card h4 {
     font-family: var(--font-serif-display);
     color: var(--gold-dark);
     font-size: 1.8rem;
     margin-bottom: 0.5rem;
}
 .contact-card .text-muted {
     color: var(--gold-darker) !important;
     font-family: var(--font-sans-elegant);
     font-size: 1.1rem;
     letter-spacing: 0.5px;
}
 .contact-details {
     margin-top: 1.5rem;
     padding-top: 1.5rem;
     border-top: 1px solid var(--gold-lighter);
}
 .contact-details p {
     font-family: var(--font-sans-clean);
     font-size: 1.1rem;
}
 .contact-details .gold-accent {
     color: var(--gold-dark);
}
/* <CHANGE> Featured Event Card Styles */
 .event-card-featured {
     background: linear-gradient(135deg, var(--gold-lighter) 0%, var(--off-white) 100%);
     border: 3px solid var(--gold);
     box-shadow: 0 20px 50px rgba(212, 175, 55, 0.25) !important;
     position: relative;
     overflow: visible;
}
 .event-card-featured:hover {
     transform: translateY(-8px);
     box-shadow: 0 30px 60px rgba(212, 175, 55, 0.4) !important;
}
 .event-date-featured {
     background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
     font-size: 1.1rem;
     padding: 20px;
     box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}
 .featured-badge {
     display: inline-block;
     background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
     color: var(--white);
     padding: 8px 16px;
     border-radius: 20px;
     font-size: 0.75rem;
     text-transform: uppercase;
     letter-spacing: 1.5px;
     font-weight: 700;
     margin-bottom: 15px;
     width: fit-content;
     box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}
 .event-card-title-featured {
     font-size: 2rem;
     margin-bottom: 10px;
     color: var(--gold-darker);
}
 .featured-subtitle {
     display: block;
     font-size: 1.1rem;
     font-weight: 500;
     color: var(--gold-dark);
     margin-top: 5px;
}
 .featured-description {
     font-size: 1.1rem;
     line-height: 1.7;
     color: var(--dark-gray);
}
/* <CHANGE> Featured Event Buttons */
 .featured-buttons {
     justify-content: flex-start;
}
 .btn-featured-primary {
     background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
     color: var(--white);
     border: none;
     padding: 14px 35px;
     border-radius: 30px;
     font-size: 1rem;
     font-weight: 700;
     transition: all 0.3s ease;
     text-decoration: none;
     font-family: var(--font-sans-elegant);
     letter-spacing: 0.5px;
     box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}
 .btn-featured-primary:hover {
     background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-darker) 100%);
     transform: translateY(-3px);
     box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
     color: var(--white);
}
 .btn-featured-secondary {
     background: var(--white);
     color: var(--gold-dark);
     border: 2px solid var(--gold);
     padding: 12px 35px;
     border-radius: 30px;
     font-size: 1rem;
     font-weight: 700;
     transition: all 0.3s ease;
     text-decoration: none;
     font-family: var(--font-sans-elegant);
     letter-spacing: 0.5px;
}
 .btn-featured-secondary:hover {
     background: var(--gold-light);
     color: var(--white);
     border-color: var(--gold-dark);
     transform: translateY(-3px);
     box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}
/* <CHANGE> Hotel Information Section */
 .hotel-info-wrapper {
     /*border-top: 2px solid var(--gold-light);*/
     /*padding-top: 20px;*/
}
 .btn-hotel-toggle {
     background: var(--white);
     border: 2px solid var(--gold-light);
     color: var(--gold-dark);
     padding: 14px 20px;
     border-radius: 12px;
     width: 100%;
     text-align: left;
     cursor: pointer;
     font-weight: 600;
     font-size: 1rem;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     font-family: var(--font-sans-elegant);
}
 .btn-hotel-toggle:hover {
     background: var(--gold-lighter);
     border-color: var(--gold);
     color: var(--gold-darker);
}
 .btn-hotel-toggle[aria-expanded="true"] {
     background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-lighter) 100%);
     border-color: var(--gold);
     color: var(--gold-darker);
}
 .btn-hotel-toggle i:last-child {
     transition: transform 0.3s ease;
}
 .btn-hotel-toggle[aria-expanded="true"] i:last-child {
     transform: rotate(180deg);
}
 .hotel-info-container {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.4s ease, opacity 0.4s ease;
     opacity: 0;
     margin-top: 0;
}
 .hotel-info-container.show {
     max-height: 800px;
     opacity: 1;
     margin-top: 15px;
}
 .hotel-info-content {
     background: var(--off-white);
     padding: 25px;
     border-radius: 12px;
     border: 1px solid var(--gold-light);
}
 .hotel-intro {
     font-weight: 600;
     color: var(--gold-dark);
     margin-bottom: 20px;
     font-size: 1.05rem;
}
 .hotel-item {
     margin-bottom: 25px;
     padding-bottom: 25px;
     border-bottom: 1px solid var(--gold-lighter);
}
 .hotel-item:last-child {
     margin-bottom: 0;
     padding-bottom: 0;
     border-bottom: none;
}
 .hotel-name {
     color: var(--gold-dark);
     font-size: 1.15rem;
     margin-bottom: 5px;
     font-weight: 700;
}
 .hotel-location {
     color: var(--gold);
     font-weight: 600;
     margin-bottom: 12px;
     font-size: 0.95rem;
}
 .hotel-details {
     color: var(--dark-gray);
     line-height: 1.8;
     font-size: 0.95rem;
}
 .hotel-details strong {
     color: var(--gold-dark);
}
 .hotel-details a {
     color: var(--gold-dark);
     text-decoration: none;
     font-weight: 600;
     transition: color 0.2s ease;
}
 .hotel-details a:hover {
     color: var(--gold);
     text-decoration: underline;
}
 .text-gold {
     color: var(--gold-dark);
}
/* <CHANGE> Responsive adjustments for featured event */
 @media (max-width: 768px) {
     .event-card-featured {
         margin-bottom: 2rem;
    }
     .event-card-title-featured {
         font-size: 1.5rem;
    }
     .featured-subtitle {
         font-size: 0.95rem;
    }
     .featured-buttons {
         flex-direction: column;
    }
     .btn-featured-primary, .btn-featured-secondary {
         width: 100%;
    }
     .featured-description {
         font-size: 1rem;
    }
}
 @media (max-width: 576px) {
     .event-card-title-featured {
         font-size: 1.3rem;
    }
     .featured-description {
         font-size: 0.95rem;
    }
     .btn-hotel-toggle {
         padding: 12px 15px;
         font-size: 0.95rem;
    }
     .hotel-info-content {
         padding: 15px;
    }
}
/* Honorary Committee Section */
 .committee-info-wrapper {
     /*border-top: 2px solid var(--gold-light);*/
     /*padding-top: 20px;*/
}
 .btn-committee-toggle {
     background: var(--white);
     border: 2px solid var(--gold-light);
     color: var(--gold-dark);
     padding: 14px 20px;
     border-radius: 12px;
     width: 100%;
     text-align: left;
     cursor: pointer;
     font-weight: 600;
     font-size: 1rem;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     font-family: var(--font-sans-elegant);
}
 .btn-committee-toggle:hover {
     background: var(--gold-lighter);
     border-color: var(--gold);
     color: var(--gold-darker);
}
 .btn-committee-toggle[aria-expanded="true"] {
     background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-lighter) 100%);
     border-color: var(--gold);
     color: var(--gold-darker);
}
 .btn-committee-toggle i:last-child {
     transition: transform 0.3s ease;
}
 .btn-committee-toggle[aria-expanded="true"] i:last-child {
     transform: rotate(180deg);
}
 .committee-info-container {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.4s ease, opacity 0.4s ease;
     opacity: 0;
     margin-top: 0;
}
 .committee-info-container.show {
     max-height: 2000px;
     opacity: 1;
     margin-top: 15px;
}
 .committee-info-content {
     background: var(--off-white);
     padding: 25px;
     border-radius: 12px;
     border: 1px solid var(--gold-light);
}
 .committee-section-title {
     color: var(--gold-dark);
     font-size: 1.1rem;
     font-weight: 700;
     margin-bottom: 15px;
     padding-bottom: 8px;
     border-bottom: 1px solid var(--gold-lighter);
     font-family: var(--font-sans-elegant);
}
 .committee-member {
     margin-bottom: 12px;
     padding-left: 15px;
     border-left: 3px solid var(--gold-light);
}
 .committee-member.chair {
     border-left-color: var(--gold);
     background: var(--white);
     padding: 12px 15px;
     border-radius: 8px;
     margin-bottom: 15px;
}
 .member-name {
     display: block;
     font-weight: 600;
     color: var(--gold-dark);
     font-size: 1.05rem;
}
 .member-title {
     display: block;
     color: var(--dark-gray);
     font-size: 0.9rem;
     font-style: italic;
}
 .members-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 10px 20px;
}
 .member-item {
     color: var(--dark-gray);
     font-size: 0.95rem;
     padding: 6px 0;
     border-bottom: 1px dotted var(--gold-lighter);
}
 .committee-footnote {
     font-size: 0.85rem;
     color: var(--gold);
     font-style: italic;
     text-align: right;
}
/* Responsive adjustments for committee section */
 @media (max-width: 768px) {
     .members-grid {
         grid-template-columns: 1fr;
    }
}
 @media (max-width: 576px) {
     .btn-committee-toggle {
         padding: 12px 15px;
         font-size: 0.95rem;
    }
     .committee-info-content {
         padding: 15px;
    }
}
/* Schedule Section */
 .schedule-wrapper {
     border-top: 2px solid var(--gold-light);
     padding-top: 20px;
     margin-top: 25px;
     margin-bottom: 10px;
}
 .btn-schedule-toggle {
     background: var(--white);
     border: 2px solid var(--gold-light);
     color: var(--gold-dark);
     padding: 14px 20px;
     border-radius: 12px;
     width: 100%;
     text-align: left;
     cursor: pointer;
     font-weight: 600;
     font-size: 1rem;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     font-family: var(--font-sans-elegant);
}
 .btn-schedule-toggle:hover {
     background: var(--gold-lighter);
     border-color: var(--gold);
     color: var(--gold-darker);
}
 .btn-schedule-toggle[aria-expanded="true"] {
     background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-lighter) 100%);
     border-color: var(--gold);
     color: var(--gold-darker);
}
 .btn-schedule-toggle i:last-child {
     transition: transform 0.3s ease;
}
 .btn-schedule-toggle[aria-expanded="true"] i:last-child {
     transform: rotate(180deg);
}
 .schedule-container {
     display: none;
     opacity: 0;
}
 .schedule-container.show {
     display: block;
     opacity: 1;
     margin-top: 15px;
     margin-bottom: 20px;
     animation: fadeIn 0.3s ease;
}
 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(-10px);
    }
     to {
         opacity: 1;
         transform: translateY(0);
    }
}
 .schedule-content {
     background: var(--off-white);
     padding: 25px;
     border-radius: 12px;
     border: 1px solid var(--gold-light);
}
/* Schedule Day */
 .schedule-day {
     margin-bottom: 30px;
     padding-bottom: 30px;
     border-bottom: 2px solid var(--gold-lighter);
}
 .schedule-day:last-child {
     margin-bottom: 0;
     padding-bottom: 0;
     border-bottom: none;
}
 .schedule-day-header {
     margin-bottom: 20px;
}
 .schedule-day-header h4 {
     font-family: var(--font-serif-display);
     color: var(--gold-dark);
     font-size: 1.5rem;
     margin-bottom: 8px;
}
 .anniversary-badge {
     display: inline-block;
     background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
     color: var(--white);
     padding: 6px 14px;
     border-radius: 20px;
     font-size: 0.8rem;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.5px;
}
 .schedule-day-intro {
     color: var(--dark-gray);
     font-style: italic;
     margin-bottom: 20px;
     padding-left: 15px;
     border-left: 3px solid var(--gold-light);
     font-size: 0.95rem;
}
/* Schedule Events */
 .schedule-event {
     display: flex;
     gap: 20px;
     margin-bottom: 20px;
     padding: 15px;
     background: var(--white);
     border-radius: 10px;
     border-left: 4px solid var(--gold);
     transition: all 0.3s ease;
}
 .schedule-event:hover {
     box-shadow: 0 5px 15px rgba(182, 149, 92, 0.15);
     transform: translateX(5px);
}
 .schedule-event:last-child {
     margin-bottom: 0;
}
 .schedule-time {
     min-width: 130px;
     font-weight: 700;
     color: var(--gold-dark);
     font-family: var(--font-sans-elegant);
     font-size: 0.9rem;
     padding-top: 2px;
}
 .schedule-details h5 {
     font-family: var(--font-serif-display);
     color: var(--gold-darker);
     font-size: 1.1rem;
     margin-bottom: 8px;
}
 .schedule-details p {
     color: var(--dark-gray);
     margin-bottom: 8px;
     font-size: 0.95rem;
     line-height: 1.6;
}
 .schedule-details p:last-child {
     margin-bottom: 0;
}
 .schedule-location {
     color: var(--gold-dark) !important;
     font-weight: 500;
     font-size: 0.9rem !important;
}
 .schedule-ticket {
     color: var(--gold-darker) !important;
     font-weight: 600;
     font-size: 0.9rem !important;
}
 .schedule-sponsor {
     color: var(--gold) !important;
     font-size: 0.85rem !important;
}
 .schedule-note {
     color: var(--gold-dark) !important;
     font-size: 0.9rem !important;
}
 .schedule-speaker {
     color: var(--gold-darker) !important;
     font-size: 1rem !important;
}
/* Event Variations */
 .schedule-event-private {
     background: var(--cream);
     border-left-color: var(--gold-light);
}
 .schedule-event-highlight {
     background: linear-gradient(135deg, var(--gold-lighter) 0%, var(--white) 100%);
     border-left-color: var(--gold-dark);
     border-left-width: 5px;
}
 .schedule-event-premium {
     background: linear-gradient(135deg, var(--gold-lighter) 0%, var(--cream) 100%);
     border-left-color: var(--gold-darker);
     border-left-width: 5px;
}
/* Event Group */
 .schedule-event-group {
     background: var(--white);
     border-radius: 12px;
     padding: 20px;
     margin-bottom: 20px;
     border: 2px solid var(--gold-light);
}
 .schedule-group-header {
     margin-bottom: 15px;
     padding-bottom: 15px;
     border-bottom: 1px solid var(--gold-lighter);
}
 .schedule-group-header h5 {
     font-family: var(--font-serif-display);
     color: var(--gold-dark);
     font-size: 1.2rem;
     margin-bottom: 5px;
}
 .schedule-event-nested {
     margin-left: 0;
     background: var(--off-white);
     border-left-color: var(--gold-light);
}
/* Responsive */
 @media (max-width: 768px) {
     .schedule-event {
         flex-direction: column;
         gap: 10px;
    }
     .schedule-time {
         min-width: auto;
         padding-bottom: 5px;
         border-bottom: 1px solid var(--gold-lighter);
    }
     .schedule-content {
         padding: 15px;
    }
}
 @media (max-width: 576px) {
     .btn-schedule-toggle {
         padding: 12px 15px;
         font-size: 0.95rem;
    }
     .schedule-day-header h4 {
         font-size: 1.25rem;
    }
     .anniversary-badge {
         font-size: 0.7rem;
         padding: 4px 10px;
    }
}
/* Showcase Section Additions */
 .showcase-badge {
     display: inline-block;
     background: var(--gold-dark);
     color: var(--white);
     padding: 4px 10px;
     border-radius: 4px;
     font-size: 0.7rem;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     margin-top: 12px;
}
 .showcase-subtitle {
     color: var(--gold);
     font-style: italic;
     font-size: 0.95rem;
     margin-bottom: 8px;
}
/* ============================================= NEW ADDITIONS: Class of 2026 Churchill Fellows ============================================= */
 .fellows-section {
     background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
     padding: 120px 0;
}
 .fellow-card {
     background: var(--white);
     border-radius: 15px;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
     border: 2px solid var(--gold-lighter);
     transition: all 0.3s ease;
     height: 100%;
     display: flex;
     flex-direction: column;
     cursor: pointer;
}
 .fellow-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 20px 45px rgba(212, 175, 55, 0.25);
     border-color: var(--gold);
}
 .fellow-image-container {
     width: 100%;
     overflow: hidden;
}
 .fellow-image {
     width: 100%;
     height: auto;
     aspect-ratio: 1 / 1;
     object-fit: cover;
     display: block;
     transition: transform 0.4s ease;
     filter: sepia(10%) contrast(1.05);
}
 .fellow-card:hover .fellow-image {
     transform: scale(1.05);
}
 .fellow-info {
     padding: 20px;
     text-align: center;
}
 .fellow-name {
     font-family: var(--font-serif-display);
     color: var(--gold-dark);
     font-size: 1.3rem;
     font-weight: 400;
     margin-bottom: 0;
}
/* Fellow Bio Popup Modal */
 .fellow-modal-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.6);
     z-index: 9999;
     display: flex;
     align-items: center;
     justify-content: center;
     opacity: 0;
     visibility: hidden;
     transition: opacity 0.3s ease, visibility 0.3s ease;
     padding: 20px;
}
 .fellow-modal-overlay.active {
     opacity: 1;
     visibility: visible;
}
 .fellow-modal {
     background: var(--white);
     border-radius: 20px;
     max-width: 600px;
     width: 100%;
     max-height: 85vh;
     overflow-y: auto;
     box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
     border: 3px solid var(--gold);
     transform: scale(0.9) translateY(20px);
     transition: transform 0.3s ease;
     position: relative;
}
 .fellow-modal-overlay.active .fellow-modal {
     transform: scale(1) translateY(0);
}
 .fellow-modal-close {
     position: absolute;
     top: 15px;
     right: 15px;
     width: 36px;
     height: 36px;
     border-radius: 50%;
     border: 2px solid var(--gold-light);
     background: var(--white);
     color: var(--gold-dark);
     font-size: 1.2rem;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.2s ease;
     z-index: 1;
}
 .fellow-modal-close:hover {
     background: var(--gold);
     color: var(--white);
     border-color: var(--gold);
}
 .fellow-modal-image {
     width: 100%;
     aspect-ratio: 4 / 3;
     object-fit: cover;
     display: block;
     border-radius: 20px 20px 0 0;
}
 .fellow-modal-body {
     padding: 30px;
}
 .fellow-modal-name {
     font-family: var(--font-serif-display);
     color: var(--gold-dark);
     font-size: 1.8rem;
     font-weight: 400;
     margin-bottom: 16px;
}
 .fellow-modal-bio {
     font-family: var(--font-sans-clean);
     color: var(--dark-gray);
     line-height: 1.7;
     font-size: 1rem;
}
 @media (max-width: 768px) {
     .fellows-section {
         padding: 80px 0;
    }
     .fellow-modal {
         max-width: 95%;
         max-height: 90vh;
    }
     .fellow-modal-body {
         padding: 20px;
    }
     .fellow-modal-name {
         font-size: 1.5rem;
    }
}
 @media (max-width: 576px) {
     .fellows-section {
         padding: 60px 0;
    }
     .fellow-info {
         padding: 15px;
    }
     .fellow-modal-body {
         padding: 15px;
    }
}
/* ========================================= NEW ADDITIONS: Governor Kehoe Bio Dropdown ========================================= */
 .kehoe-bio-wrapper {
     /*border-top: 2px solid var(--gold-light);*/
     /*padding-top: 20px;*/
}
 .btn-kehoe-toggle {
     background: var(--white);
     border: 2px solid var(--gold-light);
     color: var(--gold-dark);
     padding: 14px 20px;
     border-radius: 12px;
     width: 100%;
     text-align: left;
     cursor: pointer;
     font-weight: 600;
     font-size: 1rem;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     font-family: var(--font-sans-elegant);
}
 .btn-kehoe-toggle:hover {
     background: var(--gold-lighter);
     border-color: var(--gold);
     color: var(--gold-darker);
}
 .btn-kehoe-toggle[aria-expanded="true"] {
     background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-lighter) 100%);
     border-color: var(--gold);
     color: var(--gold-darker);
}
 .btn-kehoe-toggle i:last-child {
     transition: transform 0.3s ease;
}
 .btn-kehoe-toggle[aria-expanded="true"] i:last-child {
     transform: rotate(180deg);
}
 .kehoe-bio-container {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.4s ease, opacity 0.4s ease;
     opacity: 0;
     margin-top: 0;
}
 .kehoe-bio-container.show {
     max-height: 3000px;
     opacity: 1;
     margin-top: 15px;
}
 .kehoe-bio-content {
     background: var(--off-white);
     padding: 25px;
     border-radius: 12px;
     border: 1px solid var(--gold-light);
}
 .kehoe-image-container {
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
 .kehoe-image {
     width: 100%;
     height: auto;
     display: block;
     aspect-ratio: 4 / 5;
     object-fit: cover;
}
 .kehoe-name {
     font-family: var(--font-serif-display);
     color: var(--gold-dark);
     font-size: 1.6rem;
     font-weight: 400;
     margin-bottom: 4px;
}
 .kehoe-title {
     font-family: var(--font-sans-elegant);
     color: var(--gold);
     font-size: 1rem;
     font-weight: 600;
     margin-bottom: 16px;
}
 .kehoe-bio-text {
     font-family: var(--font-sans-clean);
     line-height: 1.7;
     color: var(--dark-gray);
}
 .kehoe-bio-text p {
     margin-bottom: 12px;
     font-size: 0.95rem;
}
 .kehoe-bio-text p:last-child {
     margin-bottom: 0;
}
 @media (max-width: 768px) {
     .kehoe-image-container {
         max-width: 250px;
         margin: 0 auto 20px;
    }
}
 @media (max-width: 576px) {
     .btn-kehoe-toggle {
         padding: 12px 15px;
         font-size: 0.95rem;
    }
     .kehoe-bio-content {
         padding: 15px;
    }
}
 