/* 
   #1 Global CSS
   #2 Preloader Css
   #3 Nav bar
   #4 Footer

*/

:root {
    --main-color-one: rgba(13, 22, 35, 1);
    --secondary-color: rgba(240, 243, 245, 1);
    --heading-color: rgba(13, 22, 35, 1);
    --paragraph-color: rgba(13, 22, 35, 1);
    --heading-font: "Inter Tight", sans-serif;
    --body-font: "Inter Tight", sans-serif;
    --animate-duration: 800ms;
    --animate-delay: 0.9s;
}

@font-face {
    font-family: "Inter Tight", sans-serif;
    src: url("../fonts/InterTight-Light.ttf");
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter Medium", sans-serif;
    src: url("../fonts/InterTight-Medium.ttf");
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter SemiBold", sans-serif;
    src: url("../fonts/InterTight-SemiBold.ttf");
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter Bold", sans-serif;
    src: url("../fonts/InterTight-Bold.ttf");
    font-style: normal;
    font-display: swap;
}


/* -----------------
    #1 Global CSS 
 ------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.elementor-element.elementor-widget.elementor-widget-text-editor p {
    font-size: inherit !important;
}

body,
a {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.5em;
    color: var(--paragraph-color);
    font-weight: 400;
}

body {
    background: #040000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    color: var(--heading-color);
    line-height: 1.1em;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

p {
    margin-bottom: 0;
}

.elementor-widget-text-editor p a {
    transition: all 0.3s;
}

.elementor-widget-text-editor p a:hover {
    color: #FCFA13;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
select:focus,
button:focus {
    outline: none;
    box-shadow: none;
}

ul,
ol,
p {
    margin: 0;
    padding: 0;
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1390px;
    margin: 0 auto;
    padding: 0 15px;
}

/*-------------------------
    #2 Preloader Css
---------------------------*/
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999999;
    background: #fff;
}

.preloader svg {
    width: 200px;
}

/*---------------
    #3 Nav bar
----------------- */
#masthead {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

#masthead.header-sticky .header-wrapper::after {
    background: rgba(14, 14, 15, 0.92);
}

.navbar.navbar-area .container {
    max-width: 1350px;
    padding: 0 15px;
}

#masthead .navbar {
    padding: 20px 0px;
}

#masthead .header-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: 100%;
    padding: 14px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#masthead .header-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(41, 40, 40, 0.08);
    backdrop-filter: blur(94px);
    z-index: -1;
}

.header-wrapper .logo-wrapper a {
    display: block;
    max-width: 80px;
}

.header-wrapper .logo-wrapper a img {
    width: 100%;
    height: auto;
}

@media (min-width: 1200px) {
    #highlt_main_menu {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

#masthead .header-wrapper .navbar-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

#masthead .header-wrapper li a {
    font-size: 16px;
    transition: all .3s ease-in-out;
    color: #FCFA13;
}

#masthead .header-wrapper li a:hover {
    color: #fff;
}

.navbar-collapse {
    flex-grow: 1;
}

/* Header Button */
.contact-btn-wrap {
    position: relative;
    display: inline-block;
}

/* Yellow Corner Borders */
.contact-btn-wrap span {
    position: absolute;
    width: 12px;
    height: 12px;
    border-color: #fff;
    border-style: solid;
    opacity: 0;
    transition: all .3s;

}

.mobile-navbar-toggler {
    display: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    font-size: 36px;
}

.mobile-navbar-toggler svg {
    width: 1em;
    height: 1em;
}

/* Top Left */
.contact-btn-wrap span:nth-child(1) {
    top: -4px;
    left: -4px;
    border-width: 1px 0 0 1px;
}

/* Top Right */
.contact-btn-wrap span:nth-child(2) {
    top: -4px;
    right: -4px;
    border-width: 1px 1px 0 0;
}

