body {
    font-family: 'Georgia', serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.nav {
    background: #f8f9fa;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
}

.nav::before {
    content: "B & S";
    position: absolute;
    left: 2rem;
    top: 0.7rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    z-index: 101;
}

.nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.nav li {
    margin: 0 1rem;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.nav a:hover {
    background: #e0e0e0;
}

.nav a.active {
    background: #333;
    color: white;
}

.menu-toggle {
    display: none;
    background: none;
    border: 1px solid #e0e0e0;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    font-family: inherit;
}

.main-content {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.header {
    text-align: center;
    padding: 2rem;
    border-bottom: 1px solid #eee;
}

h1 {
    font-weight: 300;
    margin-bottom: 1rem;
}


/* Reduced padding for accommodations page */
.hotels-hero {
    margin: 0 0 2rem 0;
}

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

.day {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.day h3 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.2rem;
}

.day h4 {
    margin: 0 0 1rem 0;
    color: #666;
    font-weight: 500;
    font-size: 1rem;
}

.day ul {
    margin: 0;
    padding-left: 1.2rem;
}

.day li {
    margin-bottom: 0.5rem;
}

.accommodations-list, .travel-options, .faq-list, .activities-list {
    margin-top: 2rem;
}

.hotel, .travel-option, .faq-item, .activity {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    margin-bottom: 1.5rem;
}

.hotel h3, .travel-option h3, .faq-item h3, .activity h3 {
    margin: 0 0 1rem 0;
    color: #333;
}

/* Accommodations Page Styles */

.hotels-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.availability-note {
    margin: 2rem 0;
    font-style: italic;
    font-size: 0.9em;
}

/* Home page todo cards */
.todo-cards {
    max-width: 500px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.todo-card {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
}

.todo-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.todo-number {
    background: #6c757d;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.todo-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
}

.hotels-table {
    margin: 2rem auto 0;
    border-collapse: collapse;
    width: 100%;
    max-width: 400px;
}

.hotel-row {
    border-bottom: 1px solid #e0e0e0;
}

.hotel-row:last-child {
    border-bottom: none;
}

.hotel-name-row {
    padding-top: 1rem;
}

.hotel-link {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    width: 100%;
}

.hotel-link:hover {
    color: #0066cc;
}

.hotel-details-row {
    display: flex;
    align-items: flex-start;
    padding: 0.5rem 0 1.5rem 0;
}

.shuttle-indicator {
    margin-right: 1rem;
    width: 2rem;
    flex-shrink: 0;
}

.hotel-description {
    flex: 1;
    line-height: 1.5;
}

.additional-options {
    margin: 2rem 0;
    padding: 1rem 0;
    text-align: center;
    color: #666;
}

.faq-item .answer ul {
    margin-top: 0.5rem;
    padding-left: 1.2rem;
}

.faq-item .answer li {
    margin-bottom: 0.3rem;
}

@media (max-width: 600px) {
    .menu-toggle {
        display: block;
        margin: 0 auto 0.5rem;
        background: #f8f9fa;
    }

    .nav ul {
        display: none;
        flex-direction: column;
        align-items: center;
    }

    .nav.open ul {
        display: flex;
    }

    .nav li {
        margin: 0.25rem 0;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Full bleed image for mobile */
    .hotels-hero {
        max-width: 100vw;
    }
    
    .hotels-image {
        border-radius: 0;
        width: 100%;
        height: auto;
        max-width: 100vw;
    }
    
    .shuttle-indicator {
        margin-bottom: 0.5rem;
    }
    
    /* Add small padding to content below image on mobile */
    .availability-note,
    .hotels-table,
    .additional-options {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Force hotel table to stay within screen width */
    .hotels-table {
        max-width: 100vw;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .hotel-row,
    .hotel-name-row,
    .hotel-details-row {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hotel-description {
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}
