/*
Theme Name: Le Bonolo Theme
Theme URI: https://www.le-bonolo.co.za/
Author: Your Name
Author URI: https://www.le-bonolo.co.za/
Description: Custom theme for Le Bonolo Investment Enterprise.
Version: 1.0
*/

/* Basic Reset and Font Settings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #121212;
    color: #f4f4f4;
}

/* Vertical Scrollbar Styling */
body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: #1a1a1a;
}

body::-webkit-scrollbar-thumb {
    background-color: #f05454;
    border-radius: 4px;
}

body::-webkit-scrollbar-thumb:hover {
    background-color: #d94343;
}

/* Top Navigation Bar */
.top-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 10%;
    background-color: #1a1a1a;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
    flex-wrap: wrap;
}

.top-nav img.logo {
    width: 70px;
    height: 70px;
    margin-right: 0.5rem;
}

.top-nav .company-name {
    color: #f05454;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.top-nav ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
}

.top-nav ul li {
    margin: 0 1rem;
}

.top-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: color 0.3s;
}

.top-nav ul li a:hover {
    color: #f05454;
}

/* Header Styling */
header {
    background: url('https://images.pexels.com/photos/443378/pexels-photo-443378.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2') no-repeat center center/cover;
    height: 100vh;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
}

header .overlay {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 2rem;
}

header h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

header p {
    font-size: 1.2rem;
    margin: 1rem 0;
}

.cta-button {
    background-color: #f05454;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background-color 0.3s;
}

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

/* Section Styles */
section {
    padding: 4rem 10%;
    text-align: center;
    scroll-margin-top: 100px;
}

section h2 {
    font-size: 2rem;
    color: #f05454;
    margin-bottom: 1rem;
}

/* Who We Are Section */
#who-we-are {
    background-color: #1e1e1e;
    padding: 3rem;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
}

#who-we-are h2 {
    color: #f05454;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

#who-we-are p {
    color: #f4f4f4;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}
/* Our team */
.team-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #ffffff;
}

.team-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.team-member {
    max-width: 250px;
    text-align: center;
    background-color: #f1f1f1;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: scale(1.05);
}

.team-img {
	display: inline-block;
    width: 100%;
    height: auto;
    border-radius: 50%;
    margin-bottom: 15px;
}

.team-member h2 {
    font-size: 1.2rem;
    margin: 10px 0;
    color: #222;
}

.team-member p {
    font-size: 1rem;
    color: #555;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background-color: #1e1e1e;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.6rem;
    color: #f4f4f4;
    margin: 1rem;
}

.service-card p {
    font-size: 1rem;
    color: #ddd;
    margin: 1rem;
}

/* Specialized Sectors Section */
#sectors {
    background-color: #1e1e1e;
    padding: 3rem;
    border-radius: 12px;
    margin: 2rem auto;
    max-width: 1050px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

#sectors h2 {
    color: #f05454;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

#sectors ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 2;
}

#sectors ul li {
    font-size: 1.2rem;
    color: #f4f4f4;
    margin: 0.5rem 0;
    position: relative;
    padding-left: 20px;
}

/* Adding Bullet Icon Before Each Item */
#sectors ul li::before {
   
    color: #f05454;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0;
}

/* Job Listings Section */
.job-listings {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.job-post {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.job-post h3 {
    color: #ff6b6b;
    margin-bottom: 10px;
}

.job-post p {
    color: #ccc;
}

.job-post .cta-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    color: #fff;
    background-color: #f05454;
    border-radius: 5px;
    text-decoration: none;
}

.job-post .cta-button:hover {
    background-color: #dc0000;
}

/* Latest Insights Section */
#blog {
    background-color: #1a1a1a;
    padding: 3rem;
    border-radius: 12px;
    margin: 2rem auto;
    max-width: 1050px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

#blog h2 {
    color: #f05454;
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Latest Insights Section */
#blog {
    background-color: #1a1a1a;
    padding: 3rem;
    border-radius: 12px;
    margin: 2rem auto;
    max-width: 1050px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

#blog h2 {
    color: #f05454;
    font-size: 2rem;
    margin-bottom: 1rem;
}

#blog p {
    color: #f4f4f4;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
/* Why Choose Us Section */
#why-choose-us {
    background: linear-gradient(145deg, #1a1a1a, #1e1e1e);
    padding: 3rem;
    border-radius: 15px;
    margin: 2rem auto;
    max-width: 1050px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

#why-choose-us h2 {
    color: #f05454;
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

#why-choose-us ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 2;
}

#why-choose-us ul li {
    font-size: 1.2rem;
    color: #f4f4f4;
    margin: 1rem 0;
    position: relative;
    padding-left: 30px;
}

/* Icon Before Each Item */
#why-choose-us ul li::before {
    content: "✔";
    color: #f05454;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0;
}

/* Highlighting Key Terms */
#why-choose-us ul li strong {
    color: #f05454;
    font-weight: bold;
}


/* Contact Us Section */
#contact {
    background-color: #1e1e1e;
    padding: 3rem;
    border-radius: 12px;
    margin: 2rem auto;
    max-width: 1050px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

#contact h2 {
    color: #f05454;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

#contact p {
    color: #f4f4f4;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-details {
    color: #f4f4f4;
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-details a {
    color: #f05454;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}


/* Footer */
footer {
    background-color: #121212;
    padding: 1.5rem;
    text-align: center;
    color: #ccc;
    font-size: 0.9rem;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .top-nav ul {
        flex-direction: column;
        align-items: center;
    }

    header h1 {
        font-size: 2rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 0.6rem 1rem;
    }
}

@media (max-width: 576px) {
    header h1 {
        font-size: 1.8rem;
    }

    .contact-form input, .contact-form textarea {
        width: 100%;
    }
}
