body {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    line-height: 2;
    margin: 0;
    padding: 0;
    background-image: url('images/bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
}

.welcome-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 20px;
}

header {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    text-align: center;

}

header .navbar {
    background-color: #174f33;
    border-bottom: 10px solid green;
    position: relative; /* Keep it relative for stacking order */
    z-index: 1; /* Set z-index to be above content */
}

header .navbar.sticky {
    background-color: rgba(242, 242, 242, 0.9); /* Change the background color */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Add a box shadow */
    transition: background-color 0.3s, box-shadow 0.3s; /* Add smooth transitions */
    top: 0; /* Stick it to the top of the viewport */
    position: fixed; /* Make it fixed to stay at the top */
    z-index: 1000; /* Set a higher z-index for the sticky header */
    width: 100%; /* Make the sticky navbar full width */
}

header .navbar-brand {
    font-size: 28px;
    height: 60px; /* Adjust the value to fit your navbar */
    padding: 50px 0; /* Add padding to move the logo down */
    margin: 0;
    display: flex;
    align-items: center;
}

header .navbar .navbar-logo {
    max-height: 200px; /* Adjust the value to fit your navbar */
    width: auto;
    margin-top: 84px;
    /*border-width: 50px;*/
    /*border-color: #000000 ;            FIGURE OUT BORDERS!*/
}

header .navbar-brand:hover .navbar-logo {
    transform: scale(1.2); /* Increase the size on hover */
    transition: transform 0.3s;

}

header .navbar-nav .nav-link {
    font-family: 'Raleway', serif;
    font-size: 20px;
    margin-left: 70px;
    transition: transform 0.3s, color 0.3s;
    color: darkgrey;
}

header .navbar-nav .nav-link:hover {
    transform: translateY(-3px);
    color: black;
    font-size: 22px;

}

.order-button {
    margin-left: auto; 
    padding: 10px;
  }
  
.order-button button {
    font-family: 'Raleway', serif;
    background-color: #018839;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.about-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-section .container {
    max-width: 800px;
    margin: 0 auto;
}

.about-section .interior {

    width: 50%;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
}

.carousel-inner{
    text-align: center;
    position: relative;
    height: 80vh;
}

.carousel-item {
    height: 70vh;
    position: relative;
    margin-top: 60px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s, transform 0.5s;
}

.carousel-image {
    height: 100%;
    background-size: cover;
    background-position: center;
}

.carousel-caption {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: end;
    color: #fff;
}

.carousel-caption h1 {
    font-size: 48px;
    font-weight: bold;
}

.carousel-item.active {
    opacity: 1;
    transform: translateY(0);
}

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    /*top: calc(100% - 30px);*/
}

.carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
}

.carousel-indicators li.active {
    background-color: rgba(255, 255, 255, 1);
}

.about-section{
    padding: 80px 0;
    background-color: rgba(255, 255, 255, 0.8);

}

.menu-section {
    padding: 100px 0;
    background-color: rgba(255, 255, 255, 0.8);
    height: 120vh;
}

.menu-section h2 {
    font-size: 36px;
    text-align: center;
}

.dish {
    padding: 30px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, box-shadow 0.3s;
    height: 90%;  
}

.dish:hover {
    background-color: #f2f2f2;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.dish h3 {
    font-size: 24px;
    font-weight: bold;
}

.dish p {
    font-size: 16px;
}

.row{
    text-align: center;
    justify-content: center;
}


.fullmenu-button {
    text-align: center;
    justify-content: center;
    padding: 40px 0; /* Adjust vertical padding as needed */

}

.fullmenu-button .btn {
    color: white;
    background-color: rgb(2, 155, 64);
    border: none;
    border-radius: 5px; /* Adjust for rounded corners */
    padding: 10px 20px; /* Adjust padding for button size */
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
    transition: background-color 0.3s; /* Add a smooth color transition on hover */
    text-align: center;
    width: 240px;
    height: auto;
}

.fullmenu-button .btn:hover {
    background-color: rgb(0, 128, 0); /* Change color on hover */
    cursor: pointer;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
    width: auto;
    height: 45rem;
}

footer h2 {
    font-size: 36px;
    text-align: center;
}

footer p {
    font-size: 18px;
}

#map {
    width: 100%;
}

h2{
    font-family: 'Poppins', sans-serif;
    font-size: x-large;
    font-weight: bold;
    margin-bot: 150px;
}

p{
    font-family: 'Playfair Display', serif;
}

a{
    font-family: 'Raleway', serif;
}



#contact h5 a {
    color: rgb(212,212,212) !important;
    font-size: 16px;
    text-decoration-line: underline;
    
}

#contact h6 a {
    color: rgb(212,212,212) !important;
    font-size: 40px;
    font-family: 'Raleway', serif;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.social-icons a {
    margin: 0 10px;
    text-decoration: none;
}

.social-icons img {
    width: 30px; /* Adjust the size as needed */
    height: auto;
}