header {
    display: flex;          
    justify-content: flex-start;
    align-items: center;    
    gap: 40px;              
    padding: 10px;
    background-color: #d5bdaf;
}

header img{
    width: 80px;
    height:auto
}

body {
    margin: 0;
    display: block;          /* row */
    justify-content: flex-start;
    align-items: center;    
    gap: 40px;              /* space between image and nav */
    padding: 10px;
    background-color: #f5ebe0;
}


.topnav{
    overflow: hidden;
    color:rgb(255, 255, 255);
}

.topnav a {
    float: left;
    text-decoration: none; 
    color: #ffffff;
    text-align: center;
    font-weight: bold;
    padding: 14px 16px;
    font-size: 17px;
}

.topnav a:hover {
    background-color: #b2967d;
    color: rgb(0, 0, 0);
  }

.announcement {
    background-color: #ffffff;
    color: rgb(107, 18, 83);
    padding: 8px 16px;
    font-weight: bold;
    font-size: 18px;
    text-align: center; 
    display: block;
}

main img{
    object-fit: cover;
    width: 100%;
    height:350px;
}

.aboutUs {
    display: flex;                 
    justify-content: space-between;
    align-items: flex-start;       
    gap: 40px;                     
    margin-top: 20px;
  }


.hours-container {
    display: flex;
    gap: 40px;
    margin-top: 20px;
    align-items: flex-start;
  }
  
.weekday-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  

.weekday-list li { 
    padding: 10px 15px; 
    margin-bottom: 8px; 
    background-color: #d5bdaf; 
    color: #fff; 
    font-weight: bold; 
    cursor: pointer; 
    border-radius: 5px; 
    transition: background-color 0.3s; }
  
  
  
.weekday-list li:hover {
    background-color: #d5bdaf;
  }
  
 .weekday-list li.active {
    background-color: #b2967d;
  }
  
.hours-display {
    flex: 1;
    min-height: 300px;
    padding: 10px;
    border: 2px solid #b2967d;
    border-radius: 5px;
    background-color: #e3d5ca;
    font-size: 18px;
    font-weight: bold;
    color: #6b1253;
  }
  



/* Booking form styles */
.booking {
    margin-top: 40px;
    padding: 20px;
    background-color: #f5ebe0;
    border-radius: 8px;
  }
  
.booking label {
    font-weight: bold;
    color: #000000;
  }
  
.booking input, .booking button {
    padding: 8px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
  }
  
#bookingResults {
    margin-top: 20px;
    padding: 15px;
    background-color: #fff;
    border: 2px dashed #b2967d;
    border-radius: 5px;
  }
  