/* Bottom Left */
.contact-btn-wrap span:nth-child(3) {
    bottom: -4px;
    left: -4px;
    border-width: 0 0 1px 1px;
}

/* Bottom Right */
.contact-btn-wrap span:nth-child(4) {
    bottom: -4px;
    right: -4px;
    border-width: 0 1px 1px 0;
}

/* Main Button */
.contact-btn {
    padding: 14px 18px;
    background: #FCFA13;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #050000;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-btn-wrap:hover span {
    opacity: 1;
}

.header-btn.mobile-contact-btn{
        display: none;
}


/*======================
  Footer Area CSS
========================*/
.footer-section {
    padding-top: 90px;
    padding-bottom: 40px;
    background: rgba(0, 0, 0, 1);
}

.footer-top-area {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    justify-content: space-between;
    padding-bottom: 80px;
    gap: 440px;
}

.footer-logo a.custom-logo-link {
    display: block;
    max-width: 120px;
}

.footer-logo .custom-logo-link img {
    width: 100%;
    height: auto;
}

.footer-description {
    color: rgba(255, 255, 255, 1);
    font-size: 18px;
    font-weight: 300;
    margin-top: 26px;
    line-height: 1.5em;
}

.footer-top-right {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 50px;
}

/* footer Menu Column */
.footer-column-title {
    color: rgba(255, 255, 255, .7);
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 24px;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-list li a {
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    transition: all .3s ease-in-out;
}

.footer-list li a:hover {
    color: rgba(255, 255, 255, .7);
}

/* footer contact column */
.footer-contact-info-list {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.footer-contact-info-list a {
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    transition: all .3s ease-in-out;
}

.footer-contact-info-list a:hover {
    color: rgba(255, 255, 255, .7);
}

.contact-location {
    color: #fff;
    font-weight: 300;
    font-size: 18px;
}

/* Footer copyright */
.copyright-text {
    color: #fff;
}

/* footer social */
.footer-middle-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(252, 250, 19, 0.15);
    border-bottom: 1px solid rgba(252, 250, 19, 0.15);
    padding: 20px 0;
}

.footer-social-share {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social-share li a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    padding: 20px;
    transition: all .3s ease-in-out;
}

.footer-social-share li a:hover {
    background: #fff;
}

.footer-social-share li a img {
    filter: invert(0%);
    transition: all .3s ease-in-out;
}

.footer-social-share li a:hover img {
    filter: invert(100%);
}


/* ====================
    Blog Details Page Style
=======================  */
.breadcrumb-wrap {
    background: rgba(240, 243, 245, 1);
    padding: 88px 0 56px;
}

.breadcrumb-wrap .breadcrumb-content {
    max-width: 930px;
}

.post-meta .user .post-by {
    text-decoration: underline;
    font-size: 14px;
    font-weight: 700;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 36px;
}

.post-meta span {
    position: relative;
    color: rgba(80, 85, 94, 1);
    font-size: 14px;
}

.post-meta span::after {
    content: "";
    position: absolute;
    right: -20px;
    width: 5px;
    height: 5px;
    background: rgba(11, 9, 25, 1);
    z-index: 99;
    top: 40%;
    border-radius: 50%;
}

.post-meta span:last-child::after {
    display: none;
}

.breadcrumb-content .page-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
}

.blog-main-title {
    font-size: 48px;
    font-weight: 500;
    margin: 24px 0 12px;
}

.musemind-header-wrap.blog-single {
    background: #010217;
    margin-top: -120px;
    padding-top: 200px;
    padding-bottom: 84px;
}

.blog-details-top {
    width: 760px;
}

