body
{
    /*padding-top:70px;*/
    background-color:darkgray;
    margin:0px;
    padding:0px;
    height:auto;
    /*overflow:hidden;*/
    overflow-y:auto;
    min-height:100%;
}
.MainSlideShow
{
    display:flex;
    justify-content:center;
    align-items:center;
    white-space:nowrap;
    margin:0px;
    padding:0px;
    border:0px;
	/*margin-top:30px;
	margin-left:94px;
	width:623px;
	height:480px;*/
}
.MainSlideShowSample
{
    display:flex;
    justify-content:center;
    align-items:center;
    white-space:nowrap;
    margin:0px;
    padding:0px;
    border:0px;
	/*margin-top:30px;*/
	/*margin-left:94px;
	width:623px;
	height:481px;*/
/*	background-image:url(../images/NokorayaRestaurantWebsiteSampleViewportImage.jpg);*/
}
.center-img
{
    display: block;
    max-width: 100%;
    height: auto;
    /*margin-top: 20px;*/
}
.center-div
{    
    display: flex;
    flex-direction: column; /* horizontal */
    align-items: center;     /* vertical */       
    /*box-sizing: border-box;*/
    text-align: center;
}

.center-div-text
{    
    display: flex;
    flex-direction: column; /* horizontal */
    align-items: center;     /* vertical */        
    /*box-sizing: border-box;*/
    text-align: center;
    margin-top:20px;   
}

.responsive-text
{
    font-size: 1.2rem;     /* scales with screen width */
    /*max-width: 400px;*/
    line-height: 1.4;
    text-align: center;    
    margin-top:10px;
}

.lang 
{ 
    display: none; 
}
.lang.active 
{ 
    display: block; 

}
.lang-switch button {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 5px 10px;
    margin-left: 5px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 0.9rem;
    text-shadow: 3px 3px 5px black;
}

.lang-switch button:hover {
    background: white;
    color: white;
}




/* MENU */
.menu-container {
    max-width: 900px;
    margin: 0 auto;
}

.menu-section {
    margin-bottom: 40px;
}

.menu-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
    border-bottom: 2px solid #ccc;
    padding-bottom: 5px;
    text-shadow: 2px 2px 5px gray;
}

.menu-item {
    display: grid;
    grid-template-columns: 1fr auto auto; /* info | price | image */
    gap: 20px;
    align-items: center;
    width: 100%;
    max-width: 700px;
    margin-bottom: 20px;
}

.menu-item-name {
    font-weight: bold;
    margin-bottom: 4px;
}

.menu-item-desc {
    font-size: 0.9rem;
    color: #ddd;
}

.menu-item-price {
    text-align: right;
    white-space: nowrap; /* prevents wrapping */
}

.menu-item-image img {
    height: 50px;
    width: auto;
    object-fit: cover;
}
.site-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: white;
    text-shadow: 3px 3px 5px black;
    white-space: nowrap;
    font-size: clamp(10px, 2.5vw, 18px);
    padding: 10px 0;
    z-index: 999;
}

/*.textformat
{
    text-decoration:none;
    font-size:1.5rem;
    cursor:pointer;
    color:white;
    text-shadow: 3px 3px 5px black;
}*/

.Subheadings a
{
	font-weight: normal;
	color: purple;
	text-decoration: none;
}
.Subheadings a:hover
{
	font-family:"Tempus Sans ITC";
	font-weight: bold;
	color: green;
	text-decoration: underline;
}

a.MenuLink:visited
{
	color:WHITE;
}
a.MenuLink:link
{
	color:WHITE;
}
a.MenuLink:hover
{
	color:WHITE;
}
a.MenuLink.active
{
	color:WHITE;
}
/* --- Base Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.nav-container {
    width: 100%;
    background: transparent;
    border-bottom: 1px solid #ddd;
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.navbar a.nav-home { display: inline-block; min-width: 90px; text-align: center; }

/* --- Logo --- */
.nav-logo img {
    height: 35px;
}

/* --- Desktop Nav Links --- */
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links li a {
    text-decoration: none;
    color: white;/*#333;*/
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links li a:hover {
    color: #ff6600;
}

/* --- Hamburger Button (Hidden on Desktop) --- */
.hamburger {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color:white;
}

/* --- Mobile Styles --- */
@media (max-width: 768px) 
{
    .hamburger {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        background: rgba(50, 50, 50, 0.75);
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
        border-radius: 10px;
        /* Hidden by default */
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;

        /* Smooth animation */
        transition: max-height 0.3s ease, opacity 0.3s ease;
    }

    .nav-links.open {
        max-height: 300px; /* Enough for 4 links */
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        text-align: center;        
    }
    .menu-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu-item-price {
        margin: 5px 0 0 0;
    }
    .nav-li
    {
       position:absolute;
    }
    .downloads
    {
        position:absolute;
        top:420px;
        text-shadow: 3px 3px 5px black;
    }
    .imgTemp
    {
        width:100%;
        float:none;
        display:block;
        margin-top:250px;
        border:5px;
        border-width:5px;
        border-color:green;
    }
    /*Start: Fixes the Home & Accueil aligment*/
    #nav-home1
    {
        min-width:initial;
        text-align:center !important;        
    }
    #nav-home2
    {
        min-width:initial;
        min-height:10px;
        text-align:center;
    }
    /*End: Fixes the Home & Accueil aligment*/
}
.downloads
{
    position:absolute;
    top:475px;
    text-shadow: 3px 3px 5px black;
}