/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f0f0f0; /* Set body background color */
    padding: 0px;
    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: white;
    padding: 15px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	    width: 100%; /* Full width of the screen */
}

.logo img {
    height: 50px; /* Adjust based on your logo size */
}

nav {
    position: relative; /* For absolute positioning of menu */
}

.nav-toggle {
    background: #f8c042; /* Hamburger menu background color */
    color: white; /* Hamburger icon color */
    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 {
	position: relative; /* Position for absolute positioning of sub-menu */
	margin: 0 10px; /* Space between nav items (adjust as needed) */
}

.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 */
}

.sub-menu {
    display: none; /* Hide the sub-menu by default */
    position: absolute; /* Position it below the parent */
    background-color: #f8c042; /* Background color for the dropdown */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional shadow */
    z-index: 1000; /* Ensure it appears above other content */
}

.dropdown-icon {
    margin-left: 5px; /* Space between the link and the icon */
    font-size: 12px; /* Adjust size as needed */
    transition: transform 0.3s; /* Animation for rotation */
}

.sub-menu.show {
    display: block; /* Show when toggled */
}

.nav-menu li:hover .sub-menu {
    display: block; /* Show the sub-menu on hover */
}

.sub-menu li {
    margin: 0; /* No margin for items in sub-menu */
}

.sub-menu li a {
    padding: 10px 20px; /* Padding for sub-menu links */
    display: block; /* Make the link occupy the full width */
    color: #333; /* Color for sub-menu links */
    text-decoration: none; /* Remove underline */
}

.sub-menu li a:hover {
    background-color: #d69f29; /* Change background on hover */
    color: white; /* Change text color on hover */
}

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 {
    background-color: #333; /* Background color */
    color: #fff; /* Text color */
    padding: 20px 0; /* Padding */
}

.footer-container {
    display: flex; /* Use flexbox */
    flex-wrap: wrap; /* Allow wrapping for responsiveness */
    justify-content: space-between; /* Space out columns */
    max-width: 1200px; /* Max width for the footer */
    margin: 0 auto; /* Center the footer */
    padding: 0 20px; /* Padding on sides */
}

.footer-column {
    flex: 1 1 calc(33.33% - 20px); /* Default to 3 columns with spacing */
    margin: 10px; /* Margin between columns */
    padding: 10px; /* Padding inside each column */
}

.footer-column h3 {
    margin-bottom: 10px; /* Space below the heading */
}

.footer-column a {
    color: #fff; /* Link color */
    text-decoration: none; /* Remove underline */
    display: block; /* Make links block elements */
    margin: 5px 0; /* Space between links */
}

.footer-column a:hover {
    text-decoration: underline; /* Underline on hover */
}

/* Media Query for Mobile */
@media (max-width: 600px) {
    .footer-column {
        flex: 1 1 calc(50% - 20px); /* Two columns with spacing */
    }
}



social-links {
    margin-top: 10px; /* Space above social links */
}

social-links a {
    margin: 0 10px; /* Space between social links */
    color: #f8c042; /* Color for social links */
    text-decoration: none; /* Remove underline */
}

.social-links a:hover {
text-decoration: underline; /* Underline on hover for visibility */
}

.sub-footer {
    text-align: center;
    padding: 10px 0;
    background-color: #444; /* Sub footer background color */
    color: #fff; /* Sub footer text color */
}

.sub-footer p {
    margin: 0;
}

.sub-footer a {
    color: inherit; /* Make the link color inherit from the parent (footer) */
    text-decoration: none; /* Remove the underline */
}

.sub-footer a:hover {
    text-decoration: underline; /* Optional: Underline on hover for visibility */
    color: #d69f29; /* Optional: Change color on hover */
}

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 */
    }
}
