/* Remove default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Ensures consistent box sizing across all elements */
}

/* Make sure the body takes up the full height of the page */
body {
    margin: 0;
    padding: 0;
}

/* Ensuring the header and navbar use full width */
nav {
    width: 100%; /* Full width */
}

/* General font styling for the navbar */
.nav-bar {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #f8f8f8; /* Adjust as needed */
    font-family: 'Alegreya', Serif; /* Apply Alegreya font */
    font-size: 11px; /* Set font size */
    font-weight: lighter; /* Or use a specific weight like 100 or 200 for thinner text */
    color: #121212; /* Default text color */
}

/* Header container ensures logo and links are aligned */
.header-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    gap: 20px; /* Space between logo and buttons */
    padding-top: 10px;
    padding-left: 40px;
    padding-bottom: 10px;
}

/* Flex container for logo and links */
.header-content {
    display: flex;
    align-items: center;
    gap: 20px; /* Space between logo and nav links */
}

/* Navigation links styling */
.nav-link {
    display: flex;
    list-style: none;
    gap: 20px; /* Space between links */
    margin: 0;
    padding: 0;
}

/* Individual link styles */
.nav-link li a {
    text-decoration: none;
    color: #121212; /* Default text color */
    transition: color 0.3s;
}

.nav-link li a:hover {
    color: #121212BF; /* Highlight color */
    text-decoration: underline; /* Optional underline effect on hover */
}

/* Dropdown menu styling */
.dropdown {
    position: relative;
}

.dropdown-icon {
    display: inline-block; /* Needed for rotation */
    transform: rotate(-90deg); /* Rotate the '<' to make it look like a 'v' */
    font-size: 11px; /* Adjust size if necessary */
    font-weight: lighter; /* Or use a specific weight like 100 or 200 for thinner text */

    color: #121212; /* Default text color */
    margin-left: 5px; /* Add some spacing from "Home" */
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%; /* Align below parent */
    left: 0;
    background-color: #fff; /* Background for dropdown */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 10px 0;
    margin: 0;
    z-index: 1000;
    border: 1px solid #ddd; /* Optional: Border for dropdown */
}

.dropdown-menu li {
    padding: 5px 20px;
}

.dropdown-menu li a {
    text-decoration: none;
    color: #121212; /* Default text color */
    display: block;
    transition: background-color 0.3s, color 0.3s;
}

.dropdown-menu li a:hover {
    background-color: #121212BF; /* Highlight background */
    color: #fff; /* Optional: Text color change on hover */
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Logo styling */
.header-logo img {
    display: block;
    height: 60px; /* Adjust logo size */
}

/* Adjust spacing between logo and buttons */
.header-content > a,
.nav-links {
    margin-left: 10px; /* Ensure some spacing */
}

