/* Styling for header and footer */
body {
    background-color: #f7d771;
    font-family: Arial, sans-serif; 
    margin: 0;
    padding: 0;
}

.site-header, .site-footer {
   /* Reduced padding */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
    background-color: #fff; 
}

.container {
    width: 60%;
    margin: 0 auto;
    padding: 0 10px; 
    overflow: hidden; 
}

.logo img {
    max-width: 160px; /* Reduced logo size */
    height: auto;
}

.main-nav ul, .footer-links ul {
    list-style: none;
    padding: 0;
}

.main-nav ul li, .footer-links ul li {
    display: inline;
    margin-right: 8px; /* Reduced margin */
}

.social-media img {
    width: 18px; /* Reduced social media icon size */
    height: 18px; 
    margin-right: 3px; /* Reduced margin */
}

.footer-info h3 {
    font-size: 0.9rem; /* Reduced font size */
    margin-bottom: 6px; /* Reduced margin */
}

.footer-info p {
    margin: 3px 0; /* Reduced margin */
}

.navbar {
    background-color: transparent; 
}

.navbar-nav .nav-link {
    color: #333 !important; /* Darker font color */
    transition: color 0.3s;
    font-weight: bold !important;
}

.navbar-nav .nav-link:hover {
    color: #141414 !important; /* Darker font color on hover */
}
.social-media img {
    width: 50px; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    .container {
        width: 100%; 
        padding: 0 20px; 
    }

    .logo img {
        max-width: 100px; 
    }

    .main-nav ul li, .footer-links ul li {
        display: block; 
        margin-right: 0; 
        margin-bottom: 6px; /* Reduced margin */
    }
}
