/* Updated colour palette for a sleek modern influencer marketing agency */
/* colour palette  (light dark)
primary: #1a1a2e
secondary: #16213e
accent: #0f3460
highlight: #e94560
background: #f5f5f5
*/

body {
    background-color: #f5f5f5;
    color: #1a1a2e;
}

#nav-bar {
    position: sticky;
    top: 0;
    z-index: 10;
}

.navbar {
    background-image: linear-gradient(to right, #1a1a2e 0%, #16213e 100%);
    padding: 15px 20px !important; /* Increased padding for thickness */
    border-radius: 10px;
    margin: 10px; /* Removed margin for alignment */
    box-shadow: 1px 4px 6px rgb(255, 255, 255); /* Adds a subtle shadow for distinction */
}

.navbar-brand {
    color: #e94560 !important;
}

.navbar-nav li {
    padding: 0 10px;
}

.navbar-nav li a {
    color: #f5f5f5 !important;
    font-weight: 700;
    float: right;
    text-align: left;
}

.fa-bars {
    color: #e94560;
    font-size: 30px;
}

.navbar-toggler {
    outline: none !important;
}

/* ---- banner section ---- */
#banner {
    background-color: #16213e; /* Secondary color for contrast */
    color: #f5f5f5; /* Light text for readability */
    border-radius: 10px;
    margin: 10px;
}

.promo-title {
    color: #f5f5f5; /* Updated to light color for better visibility */
    font-weight: bold;
    margin-top: 100px;
}

.img-fluid {
    width: 350px;
    margin-top: 40px;
    border-radius: 10px;
}

.bottom-img {
    width: 100%;
}

#hero {
    background-color: #1a1a2e; /* Primary color for a bold look */
    color: #f5f5f5;
    padding: 60px 0;
    text-align: center;
    border-radius: 10px;
    margin: 10px;
}

#hero h1,
#hero p {
    color: #f5f5f5;
}

#hero .btn-primary {
    background-image: linear-gradient(to right, #e94560 0%, #e94560 100%);
    color: white;
    /* padding: 10px 30px;
    border-radius: 20px;
    border: none; */
    box-shadow: none;
    /* font-weight: bold; */
    padding: 8px 20px;
    border: none;
    border-radius: 20px;
}

#services {
    background-color: #f5f5f5; /* Light background for balance */
    color: #1a1a2e;
    border-radius: 10px;
    margin: 10px;
}

.service-img {
    width: 150px;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.services h4 {
    padding: 5px;
    margin-top: 20px;
    text-transform: capitalize;
}

.title::after {
    content: '';
    width: 200px;
    height: 3px;
    background-color: #d4c9ab;
    display: block;
    margin: 0 auto;
    margin-bottom: 40px;
    transform: translateY(8px);
}

#services .btn-primary {
    box-shadow: none;
    padding: 8px 20px;
    border: none;
    border-radius: 20px;
    /* background-image: linear-gradient(to right, #d4c9ab 0%, #d4c9ab 100%); */
    /* background-image: linear-gradient(to right, #93b3a6 0%, #93b3a6 100%); */
    background-image: linear-gradient(to right, #e94560 0%, #e94560 100%);
    color: white;
}

.project-card {
    transition: transform 0.2s;
}

.project-card:hover {
    transform: scale(1.05);
}

.project-image {
    height: 200px;
    object-fit: cover;
}

.btn {
    box-shadow: none;
    padding: 8px 20px;
    border: none;
    border-radius: 20px;
    /* background-image: linear-gradient(to right, #d4c9ab 0%, #d4c9ab 100%); */
    /* background-image: linear-gradient(to right, #93b3a6 0%, #93b3a6 100%); */
    background-image: linear-gradient(to right, #e94560 0%, #e94560 100%);
}

#services .top-img {
    width: 100%;
    /* flip */
    transform: scaleY(-1);
}

#services .bottom-img {
    width: 100%;
}

#footer {
    background-color: #1a1a2e; /* Primary color for footer */
    color: #f5f5f5;
    border-radius: 10px;
    margin: 10px;
}

.footer-img {
    width: 100%;
}

.footer-box {
    padding: 20px;
}

.footer-box img {
    width: 120px;
    margin-bottom: 20px;
}

.footer-box .fa {
    color: #e94560;
    margin-right: 10px;
    font-size: 20px;
    height: 30px;
    width: 30px;
    text-align: center;
    padding-top: 10px;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .navbar-nav {
        flex-direction: column;
        align-items: center;
    }
    .promo-title {
        font-size: 30px;
    }
    .img-fluid {
        width: 100%;
    }
    .services h4 {
        font-size: 18px;
    }
    .project-card {
        margin-bottom: 20px;
    }
    .footer-box {
        text-align: center;
    }
}