.breadcurmb {
    line-height: 1.2em;
    color: #999AA2;
    display: flex;
    align-items: center;
    font-size: 16px;
    gap: 5px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.breadcurm-head {
    letter-spacing: 2px;
}

span.arrow-icon {
    margin-bottom: 3px;
}


.breadcurmb-title {
    color: #F48C54;
}

.musemind-header-inner .title {
    color: #FFF;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2em;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.blog-details-top .meta-list li a {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}

.blog-details-top .meta-list {
    display: flex;
    align-items: center;
    gap: 20px;
}

.meta-dot {
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
}

ul.post-categories {
    margin-top: 0;
}

.thumbnail img {
    width: 100%;
    object-fit: cover;
    max-height: 849px;
    min-height: 849px;
}

.blog-content-wrapper {
    padding-top: 140px;
    padding-bottom: 160px;
}

.blog-single-content-wrap .entry-content {
    h2 {
        font-size: 32px;
        color: rgba(13, 22, 35, 1);
        font-weight: 500;
        margin-bottom: 18px;
        margin-top: 48px;
        padding-top: 48px;
        border-top: 1px solid #ddd;
    }

    h3 {
        font-size: 24px;
        font-weight: 500;
        margin-bottom: 18px;
        margin-top: 28px;
    }

    p {
        margin-bottom: 20px;
        font-size: 18px;
        color: rgba(110, 115, 123, 1);
        font-weight: 300;
        line-height: 1.6em;
    }

    ul {
        list-style-type: disc;
        padding-left: 20px;
        margin-bottom: 20px;
    }

    ol {
        padding-left: 20px;
    }

    .wp-block-image {
        position: relative;
        overflow: hidden;
        margin-bottom: 20px;
    }

    .wp-block-image img {
        display: block;
        width: 100%;
    }
}

.entry-content .wp-block-image:first-of-type {
    margin-bottom: 50px;
}

.entry-content .wp-block-image:last-of-type {
    margin-bottom: 0px;
}

.entry-content.musemind-post-content h2:first-of-type {
    margin-top: 0px;
}

.entry-content.musemind-post-content {
    margin-right: 120px;
}

.title.wp-block-search__label {
    font-size: 24px;
}

/* table of contents */
div#musemind_toc_widget-2 {
    background: rgba(240, 243, 245, 1);
    padding: 24px;
}

.title.wp-block-search__label {
    font-size: 24px;
    font-weight: 700;
    line-height: 1em;
    margin-bottom: 24px;
}


.toc-container .toc-widget li a {
    font-size: 14px;
    font-weight: 400;
    color: rgba(80, 85, 94, 1);
    padding: 10px 0;
    display: block;
    border-bottom: 1px solid rgba(223, 224, 226, 1);
}

.toc-container .toc-widget li:last-child a {
    border-bottom: none;
}

.toc-widget .arrow-link:hover {
    color: rgba(13, 22, 35, 1);
    font-weight: 600;
}

.toc-widget .arrow-link.active {
    text-decoration: none;
    color: rgba(13, 22, 35, 1);
    font-weight: 600;
}

.social-title {
    font-size: 16px;
    text-transform: uppercase;
    color: #475467;
    letter-spacing: 3px;
}

ul.social-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

ul.social-icon li a {
    width: 36px;
    height: 36px;
    background: #F2F4F7;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all .3s ease-in-out;
}

.social-icon li a svg path {
    fill: #0B0919;
    transition: all .3s ease-in-out;
}

ul.social-icon li a:hover {
    background: rgba(13, 22, 35, 1);
}

ul.social-icon li a:hover svg path {
    fill: #fff;
}

.widget.musemind-social-share-widget {
    background: #fff;
    margin: 20px 0px;
}

aside#secondary.widget-area {
    position: sticky;
    top: 70px;
}

/* Booking Widget */
.booking-area {
    position: relative;
    background-color: #000;
    padding: 24px;
}

