@charset "utf-8";

/* General Styling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Offset for fixed navbar */
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding-top: 60px; /* Reserve space for the fixed navbar */
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    color: #2c3e50;
    text-align: center;
    margin-top: 0;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
}

a {
    color: #3498db;
    text-decoration: none;
}

p {
    margin-bottom: 1em;
}

/* Navigation Bar */
.navbar {
    background-color: #2c3e50;
    color: #fff;
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-nav {
    font-size: 1.5em;
    font-weight: bold;
    color: #fff;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: #fff;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #3498db;
}

/* Hamburger Menu (for mobile) */
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    color: #fff;
}

/* Page Sections */
section {
    padding: 60px 0;
    text-align: center;
}

section:nth-child(odd) {
    background-color: #ecf0f1;
}

.section-logo {
    max-width: 350px;
    height: auto;
    margin-bottom: 30px;
}

.placeholder-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.service-item {
    margin-bottom: 40px; /* Space between service descriptions */
}

.suppliers-list {
    list-style: none;
    padding: 0;
    margin: 20px auto;
    max-width: 400px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
}

.suppliers-list li {
    background-color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Footer / Contact Section */
footer {
    background-color: #34495e;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

footer h2, footer h3 {
    color: #fff;
}

footer a {
    color: #ecf0f1;
    font-weight: bold;
}

.contact-info {
    margin: 30px 0;
}

.business-cards img {
    margin: 10px;
    max-width: 90%;
    width: 350px;
    height: auto;
}


/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #34495e;
        position: absolute;
        top: 60px; /* Height of the navbar */
        left: 0;
        padding: 10px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        text-align: center;
        margin: 10px 0;
    }

    .hamburger {
        display: block;
    }
}