  :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;
    }
}
 