/* Experience Guide Styles */
:root {
    --pirate-gold: #D4AF37;
    --pirate-red: #8B0000;
    --parchment: #F4F1E8;
    --dark-wood: #3D2F1F;
    --sea-blue: #1E3A8A;
    --calendar-border: #8B4513;
    --open-green: #2D5016;
    --limited-yellow: #B8860B;
    --closed-red: #8B0000;
    --special-purple: #4B0082;
    --show-blue: #0066CC;
}

/* Main Container Styles */
.parchment-scroll {
    background: url('../assets/parchmentpaper-long.webp') repeat-y center center;
    background-size: 100% auto;
    min-height: 100vh;
    padding: 20px 0;
    font-family: 'Treasure Map Deadhand', serif;
}

.scroll-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(244, 241, 232, 0.9);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(61, 47, 31, 0.3);
    border: 3px solid var(--pirate-gold);
}

/* Section Styles */
.calendar-section, .hours-section, .closures-section, .legend-section {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(244, 241, 232, 0.8);
    border-radius: 12px;
    border: 2px solid var(--pirate-gold);
    box-shadow: 0 4px 16px rgba(61, 47, 31, 0.2);
}

.calendar-section h2, .hours-section h2, .closures-section h2, .legend-section h2 {
    color: var(--pirate-red);
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    border-bottom: 3px solid var(--pirate-gold);
    padding-bottom: 10px;
}

.icon {
    font-size: 2rem;
    margin-right: 15px;
    vertical-align: middle;
}

.calendar-intro {
    font-size: 1.6rem;
    text-align: center;
    color: var(--dark-wood);
    margin-bottom: 30px;
    line-height: 1.6;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.calendar-intro .important-note {
    display: inline-block;
    background: rgba(139, 0, 0, 0.9);
    color: #ffffff;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1.4rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    border: 2px solid #8B0000;
    margin-top: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transform: scale(1.05);
}

/* Calendar Container */
.calendar-container {
    background: var(--parchment);
    border: 4px solid var(--calendar-border);
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    position: relative;
}

.calendar-container::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(45deg, var(--pirate-gold), var(--pirate-red), var(--pirate-gold));
    border-radius: 20px;
    z-index: -1;
}

.calendar-header {
    text-align: center;
    margin-bottom: 15px;
}

.calendar-header h3 {
    font-size: 2.3rem;
    color: var(--pirate-red);
    margin-bottom: 5px;
}

.calendar-instruction {
    font-size: 1.6rem;
    color: var(--dark-wood);
    margin-bottom: 15px;
    text-align: center;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.9);
    padding: 10px;
    background: rgba(244, 241, 232, 0.8);
    border-radius: 8px;
    border: 2px solid var(--pirate-gold);
}
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.calendar-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.nav-btn {
    background: var(--pirate-red);
    color: white;
    border: 2px solid var(--pirate-gold);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: var(--pirate-gold);
    color: var(--pirate-red);
    transform: scale(1.1);
}

.current-month {
    font-size: 1.7rem;
    font-weight: bold;
    color: var(--dark-wood);
    min-width: 150px;
}

/* Calendar Grid */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-top: 20px;
}

.calendar-day-header {
    background: var(--pirate-red);
    color: white;
    padding: 12px 8px;
    text-align: center;
    font-weight: bold;
    border-radius: 8px;
    font-size: 1.3rem;
    border: 2px solid var(--pirate-gold);
}

.calendar-day {
    background: var(--parchment);
    border: 2px solid var(--calendar-border);
    border-radius: 8px;
    padding: 12px 8px;
    text-align: center;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.calendar-day:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.calendar-day.empty {
    background: rgba(244, 241, 232, 0.3);
    border: 2px dashed var(--calendar-border);
    cursor: default;
}

.calendar-day.empty:hover {
    transform: none;
    box-shadow: none;
}

.day-number {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--dark-wood);
    margin-bottom: 5px;
}

.day-status {
    font-size: 1rem;
    padding: 4px 8px;
    border-radius: 4px;
    color: white;
    font-weight: bold;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

/* Status Colors */
.status-open {
    background: var(--open-green);
}

.status-limited {
    background: var(--limited-yellow);
}

.status-closed {
    background: var(--closed-red);
}

.status-special {
    background: var(--special-purple);
}

.status-show {
    background: var(--show-blue);
}

.status-limited-show {
    background: #FF8C00;
}

/* Hours Section */
.hours-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.hours-card {
    background: var(--parchment);
    border: 3px solid var(--pirate-gold);
    border-radius: 12px;
    padding: 20px 15px;
    box-shadow: 0 6px 20px rgba(61, 47, 31, 0.2);
    transition: transform 0.3s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hours-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(61, 47, 31, 0.3);
}

.hours-card h3 {
    color: var(--pirate-red);
    font-size: 1.6rem;
    margin-bottom: 12px;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid var(--pirate-gold);
    padding-bottom: 8px;
    line-height: 1.2;
}

.hours-info p {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--dark-wood);
    line-height: 1.4;
    font-weight: 500;
}

