/* root styles */
:root {
    --primary-light: #ff8b85;
    --gradient1: linear-gradient(to bottom, #faf3e5, #f7e9e5);

}

/* Addtional styles */

.blog-image-preview {
    width: 100%;
    height: 570px;
    object-fit: cover;
}

.page-link {
    font-weight: bold;
    color: var(--bs-dark);
    border: 2px solid gray;
    border-radius: 5px;
}
.page-link:hover, .page-link.active {
    color: var(--bs-white);
    background: var(--bs-primary);
    border-color: transparent;
}

.service-card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
}

.text-uppercase {
    letter-spacing: 0.2rem;
}

.bg-cream {
    background-color: #f9eee5;
}

.input-wrapper {
    border: 2px solid #a2a6b0;
    border-radius: 5px;
    padding: 1rem;
}

.logo-bg {
    background: url("../images/logo-overlay.png") no-repeat center center/contain;
}

.bg-primary-light {
    background-color: #ff5956;
}

.client-image {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 4px solid var(--bs-primary);
}

.brand-img {
    max-height: 40px;
}

.dropdown-item {
    --bs-dropdown-link-active-bg: var(--bs-primary);
}

.review-bg {
    background: url("../images/review-bg.png") no-repeat center center/contain;
}

.person-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-top: -100px;
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.5rem;
}

.text-primary-light {
    color: var(--primary-light);
}

.theme-gradient {
    background: var(--gradient1);
}

.hero-bg {
    background: url("../images/hero-bg.png") no-repeat center center/cover;
}

.bg-service-scripting {
    background: url("../images/editing-our-services-image.png") no-repeat center left/cover;
    background-attachment: fixed;
}

.bg-video-service {
    background: url("../images/video-service-image.png") no-repeat center left/cover;
    background-attachment: fixed;
}

.bg-celebrity-management {
    background: url("../images/celebrity-management-image.png") no-repeat center left/cover;
    background-attachment: fixed;
}

.bg.overlay {
    background-color: rgba(0, 0, 0, 0.775);
}

.hero-bg .overlay {
    background-color: rgba(40, 47, 49, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.nav-link {
    --bs-nav-link-color: #f5f5f5;
    --bs-nav-link-hover-color: var(--bs-primary);
    --bs-nav-link-active-color: var(--bs-primary);
}

.nav-link.active {
    color: var(--bs-primary) !important;
}

.btn-primary {
    --bs-btn-color: #ffffff;
    --bs-btn-hover-color: #ffffff;
    --bs-btn-active-color: #ffffff;
}

.btn-cream {
    --bs-btn-bg: #faf5ee;
    --bs-btn-hover-bg: #ebe5dd;
    --bs-btn-active-bg: #dad4cd;
    border: none;
    box-shadow: none;
}


/* fonts */

@font-face {
    font-family: 'Font';
    src: url('../webfonts/Poppins-Regular.ttf');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Font';
    src: url('../webfonts/Poppins-Bold.ttf');
    font-weight: 700;
    font-style: normal;
}

/* global styles */

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

html {
    font-size: 16px;
}

body {
    margin: 0;
    font-family: 'Font', sans-serif;
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    text-align: var(--bs-body-text-align);
    --bs-body-color: #252641;
    background-color: var(--bs-white);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

h1, h2, h3, h4, h5, h6 {
    --bs-heading-color: inherit;
    font-weight: inherit;
    margin-bottom: 0;
}

/* custom classes */

.larger {
    font-size: 1.15rem !important;
}

.smaller {
    font-size: 0.75rem !important;
}

.mini {
    font-size: 0.65rem !important;
}

.micro {
    font-size: 0.5rem !important;
}

.reset-input {
    border: none;
    outline: none;
    background-color: transparent;
    padding: 0;
}

.reset-input::placeholder {
    color: inherit;
    opacity: 0.5;
}

.bg-white-mask {
    background: linear-gradient(white 50%, rgba(255, 255, 255, 0));
}


.form-box {
    margin-top: -60px;
}

/* media classes */

@media (max-width: 1200px) {
    /* large screens */
}

@media (max-width: 992px) {
    /* medium screens */
    .review-bg {
        background: white;
        padding: 0.5rem !important;
    }
}

@media (max-width: 768px) {
    /* small screens */
    .fs-5, .larger {
        font-size: 1rem !important;
    }
    .fs-4 {
        font-size: 1.15rem !important;
    }
    .person-image {
        width: 150px;
        height: 150px;
    }
    .step-image {
        width: 100px;
    }
    .form-box {
        margin-top: 0;
    }
}

@media (max-width: 576px) {
    /* extra small screens */
}
