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;
}
/* Style for the entire content container */
.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

/* Style for the title */
h1 { 
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2em;
  color: #ffffff;
  margin-bottom: .8em; 
}
.tagline {
  font-size: 1.2em;
  color: #f5efef;
  margin-bottom: 1em; /* Spacing between tagline and button */
}


/* Style for the external link button */
.external-link {
  background-color: #80cedca8; /* Vegetarian Delights theme color */
  color: white;
  padding: 1em 2em;
  text-decoration: none;
  display: inline-block;
  margin-top: 1em;
  transition: background-color 0.3s ease; /* Smooth background color transition for hover effect */
}


/* Hover effect for the external link button */
.external-link:hover {
  background-color: #deb887a5;
}


.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 */
  }


footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1em 0;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.parallax {
    min-height: 400px; /* Adjust height as needed */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.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;
}
