/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* General link styles */
a {
    color: #3498db;
    text-decoration: underline;
    transition: all 0.3s ease;
}

a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Header and Navigation */
.header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand h1 a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
}

.nav-brand .tagline {
    color: #bdc3c7;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.nav-brand .tagline a {
    color: #bdc3c7;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.nav-brand .tagline a:hover {
    color: #3498db;
    text-decoration: underline;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;

    z-index: 10;
}

.nav-link {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #3498db;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #3498db;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Welcome Section */
.welcome-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 2.5rem 0;
    margin-top: 1rem;
    margin-bottom: 0.25rem;
}

.welcome-message {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    font-weight: 600;
    line-height: 1.3;
}

.host-line {
    font-size: 1.4rem;
    font-weight: 500;
    opacity: 0.95;
}

.welcome-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
    font-weight: 400;
}

/* Welcome Section Mobile */
@media (max-width: 768px) {
    .welcome-section {
        padding: 2rem 0;
        margin-top: 0.5rem;
        margin-bottom: 0.1rem;
    }
    
    .welcome-message {
        font-size: 1.4rem;
    }
    
    .host-line {
        font-size: 1.1rem;
    }
    
    .welcome-subtitle {
        font-size: 1rem;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #3498db;
    color: white;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background-color: white;
    color: #667eea;
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 3rem 0;
}

section h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 600;
}

/* Event Details Banner */
.event-details-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 0.5rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 8px;
    color: white;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
}

.location-details, .timing-details {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem;
    border-radius: 6px;
    backdrop-filter: blur(10px);
}

.location-details h3, .timing-details h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.venue-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.venue-name a {
    color: white;
    text-decoration: underline;
}

.venue-name a:hover {
    color: #ecf0f1;
}

.address {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    color: #ecf0f1;
}

.directions-link a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    display: inline-block;
    transition: all 0.3s ease;
}

.directions-link a:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.timing-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.checkin-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.checkin-item h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.checkin-date {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: #ecf0f1;
}

.checkin-time {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

/* Event Summary - Horizontal Grid Format */
.event-summary {
    background: white;
    color: #333;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    margin: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.event-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    text-align: center;
}

.event-info-item {
    padding: 1rem;
    border-radius: 8px;
    background: rgba(52, 152, 219, 0.05);
}

.event-info-item .event-time {
    font-size: 1.5em;
}

.event-info-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.venue-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0.5rem 0;
}

.venue-name a {
    color: #3498db;
    text-decoration: none;
    font-weight: 700;
}

.venue-name a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.location-address {
    color: #666;
    font-size: 0.95rem;
    margin: 0.25rem 0;
}

.event-date {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0.5rem 0 0.75rem 0;
}

.event-time {
    font-weight: 900;
    color: black;
    margin: 0.75rem 0;
    line-height: 1;
}

.event-info-item a {
    color: #3498db;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.event-info-item a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Event Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.info-card h3 {
    color: #2c3e50;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-card p {
    color: #34495e;
    font-weight: 500;
}

