:root {
    --primary-color: #1A73E8;
    --secondary-color: #0055A4;
    --highlight-color: #F9AB00;
    --danger-color: #E53935;
    --body-color: #FFFFFF;
    --gray-bg-color: #F5F5F5;
    --light-text: #212121;
}

/* ============GLOBAL STYLES============= */
body {
    background-color: var(--body-color);
    color: var(--light-text);
    font-family: 'Noto Sans', sans-serif;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-highlight {
    color: var(--highlight-color) !important;
}

.max-width-text {
    max-width: 620px;
}

.gray-bg {
    background-color: var(--gray-bg-color);
}

.section-heading-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.section-heading {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 24px;
    color: #2b2f38;
    position: relative;
}

.section-heading .bar {
    width: 5px;
    height: 24px;
    background-color: var(--highlight-color);
    margin-right: 10px;
}

.section-heading h2 {
    margin: 0;
    margin-right: 10px;
}

.section-heading .arrows {
    color: #ccc;
    font-size: 24px;
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.section-heading h2:hover {
    cursor: pointer;
}

.section-heading:hover .arrows {
    transform: translateX(8px);
    opacity: 0.8;
    color: var(--highlight-color);
    cursor: pointer;
}


.thumbnail-image {
    aspect-ratio: 16/9;
    width: 100%;
    object-fit: cover;
    height: 170px;
}

.post-title {
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
}

.post-title:hover {
    text-decoration: underline;
}

/* Mobile Hum Toggler */
.custom-toggler {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 24px;
    width: 32px;
    gap: 5px;
}

.custom-toggler .bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #111;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.custom-toggler[aria-expanded="true"] .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.custom-toggler[aria-expanded="true"] .bar:nth-child(2) {
    opacity: 0;
}

.custom-toggler[aria-expanded="true"] .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* Search Bar */
#live-search-results {
    z-index: 9999;
    max-height: 300px;
    overflow-y: auto;
}

.live-search-item {
    padding: 10px;
    cursor: pointer;
}

.live-search-item:hover {
    background: #f8f9fa;
}

/* Breadcrumb Styles */
.breadcrumb-wrapper {
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.search-wrapper {
    z-index: 9999;
}

.live-search-item {
    padding: 10px;
    cursor: pointer;
}

.live-search-item:hover {
    background-color: #f8f9fa;
}


.breadcrumb a {
    text-decoration: none;
}

.breadcrumb .active {
    font-weight: 600;
}

/* ============END OF GLOBAL STYLES============= */

/* ============HOMEPAGE============= */
.hero-slide {
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-item .container {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 60%, transparent);
}

/* ============END OF HOMEPAGE============= */

/* ============POST PAGE============= */
.post-content p {
    line-height: 1.75;
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
    color: var(--light-text) !important;
}

.post-content img {
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
}

/* ============END OF POST PAGE============= */