/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #007BFF; /* Change to blue */
    padding: 20px;
    margin: 0;
    transition: background-color 1s ease-in-out; /* Smooth transition for color changes */
}

header {
    display: flex;
    justify-content: space-between; /* Space between logo and nav */
    align-items: center; /* Center items vertically */
    background-color: #f8c042;
    padding: 15px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 50px; /* Adjust based on your logo size */
}

nav {
    position: relative; /* For absolute positioning of menu */
}

.nav-toggle {
    background: #f8c042; /* Change hamburger menu background to #f8c042 */
    color: white; /* Change hamburger icon color to white */
    border: none; /* Remove default border */
    font-size: 24px; /* Size for the hamburger icon */
    cursor: pointer; /* Pointer cursor */
    display: none; /* Hide by default on larger screens */
	margin: 0 20px; /* Adjust margin as needed */
}

.nav-menu {
    list-style-type: none;
    margin: 0; /* Reset default margin */
    padding: 0; /* Reset default padding */
    display: flex; /* Flexbox for larger screens */
    justify-content: center; /* Center the nav items */
}

.nav-menu li {
    margin: 0 20px; /* Space between nav items */
}

.nav-menu li a {
    text-decoration: none; /* Remove underline from links */
    color: #73676e; /* Link color */
    font-weight: bold;
    transition: color 0.3s, transform 0.3s;
}

.nav-menu li a:hover {
    color: #d69f29; /* Change color on hover */
    transform: translateY(-2px);
}

.nav-menu.show {
    display: flex; /* Show menu when toggled */
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items */
    background-color: none; /* Background color */
    position: absolute; /* Position below the button */
    top: 60px; /* Position below the button */
    width: 100%; /* Full width */
    z-index: 10; /* Ensure it's above other content */
}

main {
    padding: 20px;
    background-color: #fff; /* Main content background color */
    margin: 20px auto;
    max-width: 800px; /* Limit main content width */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

h1 {
    margin-bottom: 20px;
    color: #333;
}

p {
    margin-bottom: 15px;
}

footer {
    text-align: center;
    padding: 15px 0;
    background-color: #333; /* Footer background color */
    color: #fff; /* Footer text color */
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: 20px;
    border-top: 5px solid #f8c042; /* Top border for footer */
}

blockquote {
    font-style: italic;
    color: #555; /* Change quote color */
    margin: 15px 0;
    padding-left: 10px;
    border-left: 2px solid #d69f29; /* Optional: decorative left border */
    transition: transform 0.3s; /* Add transition for effects */
    padding: 10px 15px; /* Padding for blockquotes */
    background-color: #f9f9f9; /* Light background for blockquote */
    margin: 20px 0; /* Margin for spacing */
}

/* Responsive Design */
@media (max-width: 600px) {
    .nav-toggle {
        display: block; /* Show the hamburger menu on small screens */
		margin: 0 10px; /* Smaller margin on mobile */
    }

    .nav-menu {
        display: none; /* Hide menu by default on small screens */
        flex-direction: column; /* Stack items vertically */
    }

    .nav-menu li {
        margin: 10px 0; /* Space between nav items */
		margin: 0 5px; /* Smaller margin between items on mobile */
    }

    main {
        padding: 15px; /* Padding for main content */
    }
	
	.single-line-text {
        font-size: 14px; /* Smaller font size for mobile */
    }
}
