/* /src/trishastikibar.com/src/styles.css */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #f8e8d2 0%, #ffe5b4 100%);
    margin: 0;
    color: #333;
}

.site-header, .site-footer {
    text-align: center;
    background: #ffb347;
    color: #fff;
    padding: 1rem 0;
    letter-spacing: 2px;
}

.container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 1rem;
    background: #fff8e1;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.cal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.1rem;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.cal-thead th {
    background: #ffb347;
    color: #fff;
    padding: 0.75rem;
    font-weight: 600;
    border: none;
}

.cal-table td {
    border: 1px solid #ffe5b4;
    height: 70px;
    text-align: center;
    vertical-align: top;
    position: relative;
    transition: background 0.2s;
}

.cal-table td:hover {
    background: #ffe5b4;
    cursor: pointer;
}

.party-day {
    background: #ff7043;
    color: #fff;
    font-weight: bold;
    border-radius: 6px;
    box-shadow: 0 0 8px #ff7043a0;
}

.party-day span {
    display: block;
    font-size: 0.9em;
    margin-top: 0.3em;
    letter-spacing: 1px;
}

.menu-image-section {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}
.menu-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

@media (max-width: 600px) {
    .container {
        padding: 0.5rem;
    }
    .cal-table td, .cal-thead th {
        font-size: 0.9rem;
        padding: 0.5rem;
        height: 40px;
    }
}