p,
h1,
h2,
h3,
h4,
h5,
h6,
span {
    line-height: normal !important;
    letter-spacing: 1px !important;
}

body {
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
}

/* Font */
/* inter-300 - latin */
@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: local(""), url("../fonts/inter-v12-latin-300.woff2") format("woff2"),
        /* Chrome 26+, Opera 23+, Firefox 39+ */
        url("../fonts/inter-v12-latin-300.woff") format("woff");
    /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* inter-400 - latin */
@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local(""),
        url("../fonts/inter-v12-latin-regular.woff2") format("woff2"),
        /* Chrome 26+, Opera 23+, Firefox 39+ */
        url("../fonts/inter-v12-latin-regular.woff") format("woff");
    /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local(""), url("../fonts/inter-v12-latin-500.woff2") format("woff2"),
        /* Chrome 26+, Opera 23+, Firefox 39+ */
        url("../fonts/inter-v12-latin-500.woff") format("woff");
    /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local(""), url("../fonts/inter-v12-latin-700.woff2") format("woff2"),
        /* Chrome 26+, Opera 23+, Firefox 39+ */
        url("../fonts/inter-v12-latin-700.woff") format("woff");
    /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

.navbar {
    padding-top: 20px;
    padding-bottom: 15px;
}

/* .login-container{
    padding: 90px 0px;
    background-color: rgb(17, 17, 17);
} */

#password {
    border: none;
}

.login-input {
    color: white;
}

.pass-input {
    border: none !important;
    border-bottom: 2px solid #e6e6e6;
    padding: 4px;
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

.form-control {
    color: rgb(196, 195, 195);
}

.form-control:focus {
    color: #202020;
}

.form-control.bg-gray-800::placeholder {
    color: #8b8b8b;
    /* Light gray for better contrast on dark background */
    font-size: 1.2rem;
}

.form-control.bg-gray-800:disabled {
    background-color: #343a40 !important;
}

.darkmode #loginModal #password {
    border-right: none;
}

.darkmode #beehiveLoginModal #password,
.darkmode #beehiveRegModal #password {
    border-right: none;
}

.blogs-container,
.about-us-container,
.create-blogs-container,
.contact-us-container,
.terms-of-service-container,
.privacy-policy-container,
.supply-container {
    margin: 50px 0px;
    padding: 20px 0px;
}

.blogs-container p,
.about-us-container p,
.terms-of-service-container p,
.privacy-policy-container p{
    text-align: justify;
    color: #ebebeb;
}

.blogs-container .blog-content,
.about-us-container .about-us-content,
.terms-of-service-container .terms-of-service-content,
.privacy-policy-container .privacy-policy-content,
.supply-container .supply-content {
    padding: 3rem;
}

.btn-delete {
    color: #fff;
    background-color: #bb2b3d;
    border-color: transparent;
}

.btn-delete:hover {
    background-color: #fa354e;
}

/* Blogs Page */
.blogs-card-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3px;
}

.blogs-card-btn {
    display: none;
    margin-top: 15px;
    width: fit-content;
}

.blog-img{
    width: -webkit-fill-available;
}

/* Blogs Page END */

/* Create Blogs Page */
.create-blogs-container .form-group {
    margin-top: 15px;
    margin-bottom: 15px;
}

/* Contact Form */
.contact-us-container .error-message {
    display: none;
    color: #fff;
    background: #df1529;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact-us-container .sent-message {
    display: none;
    color: #fff;
    background: #27a776;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact-us-container .loading {
    display: none;
    background: #161718;
    text-align: center;
    padding: 15px;
    color: rgba(255, 255, 255, 0.6);
}

.contact-us-container .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #27a776;
    border-top-color: #161718;
    animation: animate-loading 1s linear infinite;
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Contact Form END */

@media (min-width: 768px) {
    .desktop-offset {
        margin-left: 8.33333333%;
    }

    .blogs-container .blog-content,
    .terms-of-service-container .terms-of-service-content,
    .privacy-policy-container .privacy-policy-content,
    .supply-container .supply-content {
        margin-left: 10%;
        margin-right: 10%;
    }

    .blog-img{
        height: 300px;
        width: auto;
    }
}

@media (max-width: 768px) {
    .blogs-container p {
        text-align: left;
    }

    .terms-of-service-container p {
        text-align: left;
    }

    .privacy-policy-container p {
        text-align: left;
    }

    .blogs-container .blog-content {
        padding: 1.5rem;
    }

    .terms-of-service-container .terms-of-service-content {
        padding: 1.5rem;
    }

    .privacy-policy-container .privacy-policy-content {
        padding: 1.5rem;
    }
    
    .supply-container .supply-content {
        padding: 1.5rem;
    }

    .blogs-card-title .btn {
        display: none;
    }

    .blogs-card-btn {
        display: block !important;
    }

    .desktop-offset {
        margin-top: 2rem;
    }

    .mobile-order-blogs-index {
        order: 2 !important;
        margin-top: 40px;
    }

    .mobile-view {
        display: block !important;
    }
}

@media (min-width: 600px) {
    .coming-soon-desktop {
        margin-left: 3rem !important;
    }
}