

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Segoe UI', sans-serif;
  background: url('images/CBR_Beach.avif') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
}

/* Restaurant Layout */
.restaurant-layout.single {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 120px 20px 60px;
  min-height: 60vh;
}

.menu-box {
  background-color: rgba(64, 179, 197, 0.84); /* Blue with 84% opacity */
  color: white;
  padding: 40px; /* Increased padding */
  border-radius: 8px;
  width: 480px; /* Increased width */
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.restaurant-title {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.menu-links li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 2px dashed white;
  padding: 5px 0;
}

.menu-links li a span {
  font-size: 20px;
}

.menu-links li a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .menu-box {
    width: 95%;
    padding: 30px; /* Adjusted padding */
  }
}


/* ########################################################### */


.home-button-container-top {
    position: absolute; /* Stays Absolute */
    
    /* Move it up relative to the section's top edge */
    top: 30px; /* CRITICAL: A negative value pulls the element *above* the top edge of the section. */
    
    /* Position horizontally, e.g., centered */
    left: 50%;
    transform: translateX(-50%); /* Centers the button horizontally */
    
    z-index: 10; 
}

.home-button-container-bottom {
    position: absolute; /* Stays Absolute */
    
    /* Move it up relative to the section's bottom edge */
    bottom: 50px; /* CRITICAL: A negative value pulls the element *above* the top edge of the section. */
    
    /* Position horizontally, e.g., centered */
    left: 50%;
    transform: translateX(-50%); /* Centers the button horizontally */
    
    z-index: 10; 
}

.home-button {
    display: inline-block;
    padding: 8px 15px;
    background-color: navy;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}
