/* General Styles */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
}

.container {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
}

h1, h2, h3 {
    color: #fff;
}

p {
    font-size: 1.1em;
    line-height: 1.6;
}

/* Header Section */
.hero {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 80px 0;
    border-bottom: 5px solid #00FF00; /* Light green border */
}

.hero h1 {
    font-size: 2.8em;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-block;
    background-color: #00FF00; /* Light green */
    color: #000;
    padding: 14px 30px;
    text-decoration: none;
    font-size: 1.3em;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #00cc00; /* Darker green */
}

/* Why Choose BongaCams Section */
.why-bongacams {
    background-color: #111;
    padding: 60px 0;
    text-align: center;
}

.welcome-section {
    background-color: #111;
    padding: 60px 0;
    text-align: center;
}

.features {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    gap: 10px; /* Space between the boxes */
}

.feature {
    width: 25%; /* Ensure each box takes up 30% of the container */
    background-color: #333;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
}

.feature h3 {
    margin-bottom: 10px;
    color: #00FF00;
}

/* Adjustments for smaller screens */
@media screen and (max-width: 768px) {
    .feature {
        width: 100%; /* Make each box take up the full width on smaller screens */
        margin-bottom: 20px; /* Space between the boxes */
    }
}
/* Featured Models Section */
.featured-models {
    background-color: #111;
    padding: 60px 0;
}

.models-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 5px;

}

.model {
    width:25%;
    background-color: #333;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Footer Section */
footer {
    background-color: #000;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

footer p {
    font-size: 1.2em;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hero h1 {
        font-size: 2.2em;
    }

    .feature, .model {
        width: 100%;
        margin-bottom: 30px;
    }

    .cta-btn {
        font-size: 1.2em;
    }
}

@media screen and (max-width: 480px) {
    .hero h1 {
        font-size: 1.8em;
    }

    .cta-btn {
        font-size: 1.1em;
        padding: 12px 25px;
    }
}