.image-wrapper img {
    margin-left: -20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.image-wrapper {
    margin-left: 20px;
    margin-bottom: 16px;
}

.booking-container h3 {
    color: #fff;
    font-family: 'FFF Acid Grotesk';
    font-weight: 500;
    font-size: 24px;
    line-height: 1.3em;
    margin-bottom: 24px;
    padding-right: 20px;
    letter-spacing: 1.1px;
}

.booking-container a {
    background: #fff;
    padding: 10px 16px;
    border-radius: 100px;
    display: inline-block;
    font-size: 14px;
    transition: all .3s ease-in-out;
    color: rgba(80, 85, 94, 1);
}

.star-shape-img {
    position: absolute;
    bottom: 0;
    right: 0;
}

.booking-container a:hover {
    background: rgb(240, 243, 245);
}

/* Contact Form CSS Start */
.contact-input-wrap {
    margin-bottom: 20px;
}

.contact-input-wrap label {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    display: block;
    margin-bottom: 8px;
    color: #000;
}

.contact-input-wrap textarea,
.contact-input-wrap input {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    padding: 10px 15px;
    border: 1px solid #EAECF0;
    border-radius: 0;
    width: 100%;
}

.contact-input-wrap textarea {
    height: 130px;
}

.contact-input-wrap.submit-wrap .wpcf7-submit {
    padding: 20px;
    background: #FCFA13;
    border: none;
    transition: all 0.3s;
}

.contact-input-wrap.submit-wrap .wpcf7-submit:hover {
    background: #dbda1f;
}

.contact-input-wrap input:not([type="submit"]):focus {
    outline: 1px solid #000;
}

.contact-input-wrap.submit-wrap .wpcf7-spinner {
    position: absolute;
    bottom: -30px;
    left: 0;
}

.contact-input-wrap .wpcf7-not-valid-tip {
    margin-top: 3px;
}

.contact-input-wrap.submit-wrap {
    margin: 0;
}

/* ====================
    Blog Single (hero + content + TOC)
=======================  */

/* White reading surface so the dark article text stays legible
   over the near-black site background. Scoped to the single template. */
.single .blog-single-page {
    background: #fff;
}

/* ---- Hero ---- */
.blog-single-hero {
    background: #040000;
    padding: 200px 0 90px;
}

.blog-single-hero-inner {
    max-width: 900px;
}

.blog-single-date span {
    display: inline-block;
    color: #FCFA13;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.blog-single-title {
    color: #fff;
    font-size: 56px;
    font-weight: 600;
    line-height: 1.15em;
    letter-spacing: -1px;
}

.blog-single-excerpt {
    color: rgba(255, 255, 255, 0.75);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6em;
    margin-top: 24px;
}

/* ---- Featured image ---- */
.blog-single-thumb {
    padding-top: 60px;
}

.blog-single-thumb img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 620px;
    object-fit: cover;
}

/* ---- Content + TOC layout ---- */
.blog-single-body {
    padding-top: 80px;
    padding-bottom: 120px;
}

.blog-single-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 80px;
    align-items: start;
}

.blog-single-layout.no-toc {
    grid-template-columns: minmax(0, 820px);
    justify-content: center;
}

/* First heading shouldn't carry the section divider/spacing. */
.blog-single-content-wrap .entry-content h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

/* Offset anchor jumps so headings clear the fixed header. */
.blog-single-content-wrap .entry-content h2 {
    scroll-margin-top: 120px;
}

/* Inline links inside the article. */
.blog-single-content-wrap .entry-content a {
    color: var(--main-color-one);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.3s ease;
}

.blog-single-content-wrap .entry-content a:hover {
    opacity: 0.7;
}

/* Blockquote with the theme's yellow accent. */
.blog-single-content-wrap .entry-content blockquote {
    margin: 32px 0;
    padding: 24px 28px;
    border-left: 3px solid #FCFA13;
    background: rgba(240, 243, 245, 1);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5em;
    color: rgba(13, 22, 35, 1);
}

.blog-single-content-wrap .entry-content blockquote p {
    font-size: inherit;
    color: inherit;
    font-weight: inherit;
    margin-bottom: 0;
}

.blog-single-content-wrap .entry-content figure {
    margin: 0 0 20px;
}

