/* Style for the video background */
.video-background {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: auto;
}

/* Style for the logo */
.logo {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
}

.logo img {
    height: 200px; /* Adjust as needed */
}
/* Basic reset for styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif; /* Example font */
  }
  
  /* Style for the header */
  header {
    color: white;
    padding: 20px 0; /* Spacing above and below the navigation links */
  }
  
  /* Container to align content to the center */
  .container {
    width: 80%;
    margin: 0 auto;
    text-align: center;
  }
  
  /* Navigation styling */
  nav {
    text-align: right; /* Aligns the navigation to the right */
  }
  
  nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 18px;
    padding: 8px 16px; /* Spacing around the text */
    transition: color 0.3s ease-in-out;
  }
  
  /* Hover effect for nav links */
  nav a:hover {
    color: #deb887; /* Lighter color when hovering over the link */
  }
  
  /* Current page link styling */
  nav a.current {
    color: #deb887;
    border-bottom: 3px solid #deb887; /* Underline effect for the current page */
  }
  
/* Style for the reservation table */
.reservation-table {
    position: relative;
    width: 80%;
    margin: auto;
    margin-top: 210px; /* Adjust as needed */
    text-align: center;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent background */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
}

.reservation-table h2 {
    color: #4CAF50; /* Adjust color as needed */
    margin-bottom: 20px;
}

.reservation-table table {
    width: 100%;
    border-collapse: collapse;
}

.reservation-table th, .reservation-table td {
    border: 1px solid #ddd;
    padding: 8px;
}

.reservation-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.reservation-table th {
    padding-top: 12px;
    padding-bottom: 12px;
    background-color: #4CAF50;
    color: white;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .logo img {
        height: 50px;
    }

    .reservation-table {
        width: 95%;
        margin-top: 100px;
    }
}
