* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #222;
    color: #fff;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* HEADER - FIXED WIDTH TO MATCH CONTAINER */
header {
    text-align: center;
    padding: 15px 0;
    margin-bottom: 30px;
    border-bottom: 2px solid #D47500;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* BANNER IMAGE - FULL WIDTH, AUTO HEIGHT, PERFECT ASPECT RATIO */
.banner-image {
    width: 100%;
    margin-bottom: 15px;
    text-align: center;
    overflow: hidden;
}

.banner-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
}



/* Hotel name row */
.hotel-name-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

/* UNDERA HOTEL */
h1 {
    color: #D47500;
    font-size: 4.0em;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: bold;
    white-space: nowrap;
}

.logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #D47500;
}

/* Info row */
.info-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 25px;
    padding: 15px 0;
    font-weight: bold;
    margin-top: 10px;
}

.call-image {
    width: 200px;
    height: auto;
    justify-self: start;
}

.highlight-bar {
    background-color: #D47500;
    color: #222;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1.7em;
    letter-spacing: 1px;
    font-weight: bold;
    white-space: nowrap;
    justify-self: center;
}

.fb-image {
    width: 200px;
    height: auto;
    justify-self: end;
}

/* SINGLE COLUMN LAYOUT */
.weekly-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.day-section {
    background-color: #333;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #D47500;
}

.day-name {
    color: #D47500;
    font-size: 1.8em;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #444;
}

.events-list .event {
    background-color: #2a2a2a;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 5px;
    line-height: 1.6;
}

.events-list .event:last-child {
    margin-bottom: 0;
}

.events-list .event p {
    margin: 5px 0;
}

.no-events {
    color: #666;
    font-style: italic;
    padding: 10px;
    text-align: center;
    font-size: 1.0em;
}

footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    color: #666;
    font-size: 0.9em;
    border-top: 1px solid #444;
}

/* Mobile optimization - IMAGES SIDE-BY-SIDE */
@media (max-width: 768px) {
    .hotel-name-row {
        flex-direction: column;
        gap: 10px;
    }
    
    header h1 {
        font-size: 2.5em;
    }
    
    /* Stack images horizontally, highlight bar below */
    .info-row {
        grid-template-columns: 1fr 1fr; /* Two columns for images */
        grid-template-rows: auto auto; /* Two rows: images, then highlight */
        gap: 10px;
        padding: 10px 0;
        align-items: center;
    }
    
    .call-image {
        grid-column: 1; /* First column */
        grid-row: 1; /* First row */
        width: 150px;
        margin: 0 auto;
    }
    
    .fb-image {
        grid-column: 2; /* Second column */
        grid-row: 1; /* First row */
        width: 150px;
        margin: 0 auto;
    }
    
    .highlight-bar {
        grid-column: 1 / span 2; /* Spans both columns */
        grid-row: 2; /* Second row */
        width: 100%;
        padding: 8px 15px;
        font-size: 1.3em;
        justify-self: center;
    }
}