.blog-single-content-wrap .entry-content img {
    max-width: 100%;
    height: auto;
}

/* Paged-post navigation (wp_link_pages). */
.blog-single-content-wrap .wp-link-pages {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 40px;
}

.blog-single-content-wrap .wp-link-pages span,
.blog-single-content-wrap .wp-link-pages a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #EAECF0;
    color: rgba(13, 22, 35, 1);
    transition: all 0.3s ease;
}

.blog-single-content-wrap .wp-link-pages a:hover,
.blog-single-content-wrap .wp-link-pages > span {
    background: #FCFA13;
    border-color: #FCFA13;
    text-decoration: none;
}

/* ---- Table of contents ---- */
.blog-single-toc {
    position: relative;
}

.blog-single-toc .toc-widget {
    background: rgba(240, 243, 245, 1);
    padding: 28px 24px;
}

.toc-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(13, 22, 35, 1);
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(13, 22, 35, 0.1);
}

.toc-list {
    display: flex;
    flex-direction: column;
}

.toc-list .toc-link {
    display: block;
    font-size: 14px;
    line-height: 1.5em;
    color: rgba(80, 85, 94, 1);
    padding: 10px 0 10px 16px;
    border-left: 2px solid transparent;
    transition: all 0.3s ease;
}

.toc-list .toc-link:hover {
    color: rgba(13, 22, 35, 1);
}

.toc-list .toc-link.active {
    color: rgba(13, 22, 35, 1);
    font-weight: 600;
    border-left-color: rgba(13, 22, 35, 1);
}

/* ---- Blog single responsive ---- */
@media (max-width: 991px) {
    .blog-single-hero {
        padding: 150px 0 60px;
    }

    .blog-single-title {
        font-size: 40px;
    }

    .blog-single-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .blog-single-toc {
        position: static;
        top: auto;
        order: -1;
        margin-bottom: 40px;
    }

    .blog-single-body {
        padding-top: 60px;
        padding-bottom: 90px;
    }
}

@media (max-width: 768px) {
    .blog-single-hero {
        padding: 120px 0 48px;
    }

    .blog-single-title {
        font-size: 30px;
    }

    .blog-single-excerpt {
        font-size: 16px;
        margin-top: 18px;
    }

    .blog-single-thumb {
        padding-top: 40px;
    }

    .blog-single-thumb img {
        max-height: 360px;
    }

    .blog-single-body {
        padding-top: 48px;
        padding-bottom: 60px;
    }

    .blog-single-content-wrap .entry-content h2 {
        font-size: 26px;
        margin-top: 36px;
        padding-top: 36px;
    }

    .blog-single-content-wrap .entry-content h3 {
        font-size: 20px;
    }

    .blog-single-content-wrap .entry-content p,
    .blog-single-content-wrap .entry-content blockquote {
        font-size: 16px;
    }
}

/*-------------------------
     404
---------------------------*/
.error404 .breadcrumb-wrap {
    display: none;
}

.error-404-area {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 0 120px;
    overflow: hidden;
}

/* Soft radial glow behind the content */
.error-404-area::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 760px;
    height: 760px;
    max-width: 100%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(252, 250, 19, 0.12) 0%, rgba(252, 250, 19, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.error-404.not-found {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 24px;
    max-width: 640px;
    margin: auto;
}

/* Big 404 number */
.error-404-code {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: clamp(110px, 22vw, 240px);
    line-height: 1;
    letter-spacing: -4px;
    color: #fff;
}

.error-404-code .error-404-zero {
    color: #FCFA13;
    text-shadow: 0 0 60px rgba(252, 250, 19, 0.5);
}

.error-404.not-found .title {
    color: #fff;
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 600;
    line-height: 1.2em;
    letter-spacing: -0.5px;
}

.error-404.not-found .paragraph {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6em;
    max-width: 460px;
}

.error-404-btn-wrap {
    margin-top: 12px;
}