/* General Site Styling */
body {
    margin: 0;
    font-family: 'Lato', sans-serif;
    color: #343A40;
    background-color: #F8F9FA;
}

h1,
h2 {
    font-family: 'Playfair Display', serif;
    color: #2C5F2D;
}

/* Sticky nav */
.navbar {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    padding: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 14px;
    margin: 0;
    padding: 0;
}

.navbar a {
    text-decoration: none;
    color: #1D3557;
    font-weight: bold;
}

.navbar a:hover {
    color: #457B9D;
}

/* Banner with overlay text */

.banner {
    position: relative;
}

.banner img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.banner-text {
    position: absolute;
    top: 15%;
    left: 20%;
    color: #ffffff;
    text-align: center;
}

.banner-text h1 {
    font-size: 50px;
}

.banner-text p {
    font-size: 25px;
}

/* Home page content */
.container {
    max-width: 800px;
    margin: 24px auto;
    padding: 0 12px;
    text-align: center;
}

.photo-gallery {
  max-width: 1000px;
  margin: 32px auto;
  padding: 0 16px;
  text-align: center;
}

.photo-gallery h2 {
  font-size: 28px;
  color: #2C5F2D;
  margin-bottom: 16px;
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.gallery-grid img {
  width: 30%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Styling for Font Awesome Icons */

.fa-regular,
.fa-solid {
    color: #457b9d;
    padding-right: 5px;
}

/* footer styling */
.footer {
    background-color: #355E3B;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 15px;
    padding: 15px;
    text-align: center;
}

.footer img {
    height: 30px;
    width: auto;
}

.footer p {
    margin: 0;
    font-size: 12px;
}


/* Table Styling */

caption {
    font-size: xx-large;
    font-weight: bold;
    padding-bottom: 10px;
}

.roomtable {
    width: 90%;
    border-collapse: collapse;
    margin-top: 16px;
    margin-left:auto;
    margin-right: auto;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.roomtable th{
    text-align: center;
}
.roomtable th,
.roomtable td {
    padding: 12px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.roomtable thead {
    background-color: #457B9D;
    color: white;
}

.roomtable tr:nth-child(even) {
    background-color: #F1FAEE;
}

.roomtable tr:hover {
    background-color: #E8D4B0;
}

/* Form Styling */

.stayplanner {
    max-width: 700px;
    margin: 24px auto;
    padding: 20px;
    border: 1px black solid;
    border-radius: 5px;
    background-color: #e8d4b0;
}

.stayplanner h2 {
    font-size: 26px;
    color: #2C5F2D;
    text-align: center;
    margin-top: 5%;
}

.info-form{
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-color: #ffffff;
    padding: 24px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1)
}

.info-form label {
    font-weight: bold;
    margin-top: 15px;
    padding: 5px;
}

.info-form input, .info-form select {
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    width: 100%;
    box-sizing: border-box;
}

.info-form textarea {
  padding: 8px;
  font-size: 14px;
  border: 1px solid #ccc;
  width: 100%;
  resize: vertical;
  box-sizing: border-box;
}

.info-form fieldset label {
  display: inline-block;
  margin-right: 16px;
  vertical-align: middle;
}

fieldset {
  border: 1px solid #ccc;
  margin-top: 12px;
  margin-bottom: 16px;
}

legend {
  font-weight: bold;
  margin-bottom: 4px;
}

button[type="submit"] {
  background-color: #2C5F2D;
  color: white;
  padding: 10px 16px;
  border: none;
  font-size: 14px;
  margin-top: 12px;
}
