/* 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 menu container */
.menu-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 2 columns */
    grid-gap: 50px; /* Reduced gap between items */
    padding: 50px;
    margin-top: 50px; /* Adjust if necessary to give space for the logo */
    z-index: 2;
}

.menu-item {
    text-align: center; color: antiquewhite;
    transition: transform 0.3s ease; /* Smooth transition for hover effect */
}
.menu-item img {
        border-radius: 10px; /* Apply rounded edges */
        width: 50%; /* Adjust width as necessary */
       
}

.menu-item p {
    margin-top: 10px;
}

.menu-item:hover {
    transform: scale(1.1); /* Slightly enlarges the item on hover */
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .menu-container {
        grid-template-columns: 2fr;
    }

    .logo img {
        height: 50px;
    }
}
