/* Basic styling for Zambia Market Connect website */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9fafb;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #1565c0; /* deep blue for trust */
    color: #fff;
    padding: 20px 0;
    /*position: sticky;*/
    top: 0;
    z-index: 100;
}

header h1 {
    margin: 0;
    padding-left: 20px;
    font-size: 1.8rem;
}

nav {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    flex-wrap: wrap;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    padding: 8px 15px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

nav a:hover,
nav a.active {
    background-color: #0d47a1;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

.hero {
    background-image: linear-gradient(rgba(21,101,192,0.6), rgba(21,101,192,0.6)), url('images/lusaka.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 30px;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 20px;
}

.cta-button {
    background-color: #ff9800;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background-color: #ef6c00;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    margin-top: 0;
    color: #1565c0;
}

footer {
    background-color: #f1f1f1;
    color: #666;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

/* Founder section */
.founder-section {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}
.founder-photo {
    width: 200px;
    height: auto;
    border-radius: 50%;
}

/* Table styling */
table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
}

th {
    background-color: #1565c0;
    color: white;
    text-align: left;
}

/* Pricing tiers */
.pricing-tier {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.pricing-tier h3 {
    color: #1565c0;
    margin-top: 0;
}

.pricing-tier ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.pricing-tier ul li {
    margin-bottom: 8px;
}

.pricing-tier .price {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.dashboard {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 20px;
}

.dashboard .metric {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    width: 250px;
    text-align: center;
    margin: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.metric h4 {
    margin: 0;
    color: #1565c0;
}

.metric p {
    font-size: 2rem;
    margin: 10px 0 0;
    font-weight: bold;
}

/* Contact form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form label {
    display: block;
    margin: 10px 0 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}

.contact-form button {
    margin-top: 10px;
    background-color: #1565c0;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
}

.contact-form button:hover {
    background-color: #0d47a1;
}
