* {
    box-sizing: border-box;
    margin: 0;
}

@font-face {
    font-family: 'Roboto-Reg';
    src: url('./assets/Roboto/Roboto-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto-Thin';
    src: url('./assets/Roboto/Roboto-Thin.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto-Medium';
    src: url('./assets/Roboto/Roboto-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto-Bold';
    src: url('./assets/Roboto/Roboto-Bold.ttf') format('truetype');
}

.index-body {
    font-family: Arial, sans-serif;
    background: url('./assets/Bg-image.jpg') no-repeat center center fixed;
    background-size: cover;
}

@media (min-width: 992px) {
    .navbar-brand {
        padding-left: 150px;
        /* Add padding to the left of the logo */
    }

}

/* Container Main FOOTER*/
.container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    /* Space between columns */
    padding: 10px;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: unset;
        font-size: 14px;
    }

    footer .img {
        width: 50%;
    }
}

.toggle-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    z-index: 2;
}

.side-nav {
    height: 100%;
    width: 250px;
    position: fixed;
    top: 0;
    right: -250px;
    /* Initially hide the nav */
    background-color: black;
    color: #fff;
    overflow-x: hidden;
    transition: 0.3s;
    padding-top: 60px;
    z-index: 9999;
}

.side-nav a {
    padding: 8px 16px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    display: block;
    transition: 0.3s;
    line-height: normal;
}

.side-nav a:hover {
    background-color: #7a7A7A;
}

.side-nav .close-btn {
    font-size: 26px;
    position: absolute;
    top: 0;
    right: 0;
    padding: 16px;
    font-weight: 500;
}

.content {
    margin-right: 0;
    /* Adjust if you have content offset */
    padding: 16px;
}

.btn-custom {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
}

.btn-custom:hover {
    background-color: rgba(0, 0, 0, 0.7);
    /* Darker transparent black on hover */
}

.footer {
    background-color: black;
    color: white;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.footer p {
    margin: 0;
}

.social-media-img {
    float: right;
    width: auto;
    /* Default width */
}

/* Media query for large screens */
@media (min-width: 992px) {
    .social-media-img {
        width: 13%;
    }
}

/* FOOTER */

div .custom-link {
    font-weight: bold;
    color: #ffffff;
    text-decoration: none !important;
}

.online-order-btn{
    border-width: 1px;
    border-style: solid;
    float: right;
    border-color: #000;
    background-color: transparent;
    color: #000;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    padding:8px 18px;
    color:#514844;
}


.online-order-btn:hover{
    border-width: 1px;
    border-style: solid;
    float: right;
    border-color: #000;
   text-decoration: underline;
}

.logo{
    margin-left: -70px;
}

.column_container p{
    color: rgb(68, 68, 68) !important;
    font-family: 'Roboto-Reg';
    font-size: 14px;
    font-weight: 300;
}

.menu-title{
    color:black;
    font-size: 28px;
    font-family: 'Roboto-Medium';
    font-weight: 600;
}

.menu-desc{
 font-size: 18px;
 /* margin-top:10px; */
 /* margin-bottom:10px !important; */
}

.menu-name{
    font-family: 'Roboto-Bold';
    color:black;
    font-size: 18px; 
}

.footer-text{
    font-size: 14px;
}

.catering-para-title{
    font-family: 'Roboto-Bold';
    color:rgb(0, 0, 0);
    font-size: 14px;
}

.contact-title{
    font-family: 'Roboto-Bold';
    font-size: 14px;
    color:rgb(68, 68, 68);
    margin-bottom: 0px;
}

.contact-content{
    font-family: 'Roboto-Reg';
    font-size: 14px;
    color:rgb(68, 68, 68);

}

.reservations-title{
 color:black;
 font-family: 'Roboto-Medium';
    font-size: 50px;
}

.reservations-subtitle{
    color:black;
    font-size: 21px;
    font-family: 'Roboto-Medium';
    text-align: center;
    
}

.gallery-overlay{
    position:absolute;
    top:5px;
    left:15px;
    width:90%;
    margin: auto;
    height: 97%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hide{
    display: none;
}

.show{
    display: block;
}

.function-title{
    color:rgb(50, 50, 50);
    font-size: 21px;
    font-family: 'Roboto-Medium';
    text-align: center;
}

.function-note{
    color:rgb(50, 50, 50);
    font-size: 24px;
    font-family: 'Roboto-Medium';
    text-align: left;
}

@media only screen and (max-width:600px){
    .logo{
        margin-left: 0px;
    }
}