.info-card .detail {
    color: #7f8c8d;
    font-weight: 400;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Quick Links */
.quick-links {
    background-color: #f8f9fa;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.link-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-color: #3498db;
}

.link-card h3 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.link-card p {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Tables */
.table-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 2rem 0;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

tr:hover {
    background-color: #f8f9fa;
}

/* Content sections */
.content-section {
    background: white;
    margin: 2rem 0;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.content-section h3 {
    color: #2c3e50;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.content-section p {
    margin-bottom: 1rem;
    color: #495057;
}

.content-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.content-section li {
    margin-bottom: 0.5rem;
    color: #495057;
}

/* Belief links */
.belief-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.belief-link {
    display: block;
    padding: 1rem;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.belief-link:hover {
    border-color: #3498db;
    background-color: #f8f9fa;
    transform: translateY(-2px);
}

.belief-link strong {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 0 1rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #3498db;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Info card location links */
.info-card p a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-card p a:hover {
    color: #3498db;
}

.info-card .directions-link {
    margin-top: 0.75rem;
}

.info-card .directions-link a {
    color: #3498db;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    display: inline-block;
    transition: all 0.3s ease;
}

.info-card .directions-link a:hover {
    background-color: #3498db;
    color: white;
    border-color: #3498db;
    transform: translateY(-1px);
}

.footer-section .location-info {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    color: #bdc3c7;
    line-height: 1.4;
}

.footer-section .location-info a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section .location-info a:hover {
    color: #2980b9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

/* Button styles - no underline for buttons */
.btn-primary {
    background-color: #3498db;
    color: white;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background-color: white;
    color: #667eea;
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 3rem 0;
}

section h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 600;
}

/* Event Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.info-card h3 {
    color: #2c3e50;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-card p {
    color: #34495e;
    font-weight: 500;
}

.info-card .detail {
    color: #7f8c8d;
    font-weight: 400;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Quick Links */
.quick-links {
    background-color: #f8f9fa;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Tables */
.table-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 2rem 0;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

tr:hover {
    background-color: #f8f9fa;
}

/* Content sections */
.content-section {
    background: white;
    margin: 2rem 0;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.content-section h3 {
    color: #2c3e50;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.content-section p {
    margin-bottom: 1rem;
    color: #495057;
}

.content-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.content-section li {
    margin-bottom: 0.5rem;
    color: #495057;
}

/* Belief links */
.belief-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.day-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.day-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.day-card.sabbath {
    border-left: 4px solid #3498db;
}

.day-card h3 {
    color: #2c3e50;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.day-subtitle {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.meal {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.meal strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.meal ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.meal li {
    margin-bottom: 0.25rem;
    color: #495057;
}

.cooks, .sponsor, .special-note {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    padding: 0.25rem 0;
}

.cooks {
    color: #27ae60;
}

.sponsor {
    color: #8e44ad;
}

.special-note {
    color: #e67e22;
}

.special-event {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    text-align: center;
}

.special-event strong {
    color: #856404;
}

.search-container {
    margin-bottom: 2rem;
}

.search-container input {
    width: 100%;
    max-width: 400px;
    padding: 0.75rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 1rem;
    display: block;
    margin: 0 auto;
}

.search-container input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

/* Belief Links Styles */
.external-link {
    font-size: 0.8rem;
    color: #3498db;
    font-weight: 500;
}

.belief-link:hover .external-link {
    color: #2980b9;
}

/* Blockquotes */
blockquote {
    border-left: 4px solid #3498db;
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #6c757d;
    background-color: #f8f9fa;
    padding: 1rem 1rem 1rem 2rem;
    border-radius: 0 8px 8px 0;
}

blockquote cite {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #495057;
    font-style: normal;
}

/* Code of Conduct Specific Styles */
.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.guideline-card, .service-card, .respect-card, .family-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.guideline-card h4, .service-card h4, .respect-card h4, .family-card h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.respect-guidelines {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.family-guidelines {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.note {
    background-color: #e3f2fd;
    border: 1px solid #90caf9;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    color: #1565c0;
}

.note strong {
    color: #0d47a1;
}

/* Tips grid improvements */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.tip-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.tip-card h3 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.tip-card ul {
    margin: 0;
    padding-left: 1.5rem;
}

.tip-card li {
    margin-bottom: 0.5rem;
    color: #495057;
}

/* Filter Container Styles */
.filter-container {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.name-filter {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.name-filter label {
    font-weight: 600;
    color: #2c3e50;
    white-space: nowrap;
}

.filter-input {
    flex: 1;
    min-width: 250px;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.filter-input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.clear-filter-btn {
    padding: 0.75rem 1.5rem;
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clear-filter-btn:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

.day-card.hidden {
    display: none;
}

.filter-status {
    margin-top: 1rem;
    padding: 0.75rem;
    background: #e3f2fd;
    border: 1px solid #90caf9;
    border-radius: 6px;
    color: #1565c0;
    font-weight: 500;
}

/* Name highlighting styles */
.name-highlight {
    background-color: #ffeb3b;
    color: #333;
    font-weight: 600;
    padding: 2px 4px;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #2c3e50;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 200px;
    }

    .event-details-banner {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        margin: 1.5rem 0;
        gap: 1.5rem;
    }

    .timing-details {
        flex-direction: row;
        gap: 1rem;
    }

    .checkin-time {
        font-size: 1.1rem;
    }

    .weekly-events-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .event-item {
        padding: 0.75rem;
    }

    .event-title {
        font-size: 0.9rem;
    }

    section h2 {
        font-size: 1.75rem;
    }

    .table-container {
        overflow-x: auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    section {
        padding: 0.75rem 0;
    }

    .event-summary {
        padding: 1.5rem 1rem;
        margin: 1rem 0;
    }
    
    .event-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .event-info-item {
        padding: 1rem 0.75rem;
    }
    
    .event-info-item h3 {
        font-size: 1.1rem;
    }
    
    /* Mobile responsive filter styles */
    .name-filter {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    
    .filter-input {
        min-width: 100%;
    }
    
    .clear-filter-btn {
        align-self: center;
        width: auto;
        min-width: 120px;
    }
    
}

.card-button {
    display: inline-block;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 0.5rem;
}

.card-button:hover {
    background: linear-gradient(135deg, #2980b9 0%, #1f6391 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
    color: white;
    text-decoration: none;
}

.info-card .detail {
    color: #7f8c8d;
    font-weight: 400;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* Weekly Events Styles */
.weekly-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.event-item {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.event-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.event-item.sabbath {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    border-color: #27ae60;
}

.event-item.special {
    background: linear-gradient(135deg, #fff3cd 0%, #fef9e7 100%);
    border-color: #f39c12;
}

.event-item.highlight {
    background: linear-gradient(135deg, #e3f2fd 0%, #f0f8ff 100%);
    border-color: #3498db;
}

.event-date {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-details {
    margin-bottom: 0.75rem;
}

.event-details:last-child {
    margin-bottom: 0;
}

.event-title {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.event-time {
    font-size: 1rem;
    font-weight: 500;
    color: #495057;
    margin-bottom: 0.25rem;
}

.event-note {
    font-size: 0.8rem;
    color: #6c757d;
    font-style: italic;
}

.event-item.sabbath .event-note {
    color: #27ae60;
    font-weight: 500;
}

.event-item.highlight .event-note {
    color: #e67e22;
    font-weight: 500;
}

/* Clean Food Policy Specific Styles */
.clean-foods-grid, .unclean-foods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.food-category {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #e9ecef;
}

.food-category.unclean {
    background: #fdf2f2;
    border-color: #f5c6cb;
}

.food-category h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.food-category.unclean h4 {
    color: #721c24;
}

.food-category ul {
    margin: 0 0 1rem 1.5rem;
}

.food-category li {
    margin-bottom: 0.5rem;
    color: #495057;
}

.food-category .criteria {
    background: #e3f2fd;
    border: 1px solid #90caf9;
    border-radius: 6px;
    padding: 0.75rem;
    margin: 0;
    font-size: 0.9rem;
    color: #1565c0;
    font-style: italic;
}

.food-category.unclean .criteria {
    background: #fff3cd;
    border-color: #ffeaa7;
    color: #856404;
}

.scripture-refs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.scripture-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.scripture-card h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.scripture-card blockquote {
    margin: 1rem 0 0 0;
    border-left-color: #27ae60;
}