
nav {
    background-color: #FFDAB9;
    color: #ffffff;
    padding: 20px 0;
}

.nav-links {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.nav-links li {
    display: inline;
    margin-right: 20px;

}

.nav-links li:last-child {
    margin-right: 0;
}

.nav-links a {
    color: #B28282;
    text-decoration: none;
    padding: 10px;
    font-weight: bold; 
    font-size: 25px; 
    font-family: "Itim", cursive;

    font-style: normal;
}

.nav-links a.active {
    font-weight: bold;
}

.icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}
.nav-links {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.nav-links li {
    display: inline;
    margin-right: 20px;
    position: relative; /* Make list items relative for absolute positioning */
}

.nav-links li:last-child {
    margin-right: 0;
}

.nav-links a {
    color: #B28282;
    text-decoration: none;
    padding: 10px;
    font-weight: bold;
    font-size: 20px;
    position: relative;
    font-size: 25px; 
    font-weight: 500;
}

/* Submenu styles */
.nav-links .submenu {
    display: none;
    position: absolute;
    top: 100%; /* Position the submenu below the parent list item */
    left: 0;
    background-color: #FFDAB9;
    z-index: 1; /* Ensure submenu appears above other content */
    padding: 20px;
    margin-top: 20px; /* Add padding to the submenu */
}


.nav-links li:hover .submenu {
    display: block; /* Show submenu when hovering over parent list item */
}

/* Styling for submenu links */
.nav-links .submenu li {
    display: block;
    margin-bottom: 8px; /* Add space between each submenu item */
}

.nav-links .submenu li a {
    display: block;
    padding: 8px 20px;
    color: #B28282;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    text-align: left; /* Align submenu text to the left */
}

.nav-links .submenu li a:hover {
    background-color: #FFE4C4; /* Change background color on hover */
}

/* Body styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Header styles */
header {
    background-color: #f8f9fa;
    padding: 20px;
    text-align: center;
}

.logo {
    max-width: 200px;
}

/* Footer styles */
footer {
    background-color: #FFDAB9;
    color: #B28282;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}
