* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Merriweather', serif;
    line-height: 1.6;
    color: #333;
    background-color: #FFF8E7;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #FCB72E, #E8941A);
    color: #000;
    padding: 40px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.logo-img {
    max-height: 180px;
    width: auto;
    padding: 12px;
    border: 4px solid #000;
    box-shadow: 8px 8px 0px #000;
}

.header-text {
    text-align: center;
}

.logo-text {
    font-family: 'Crimson Text', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
}

.subtitle {
    font-family: 'Crimson Text', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: #000;
    font-weight: 600;
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.4;
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #FCB72E;
    color: #000;
    border: 3px solid #000;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    z-index: 1000;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: #000;
    color: #FCB72E;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Calendar icon */
.calendar-icon {
    display: inline-block;
    position: relative;
    width: 20px;
    height: 20px;
    background: white;
    border: 2px solid #000;
    border-radius: 2px;
    margin-right: 8px;
    vertical-align: middle;
}

.calendar-icon::before {
    content: attr(data-day);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10px;
    font-weight: bold;
    color: #000;
    line-height: 1;
}

.calendar-icon::after {
    content: attr(data-month);
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 7px;
    color: #000;
    font-weight: bold;
    background: #FCB72E;
    padding: 1px 3px;
    border-radius: 1px;
    white-space: nowrap;
}

/* Menu Bar */
.menu-bar {
    background: #000;
    color: #FCB72E;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.menu-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-logo {
    font-family: 'Crimson Text', serif;
    font-weight: bold;
    color: #FCB72E;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.menu-toggle {
    background: none;
    border: 2px solid #FCB72E;
    color: #FCB72E;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px 12px;
    display: none;
}

.menu-toggle:hover {
    background: #FCB72E;
    color: #000;
}

.menu-items {
    display: flex;
    gap: 25px;
}

.menu-items a {
    color: #FCB72E;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.menu-items a.active,
.menu-items a:hover {
    background: #FCB72E;
    color: #000;
    border: 2px solid #FCB72E;
}

/* Main content */
main {
    padding: 40px 0;
    min-height: calc(100vh - 300px);
}

.events-title {
    text-align: center;
    font-family: 'Crimson Text', serif;
    font-size: 2.2rem;
    color: #000;
    margin-bottom: 35px;
    font-weight: 700;
    letter-spacing: 2px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 35px;
    margin-bottom: 50px;
}

.events-month {
    display: none;
}

.event-card {
    background: white;
    border: 4px solid #000;
    padding: 0;
    box-shadow: 10px 10px 0px #FCB72E;
    transition: all 0.3s ease;
    overflow: hidden;
}

.event-card:hover {
    transform: translate(-5px, -5px);
    box-shadow: 15px 15px 0px #FCB72E;
}

.event-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-bottom: 4px solid #000;
}

.event-content {
    padding: 30px;
}

.event-date {
    font-family: 'Crimson Text', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    text-align: center;
    background: #FCB72E;
    padding: 15px;
    border: 3px solid #000;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.event-menu {
    font-family: 'Merriweather', serif;
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: #222;
    line-height: 1.8;
    text-align: center;
    font-weight: 600;
    background: #FFF8E7;
    padding: 25px;
    border: 3px solid #FCB72E;
}

.event-price {
    font-family: 'Crimson Text', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    text-align: center;
    background: #FCB72E;
    padding: 20px;
    border: 4px solid #000;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    margin-bottom: 25px;
}

.price-asterisk {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 1.2rem;
    color: #000;
}

/* Event buttons */
.event-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 12px 20px;
    border: 3px solid #000;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    min-width: 140px;
}

.btn-reminder {
    background: #FFF8E7;
    color: #000;
}

.btn-reminder:hover {
    background: #000;
    color: #FCB72E;
}

.btn-booking {
    background: #FCB72E;
    color: #000;
}

.btn-booking:hover {
    background: #000;
    color: #FCB72E;
}

/* Info section */
.info-section {
    background: white;
    padding: 40px;
    border: 4px solid #000;
    box-shadow: 10px 10px 0px #FCB72E;
    margin-top: 40px;
    text-align: center;
}

