.container {
    width: 60%;
    margin: 0 auto; 
}

.grey {
    background-color: #FFF9E9;
    padding: 40px;
}

.white {
    background-color: #ffffff;
    padding: 40px;
}

.menu {
    border-bottom:3px;
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    border-style:solid;
    border-color: #9BA7C0;
    background-color:#242424;
    padding: 10px;
    margin:0;
}

.menu .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.header-nav a {
    text-decoration: none;
    color: #FFF9E9;
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 16px;
}

.header-logo {
    width: 15%;
}

.header-logo img {
    max-width: 100%;
    height: auto;
    display: block;
}

.footer {
border-bottom:3px;
border-top: 0px;
border-left: 0px;
border-right: 0px;
background-color:#242424;
padding: 40px;
margin:0;
align-items: flex-start;
}

.footer a {
text-decoration: none;
color: #FFF9E9;
font-family: 'Montserrat';
font-weight: 500;
font-size: 16px;
}

.footer .container {
display: flex;
justify-content: space-between;
}

.footer-nav {
display: flex;         
flex-direction: column; 
gap: 10px;          
justify-content: flex-end;
}


.footer-logo {
width: 15%;
}

.footer-logo img {
max-width: 100%;
height: auto;
display: block;
}

.image-container {
    display: flex;
    justify-content: space-between; 
    width: 60%;
    margin: 0 auto; 
    align-items:center;
}

.text-content {
    width: 60%;
    padding-right: 20px;
}

.image-content {
    width: 40%;
}

.image-content img {
    width: 100%; 
    height: auto;
}

.intro {
    position: relative;
    padding: 100px;
    background-image: url("intro-background.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #ffffff;
    z-index: 1; 
}

.intro::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(36, 36, 36, 0.6);
    z-index: -1;
}

h1{
    color:#9B510A;
    font-family: 'Montserrat';
    font-weight: 900;
    font-size: 35px;
    text-align:center;
}

h2{
    color:#9B510A;
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 25px;
    text-align:left;
}

h3{
    color:#9B510A;
    font-family: 'Montserrat';
    font-weight: 550;
    font-size: 16px;
    text-align:center;
}

p{
    color:#242424;
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-align:left;
}

li{
    color:#242424;
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 16px;
    padding-bottom: 20px;
    text-align:left;
}

strong{
    color:#9B510A;
    font-family: 'Montserrat';
    font-weight: 800;
    font-size: 16px;
    text-align:left;
}

button{
    color:#FFF9E9;
    background-color:#9B510A;
    font-family: 'Montserrat';
    font-weight:700;
    font-size:16px;
    border-radius: 15px;
    padding:15px;
    margin-top:10px;
    border-color: #242424;
    border-style: solid;
    border-width: 1px;
    box-shadow: 0px 0px 10px rgba(51, 34, 25, 0.2);
}

.button:hover {
    box-shadow: 0px 0px 15px rgba(51, 34, 25, 0.5);
}

.faq-item {
    margin-bottom: 4px;
}

.faq-question {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 18px;
    width: 100%;
    background-color: #ffffff;
    color: #332219;
    padding: 12px;
    text-align: left;
    font-weight: 500;
    border: solid;
    border-color:#ffffff;
    outline: none;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.faq-question:hover {
    color: #332219;
    border-color:#332219;
    border:solid;
}

.faq-question.open {
    background-color: #332219;
    color: #ffffff;
}

.faq-answer {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 26px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background-color: #ffffff;
    color: #332219;
    padding: 0 12px;
    font-weight: 400;
}

.faq-answer.open {
    padding-top: 10px;
    padding-bottom: 10px;
}

.faq-question:focus,
.faq-question:active,
.faq-question:visited {
    background-color: #332219;
    color: #ffffff;
    outline: none;
    box-shadow: none;
}

h3.faq-question {
    margin: 0;
    cursor: pointer;
}

.timetable {
    font-family: 'Montserrat';
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.timetable th, .timetable td {
    padding: 15px;
    text-align: center;
    border: 1px solid #FCD050;
}

.timetable th {
    background-color: #FCD050;
    color: #9B510A;
}

.timetable td {
    cursor: pointer;
}

.timetable td.available:hover {
    background-color: #FCD050;
}

.timetable td.booked {
    background-color: #f2f2f2;
    color: #a0a0a0;
    cursor: not-allowed;
}

.heading{
    background-color: #FFF9E9;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    overflow: auto;
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #9BA7C0;
    width: 35%;
    border-radius: 10px;
    position: relative;
}


.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #9BA7C0;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
    color: #242424;
    text-decoration: none;
    cursor: pointer;
}

select {
  width: 200px;
  padding: 10px;
  border: 1px solid #9B510A;
  border-radius: 5px;
  background-color: #f9f9f9; 
  color: #242424; 
  font-family: 'Montserrat';
  font-size: 16px; 
}

select:focus {
  border-color: #242424; 
  box-shadow: 0 0 5px rgba(36, 36, 36, 0.6); 
}

input[type="checkbox"] {
  accent-color: #9B510A; /* gives the checkbox the same brownish-gold tone */
  width: 18px;
  height: 18px;
  cursor: pointer;
  margin-right: 10px;
}

label[for="TnC"] {
  font-family: 'Montserrat';
  font-size: 16px;
  color: #242424;
  cursor: pointer;
}

.timetable td.booked {
    background-color: #f2f2f2;
    color: #a0a0a0;
    cursor: not-allowed;
}
