:root {
    --primary-color: #EC1C24;
    --secondary-color: #0055A4;
    --highlight-color: #004C79;
    --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;
}

.text-brand {
	color: #2e4f70!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;
}

.latest-diafimisi-thumbnail:first-child{
overflow:hidden;
}

.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: 280px;
}

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

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

.menu-item{
position:relative;
}
.menu-item:before {
    content: "";
    position: absolute;
    height: 20px;
    width: 3px;
	left:-4px;
    background-color: #004c79;
    top: 50%;
    transform: translateY(-50%);
}

.menu-item:first-child::before {
  display: none;
}

.menu-item a span {
font-size:18px;
color:#004c79;
}

.navbar-expand-lg .navbar-nav {
gap: 5px;
}

/* 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;
}

.latest-diafimisi-content img{
	height:75%;
width:100%;
}


.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;
}


.gradient-border-both {
    border: 0;

    background-image:
        linear-gradient(#004c79, #004c79),
        linear-gradient(90deg, rgba(250, 69, 69, 0.66), #ffffff);

    background-repeat: no-repeat;

    background-size:
        100% 6px,
        100% 2px;

    background-position:
        top left,
        bottom left;
}



/* ============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============= */