/* Global Styles */

@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css");
@import url("https://kit-pro.fontawesome.com/releases/v6.1.2/css/pro.min.css");
@import url("https://fonts.googleapis.com/css2?family=Epilogue:ital,wght@0,100..900;1,100..900&family=Great+Vibes&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

:root {
    --Font_One: "Bricolage Grotesque", serif !important;
    --Primary_Color: #3a1593;
    --Primary_BGColor: #3a1593;
    --Secondary_Color: #f2f4ff;
    --Secondary_BGColor: #f2f4ff;
    --Tertiary_Color: #6f42c1;
    --Tertiary_BGColor: #6f42c1;
    --Paragraph_Color: #808080;
    --Icon_Color: #3a1593;
    --Icon_BGColor: #f2f4ff;
    --Btn_BgColor: #6f42c1;
    --Btn_Color: #ffffff;
    --Heading_Color: #3a1593;
    --Link_Color: #3a1593;
    --Border_Color: #3a1593;
    --Secondary_BtnBgColor: #f15a25;
    --primaryColor: #3a1593;
    --primaryBgColor: #3a1593;
    --secondaryColor: #f2f4ff;
    --secondaryBgColor: #f2f4ff;
    --tertiaryColor: #6f42c1;
    --tertiaryBgColor: #6f42c1;
    --paragraphColor: #1e293b;
    --iconColor: #3a1593;
    --iconBgColor: #f2f4ff;
    --btnBgColor: #6f42c1;
    --btnColor: #ffffff;
    --headingColor: #3a1593;
    --linkColor: #3a1593;
    --borderColor: #3a1593;
    --secondaryBtnBgColor: #f15a25;
    --primary-color: #3a1593;
    --secondary-color: #f15a25;
    --font-family: "Bricolage Grotesque", sans-serif;
    --text-color: #333;
    --wheel-border-color: #ffffff;
    --wheel-text-color: #ffffff;
    --disabled-button-bg: #cccccc;
    --disabled-button-text: #666666;
}


body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

/* CamelCase Custom Classes as requested */

/* Navbar */
.navContainer {
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    margin-bottom: 30px;
}

.navContainer .siteLogo img {
    width: 80px;
}

.sectionTitle {
    font-size: 1.1rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 20px;
}

/* Listing Page - Card Styles */
.listingPageWrapper {
    animation: fadeIn 0.5s ease;
}

.dealCard {
    background: #fff;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    height: 100%;
}

.dealCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.cardImageWrapper {
    position: relative;
    height: 180px;
}

.cardImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floatingLikeBtn {
    position: absolute;
    bottom: -15px;
    right: 15px;
    background: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    color: #dc3545;
    z-index: 10;
}

.cardContent {
    padding: 20px 15px 15px;
}

.dateBlock {
    text-align: center;
    line-height: 1.2;
    color: #dc3545;
    /* Red color for date */
}

.dateMonth {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
}

.dateDay {
    font-size: 1.5rem;
    font-weight: 400;
}

.dealInfo {
    padding-left: 10px;
    border-left: 1px solid #eee;
}

.dealTitle {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.3;
    color: #2c3e50;
}

.businessName {
    font-size: 0.85rem;
    color: #7f8c8d;
    margin-bottom: 5px;
    font-style: italic;
}

.timeText {
    font-size: 0.75rem;
    color: #95a5a6;
}

.cardFooter {
    border-top: 1px solid #f1f1f1;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #dd4e57;
    font-weight: 500;
}

.priceTag {
    font-weight: 600;
    color: #333;
}

/* Detail Page Styles */
.detailPageWrapper {
    display: none;
    /* Hidden by default */
    animation: fadeIn 0.5s ease;
}

/* Field Map Page Styles */
.fieldMapWrapper {
    display: none;
    /* Hidden by default */
    animation: fadeIn 0.5s ease;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.fieldToken {
    display: inline-block;
    background-color: #f1f3f5;
    padding: 8px 12px;
    margin: 5px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.9rem;
    color: #c0392b;
    border: 1px solid #e9ecef;
    user-select: all;
    /* Makes it easy to copy */
}

.heroImageSection {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}

.heroImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebarBox {
    background: white;
    border: 1px solid #eee;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.sidebarHeader {
    font-size: 1.2rem;
    color: #dc3545;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'serif';
    font-style: italic;
}

.hostInfo {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.eventMetaRow {
    display: flex;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #555;
}

.eventMetaIcon {
    width: 25px;
    color: #777;
}

.socialShareIcons i {
    font-size: 1.5rem;
    margin-right: 10px;
    cursor: pointer;
}

.socialShareIcons .fa-facebook {
    color: #3b5998;
}

.socialShareIcons .fa-twitter {
    color: #1da1f2;
}

.socialShareIcons .fa-whatsapp {
    color: #25d366;
}

.socialShareIcons .fa-linkedin {
    color: #0077b5;
}

.ticketSection {
    background: white;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.ticketRow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f1f1f1;
}

.ticketRow:last-child {
    border-bottom: none;
}

.ticketName {
    font-weight: 600;
    font-style: italic;
    color: #333;
}

.ticketPrice {
    font-weight: 700;
    color: #333;
}

.btnBook {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 10px;
    width: 100%;
    margin-top: 10px;
}

.btnBook:hover {
    background-color: #c82333;
    color: white;
}

.descriptionContent h4 {
    color: #dc3545;
    display: block;
    font-size: 20px;
    margin-bottom: 5px;
    font-style: italic;
}

.descriptionContent p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

.subscribeBox h6 {
    font-family: 'serif';
    font-style: italic;
    font-weight: 700;
}

.DetailBtn {
    background-color: #de3545;
    border-radius: 100px;
    font-size: 15px;
    padding: 5px 10px;
    color: #fff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* job deatil css start */


.mainGalleryImage {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.purchaseCard {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 20px;
    border: 1px solid #e9ecef;
}

.pricingDisplay {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
}

.largeFinalPrice {
    font-size: 2.5rem;
    font-weight: 800;
    color: #de3545;
}

.largeRegularPrice {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #999;
}

.purchaseCard button.btn.btn-outline-secondary {
    height: 30px;
    width: 30px;
    border-color: #de3545;
    color: #de3545;
    margin: 0px 5px !important;
}

.purchaseCard button.btn.btn-outline-secondary:hover {
    background-color: #de3545;
    color: #fff;
}

.alert.alertSuccess {
    background-color: #ffe4e4;
    padding: 10px;
    color: #000;
    font-size: 16px;
    border-radius: 10px;
}

.buyButton {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    background-color: #de3545;
    color: #fff;
}

.buyButton:hover {
    background-color: #de3545;
    color: #fff;
}

.dealInfoBox {
    background: white;
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
    border: 1px solid #e0e0e0;
}


.finePrintList {
    list-style-type: none;
    padding-left: 0;
}

.finePrintList li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.finePrintList li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #de3545;
}

.businessInfoCard {
    display: flex;
    align-items: center;
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.businessAvatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: contain;
    background: white;
    border: 1px solid #ddd;
    margin-right: 15px;
}

/* job deatil css end */



/* job listing css start here  */

.sectionHeader {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 22px;
}

.jobCardContainer {
    background: #fff;
    border: 1px solid #e1e4e8;
    border-radius: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
    position: relative;
    padding: 15px !important;
    overflow: hidden;
}

.jobCardContainer:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    border-color: #de3545;
}

.catchyHeaderBadge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #ffe4e4;
    color: #de3545;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 20px;
}

.jobTitleText {
    font-size: 1.25rem;
    font-weight: 700;
    color: #212529;
    /* margin-top: 15px; */
    /* margin-bottom: 5px; */
}

.companyNameText {
    font-size: 0.95rem;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 15px;
}

.jobMetaInfo {
    font-size: 0.9rem;
    color: #495057;
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.skillBadge {
    font-size: 0.75rem;
    background-color: #f1f3f5;
    color: #495057;
    padding: 4px 8px;
    border-radius: 4px;
    margin-right: 5px;
    display: inline-block;
    margin-bottom: 5px;
}

.cardFooterAction {
    border-top: 1px solid #f1f3f5;
    padding-top: 15px;
    margin-top: auto;
    /* Pushes button to bottom */
}

.viewDetailBtn {
    width: 100%;
    border-radius: 10px;
    font-size: 16px;
    padding: 10px;
    background-color: #de3545;
    color: #fff !important;
}

.viewDetailBtn:hover {
    background-color: #de3545;
    color: #fff !important;
}

/* job listing css end here */


/* job detail css start here */
.headerBanner {
    background: linear-gradient(90deg, #de3545 0%, #ffe4e4 100%);
    color: white;
    padding: 60px 0;
    margin-bottom: 30px;
}

.jobTitleBig {
    font-size: 2.5rem;
    font-weight: 800;
}

.companySubtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.contentSectionBox {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    border: 1px solid #dee2e6;
}

.sectionHeading {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #212529;
    border-left: 5px solid #de3545;
    padding-left: 15px;
}

.sidebarInfoBox {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 25px;
}

.sidebarLabel {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6c757d;
    margin-bottom: 5px;
    display: block;
}

.sidebarValue {
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 20px;
}

.skillTagPill {
    background-color: #e9ecef;
    color: #495057;
    padding: 8px 16px;
    border-radius: 50px;
    margin-right: 10px;
    margin-bottom: 10px;
    display: inline-block;
    font-weight: 500;
}

.applyButtonLarge {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border-radius: 10px;
    background: #de3545;
    color: #fff;
}

.applyButtonLarge:hover {
    background: #de3545;
    color: #fff;
}

/* job detail css end here */


@media(max-width:767px) {
    .skillTagPill {
        margin-right: 5px;
    }

    .catchyHeaderBadge {
        right: 10px;
        font-size: 12px;
        padding: 5px 8px;
    }

    .jobTitleText {
        font-size: 18px;
    }

    .contentSectionBox {
        padding: 15px;
    }

    .sidebarInfoBox {
        padding: 15px;
    }

    .dealInfoBox {
        margin-bottom: 20px;
    }
}


/* blog detail css start here */
.blogDetailPageContainer {
    min-height: 100vh;
    background-color: #f8f9fa;
}

.blogMediaContainer {
    overflow: hidden;
    max-height: 500px;
}

.blogFeaturedMedia {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.fullWidthContent {

    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.blogPostHeading {
    color: #343a40;
    line-height: 1.2;
}

.blogAuthorName {
    color: #6c757d;
}

.blogCategoryLink {
    color: #007bff;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.blogCategoryLink:hover {
    color: #0056b3;
}

.blogPublishDate {
    font-size: 0.9rem;
}

.blogPostBody {
    line-height: 1.8;
    color: #343a40;
}

.blogPostBody p:first-child {
    font-style: italic;
}


@media (max-width: 767.98px) {
    .blogPostHeading {
        font-size: 2rem;
    }
}

/* blog detail css end here */


/* blog css start here */
.blogCardLink {
    display: block;
    height: 100%;
    transition: transform 0.2s;
}

.blogCardLink:hover {
    transform: translateY(-5px);
}

.blogListingCard {
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    overflow: hidden;
    height: 100%;
}

.customCardShadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
}


.blogMediaContainer {
    overflow: hidden;
}

.blogMediaImg {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.blogCardLink:hover .blogMediaImg {
    transform: scale(1.05);
}


.blogHeadingTruncate {
    font-size: 18px;
    color: #000;
}

.blogDescriptionSnippet {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #6c757d;
}


.detailMediaContainer {
    border-radius: 0.5rem;
    overflow: hidden;
}

.detailMediaImg {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

.blogDescriptionDetail p {
    line-height: 1.8;
}

.blogCategoryBadge {
    background-color: #de3545;
    padding: 5px 10px;
    display: inline-block;
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
}

/* blog css end here */