.hours-info .note {
    font-style: italic;
    color: var(--pirate-red);
    font-size: 1rem;
    margin-top: 10px;
    padding: 8px;
    background: rgba(139, 0, 0, 0.1);
    border-radius: 6px;
    border-left: 3px solid var(--pirate-red);
    font-weight: 500;
}

/* Closures Section */
.closures-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.closure-item {
    background: var(--parchment);
    border: 2px solid var(--pirate-red);
    border-radius: 8px;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.closure-item:hover {
    background: rgba(139, 0, 0, 0.1);
    transform: translateX(5px);
}

.closure-date {
    font-weight: bold;
    color: var(--pirate-red);
    font-size: 1.5rem;
    min-width: 120px;
}

.closure-reason {
    color: var(--dark-wood);
    font-size: 1.4rem;
    flex: 1;
    margin-left: 20px;
    font-weight: 500;
    line-height: 1.6;
}

/* Legend Section */
.legend-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: var(--parchment);
    border: 3px solid var(--pirate-gold);
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    min-width: 280px;
}

.legend-item:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.legend-color {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 3px solid var(--dark-wood);
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.legend-color.open {
    background: var(--open-green);
}

.legend-color.limited {
    background: var(--limited-yellow);
}

.legend-color.closed {
    background: var(--closed-red);
}

.legend-color.special {
    background: var(--special-purple);
}

.legend-color.show {
    background: var(--show-blue);
}

.legend-text {
    font-size: 1.5rem;
    color: var(--dark-wood);
    font-weight: 600;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 900px) {
    .scroll-container {
        padding: 15px;
        margin: 10px;
        max-width: 95vw;
    }
    
    .calendar-section, .hours-section, .closures-section, .legend-section {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .calendar-section h2, .hours-section h2, .closures-section h2, .legend-section h2 {
        font-size: 2.2rem;
    }
    
    .calendar-container {
        padding: 15px;
        overflow-x: auto;
    }
    
    .calendar-grid {
        min-width: 600px;
    }
    
    .calendar-day {
        min-height: 60px;
        padding: 8px 4px;
    }
    
    .day-number {
        font-size: 1.2rem;
    }
    
    .day-status {
        font-size: 0.9rem;
        padding: 2px 6px;
    }
    
    .hours-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .hours-card h3 {
        font-size: 1.4rem;
    }
    
    .hours-info p {
        font-size: 1rem;
    }
    
    .legend-grid {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .legend-item {
        min-width: auto;
        width: 100%;
        max-width: 400px;
    }
    
    .legend-text {
        font-size: 1.3rem;
    }
    
    .calendar-intro {
        font-size: 1.4rem;
    }
}

@media (max-width: 600px) {
    .scroll-container {
        padding: 10px;
        margin: 5px;
        max-width: 98vw;
    }
    
    .calendar-section, .hours-section, .closures-section, .legend-section {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .calendar-section h2, .hours-section h2, .closures-section h2, .legend-section h2 {
        font-size: 1.8rem;
    }
    
    .calendar-intro {
        font-size: 1.2rem;
        line-height: 1.4;
    }
    
    .calendar-container {
        padding: 10px;
        overflow-x: auto;
    }
    
    .calendar-grid {
        gap: 4px;
        min-width: 500px;
    }
    
    .calendar-day {
        min-height: 45px;
        padding: 6px 2px;
    }
    
    .day-number {
        font-size: 0.9rem;
    }
    
    .day-status {
        font-size: 0.6rem;
        padding: 1px 3px;
    }
    
    .calendar-nav {
        gap: 15px;
    }
    
    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .current-month {
        font-size: 1.2rem;
        min-width: 120px;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .hours-card {
        padding: 15px 12px;
        min-height: auto;
    }
    
    .hours-card h3 {
        font-size: 1.3rem;
    }
    
    .hours-info p {
        font-size: 0.95rem;
    }
    
    .closure-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .closure-date {
        min-width: auto;
        font-size: 1.3rem;
    }
    
    .closure-reason {
        margin-left: 0;
        font-size: 1.2rem;
    }
    
    .legend-item {
        padding: 10px 12px;
        gap: 12px;
    }
    
    .legend-color {
        width: 20px;
        height: 20px;
    }
    
    .legend-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .scroll-container {
        padding: 8px;
        margin: 3px;
        max-width: 99vw;
    }
    
    .calendar-section, .hours-section, .closures-section, .legend-section {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .calendar-section h2, .hours-section h2, .closures-section h2, .legend-section h2 {
        font-size: 1.5rem;
    }
    
    .calendar-intro {
        font-size: 1.1rem;
    }
    
    .calendar-grid {
        min-width: 450px;
    }
    
    .calendar-day {
        min-height: 40px;
        padding: 4px 1px;
    }
    
    .day-number {
        font-size: 0.8rem;
    }
    
    .day-status {
        font-size: 0.5rem;
        padding: 1px 2px;
    }
    
    .hours-card h3 {
        font-size: 1.1rem;
    }
    
    .hours-info p {
        font-size: 0.9rem;
    }
    
    .closure-date {
        font-size: 1.1rem;
    }
    
    .closure-reason {
        font-size: 1rem;
    }
    
    .legend-text {
        font-size: 0.9rem;
    }
} 