/* Reset default body margins */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif; /* Paragraph font */
    font-weight: 400;
    font-style: normal;
    background-color: #ffffff;
}

#logo {
    width: 100px;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    z-index: 1; /* Ensure nav is above the background */
}

.nav-container {
    display: flex;
    align-items: center;
}

.hamburger {
    background-color: transparent;
    color: #333; /* Off-white color for contrast */
    font-size: 30px;
    border: none;
    cursor: pointer;
    outline: none;
    transition: transform 0.3s ease; /* Smooth transition for scaling */
    display: block; /* Default display */
}

.hamburger:hover {
    transform: scale(1.1); /* Increase size by 10% on hover */
}

.nav-links {
    display: none; /* Hide navigation links by default */
    gap: 20px; /* Add space between links */
}

.nav-links a {
    color: #333; /* Adjust link color */
    text-decoration: none;
    padding: 10px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #feb254; /* Change color on hover */
}

/* Fullscreen Menu Overlay */
.menu-overlay {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #FFFDD0; /* Light cream color */
    overflow-x: hidden;
    transition: width 0.5s;
    z-index: 2;
}

.menu-content {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    color: #333; /* Dark text color */
}

.menu-content a {
    display: block;
    font-size: 24px;
    margin: 20px 0;
    color: #333;
    text-decoration: none;
    transition:font-size 0.3s ease ;
}

.menu-content a:hover {
    display: block;
    font-size: 30px;
    margin: 20px 0;
    color: #333;
    text-decoration: none;
}

.menu-content .order-btn {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    cursor: pointer;
    margin-top: 20px;
}

.language-options {
    margin-top: 40px;
}

.language-options a {
    color: #333; /* Dark color for contrast */
    margin: 0 10px;
    text-decoration: none;
    font-size: 14px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    background-color: transparent;
    color: #333;
    border: none;
    cursor: pointer;
    outline: none;
}

#myrondelez {
    color: white;
    background-color: brown;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 18px;
    cursor: pointer;
    margin-left: 20px; /* Space between nav links and MyRondelez */
    text-decoration: none;
    transition: background-color 0.3s ease, font-size 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
    font-family: 'Roboto', sans-serif; /* Button font */
}

#myrondelez:hover {
    background-color: #feb254;
    color: white;
    font-size: 19px; /* Slight increase in font size */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow effect on hover */
}

.order-btn1 {
    background-color: #FFFDD0;
    color: #333;
    padding: 10px 20px;
    border: 1px solid #333;
    border-radius: 25px;
    font-size: 18px;
    cursor: pointer;
    margin-top: 20px;
    font-family: 'Roboto', sans-serif; /* Button font */
    transition: font-size 0.3s ease, background-color 0.3s ease;
}

.order-btn1:hover {
    background-color: #feb254;
    font-size:19px ;
}

footer {
    background-color: #FFFFFF;
    justify-content: left;
    display: flex;
    padding: 30px;
    color: #2e2e2e;
    flex-direction: column;
}

.footlink {
    text-decoration: none;
    color: #333;
    font-family: 'Roboto', sans-serif; /* Footer font */
    transition: color 0.3s ease;
}

.footlink:hover {
    text-decoration: none;
    color: #feb254;
    font-family: 'Roboto', sans-serif; /* Footer font */
}


.footlinks {
    display: flex;
    flex-direction: column;
    font-size: 20px;
    justify-content: space-around;
}

.menu {
    font-weight: 600;
    font-family: 'Playfair Display', serif; /* Footer menu headings */
}

.container {
    display: flex;
    flex-direction: column;
    margin: 50px 0;
    background-color: #f0efef9e;
    justify-content: center;
    align-items: center;
    margin:40px 80px;
}

.container h1 {
    color: #4e4d4dc8;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size:27px;
    text-transform: uppercase;
    align-self: center;
    margin-top: 30px;
}

.container ul {
    color: #333;
    list-style: none;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 28px;
}

.list {
    margin: 0px 100px 50px;
}

li {
    margin-right: 100px;
}

.ptag {
    margin-top: -8px;
    font-size: 8px;
    margin-bottom: 0px;
    line-height: 13px;
}

.nomarg {
    margin: 10px 0px;
    line-height: 20px;
}

@media (min-width: 768px) {
    .hamburger {
        display: none; /* Hide hamburger menu on tablets and larger screens */
    }

    .nav-links {
        display: flex; /* Show nav links on tablets and larger screens */
        align-items: center;
        gap: 20px; /* Add space between links */
    }

    .list {
        display: flex;
        flex-direction: row;
    }

    .container h1 {
        margin-bottom: 20px;
    }

    .container {
        margin: 100px 100px 0px 100px;
    }

    li {
        
        margin: 5px 0px;
    }

    .nav-container {
        display: flex;
        align-items: center;
    }

    footer {
        flex-direction: row;
        justify-content: space-around;
    }
}

@media (min-width: 1024px){
   
    .container {
        margin: 100px 200px;
    }

    
}


@media (min-width: 1424px){
   
    .container {
        margin: 100px 500px;
    }
}