.price-includes {
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
    background: #FFF8E7;
    padding: 15px;
    border: 2px solid #FCB72E;
}

.reservation-info {
    font-family: 'Crimson Text', serif;
    font-size: 1.5rem;
    color: #000;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-numbers {
    font-family: 'Crimson Text', serif;
    font-size: 1.4rem;
    color: #000;
    font-weight: 700;
    margin-bottom: 25px;
}

.contact-numbers a {
    color: #000;
    text-decoration: none;
    background: #FCB72E;
    padding: 12px 18px;
    border: 3px solid #000;
    margin: 0 8px;
    display: inline-block;
    transition: all 0.3s ease;
}

.contact-numbers a:hover {
    background: #000;
    color: #FCB72E;
}

.address-section {
    margin-top: 25px;
}

.address-link {
    color: #000;
    text-decoration: none;
    background: #FCB72E;
    padding: 15px 25px;
    border: 3px solid #000;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.address-link:hover {
    background: #000;
    color: #FCB72E;
}

/* Footer */
footer {
    background: #000;
    color: #FCB72E;
    text-align: center;
    padding: 40px 0 20px 0;
    margin-top: 60px;
    border-top: 5px solid #FCB72E;
}

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

.footer-section h3 {
    margin-bottom: 20px;
    color: #FCB72E;
    font-family: 'Crimson Text', serif;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.footer-section p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.footer-section a {
    color: #FCB72E;
    text-decoration: underline;
}

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

.reviews-stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin: 5px 0;
}

.footer-bottom {
    border-top: 3px solid #FCB72E;
    padding-top: 25px;
    font-size: 1rem;
}

.photo-disclaimer {
    font-family: 'Merriweather', serif;
    font-size: 0.8rem;
    color: #999;
    margin-top: 15px;
    font-style: italic;
    line-height: 1.3;
    transform: skew(-5deg);
    opacity: 0.8;
}

/* Responsive design */
@media (max-width: 768px) {
    .header-content { flex-direction: column; gap: 30px; }
    .logo-img { max-height: 140px; }
    .logo-text { font-size: 1.8rem; }
    .subtitle { font-size: 1.1rem; }
    .events-title { font-size: 1.8rem; }
    .events-grid { grid-template-columns: 1fr; gap: 30px; }
    .event-card { box-shadow: 8px 8px 0px #FCB72E; }
    .event-card:hover { transform: translate(-4px, -4px); box-shadow: 12px 12px 0px #FCB72E; }
    .event-content { padding: 25px; }
    .event-menu { font-size: 1.2rem; padding: 20px; }
    .event-buttons { flex-direction: column; gap: 10px; }
    .btn { width: 100%; font-size: 1rem; }
    .info-section { padding: 30px; box-shadow: 8px 8px 0px #FCB72E; }
    .footer-content { grid-template-columns: 1fr; gap: 30px; }
    .menu-toggle { display: block; }
    .menu-items {
        flex-direction: column;
        gap: 15px;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #000;
        display: none;
        padding: 20px;
        border-top: 3px solid #FCB72E;
    }
    .menu-items.mobile-open { display: flex; }
    .contact-numbers a { display: block; margin: 10px 0; }
    .address-link { display: block; margin: 15px 0; }
    .scroll-to-top { bottom: 20px; right: 20px; width: 45px; height: 45px; font-size: 18px; }
    .photo-disclaimer { transform: skew(-3deg); font-size: 0.75rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .logo-text { font-size: 1.6rem; }
    .events-title { font-size: 1.6rem; letter-spacing: 1px; }
    .event-date { font-size: 1.3rem; }
    .event-price { font-size: 1.6rem; }
    .menu-logo { font-size: 1.1rem; }
    .subtitle { font-size: 1rem; }
    .scroll-to-top { bottom: 15px; right: 15px; width: 40px; height: 40px; font-size: 16px; }
    .photo-disclaimer { transform: skew(-2deg); font-size: 0.7rem; }
}
