body {
    font-family: Arial, sans-serif;
    background-color: black;
    color: white;
    margin: 0;
    padding: 0;
}

/* Two-Column Header */
header {
    background-color: black;
    padding: 15px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* Menu Toggle Button */
.menu-toggle {
    background-color: red;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 20px;
    cursor: pointer;
}

.menu-toggle:hover {
    background-color: #222;
}

/* Logo */
.logo {
    width: 150px;
    height: auto;
}

/* Social Media Icons */
.social-icons{
	padding:30px;
	background-color:#00506b;
  text-align: center;
}
.social-icons a{
	color:#fff;
  line-height:30px;
  font-size:30px;
  margin: 0 5px;
  text-decoration:none;
  
}
.social-icons a i{
	line-height:30px;
  font-size:30px;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1); 
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1); 
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1);
  transition: all 200ms ease-in;
  transform: scale(1);
}
.social-icons a:hover i{
  box-shadow: 0px 0px 150px #000000;
  z-index: 2;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1.5);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1.5);   
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1.5);
  transition: all 200ms ease-in;
  transform: scale(1.5);
}
/* Sidebar */
.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    background-color: red;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidebar a {
    display: block;
    color: white;
    padding: 10px;
    text-decoration: none;
    font-weight: bold;
}

.sidebar a:hover {
    background-color: black;
    color: red;
}

.sidebar .closebtn {
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 36px;
    cursor: pointer;
}

/* Main Content */
#main {
    transition: margin-left 0.5s;
    padding: 20px;
}

.menu-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.item {
    background-color: #222;
    padding: 15px;
    margin: 10px;
    border-radius: 10px;
    width: 200px;
    transition: transform 0.3s;
}

/* Hover Effect for Menu Items */
.item:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: red;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Download Button */
.download-btn {
    display: inline-block;
    background-color: red;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

img.buffet {
    /* align-items: center; */
    padding: 10px 20px 20px 20px;
    width: 202px;
    height: auto;
    display: block;
    margin: auto;
}

/* Hover Effect */
.download-btn:hover {
    background-color:transparent;
	border:red;
    color: white;
}



/* Contact Form */
form {
    max-width: 500px;
    margin: 0 auto;
    background-color: #222;
    padding: 20px;
    border-radius: 10px;
}

label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
    border: none;
}

input[type="submit"] {
    background-color: red;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

input[type="submit"]:hover {
    background-color: black;
}


.contact-info {
    flex: 1;
    padding: 20px;
}

iframe {
    border-radius: 10px;
    width: 100%;
}

/* Responsive Logo */
@media screen and (max-width: 768px) {
    .logo {
        width: 200px;
    }
}
