:root {
    --primary-color: #FFB22C; /* gold */
    --primary-color-rgb: 255, 178, 44;
    --secondary-color: #333333; /* dark gray */
    --background-color: #111; /* full black */

    --primary-color-hover: #e6a91a;
    --primary-color-active: #b98514;

    --white-color: #FFFFFF;
    --light-gray-color: #F0F0F0;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--primary-color);
    --bs-btn-border-color: var(--primary-color);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--primary-color-hover);
    --bs-btn-hover-border-color: var(--primary-color-hover);
    --bs-btn-focus-shadow-rgb: 255, 178, 44;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--primary-color-active);
    --bs-btn-active-border-color: var(--primary-color-active);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--primary-color);
    --bs-btn-disabled-border-color: var(--primary-color);
}

.btn-outline-primary {
    --bs-btn-color: var(--primary-color);
    --bs-btn-border-color: var(--primary-color);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--primary-color);
    --bs-btn-hover-border-color: var(--primary-color);
    --bs-btn-focus-shadow-rgb: 255, 178, 44;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--primary-color);
    --bs-btn-active-border-color: var(--primary-color);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--primary-color);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--primary-color);
    --bs-gradient: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    padding: 0;
    margin: 0;
    min-height: 100vh;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--background-color);
    color: var(--light-gray-color);
    scroll-behavior: smooth;
    min-height: 100vh;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: var(--background-color);
}

section {
    padding-top: 56px;
    padding-bottom: 56px;
}

/* NAVBAR STYLING */
nav.navbar {
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    background: var(--background-color) !important;
    border-bottom: none !important;
}

.pt-10 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

.navbar-brand {
    color: var(--primary-color);
    background: rgba(0, 0, 0, 0);
    font-weight: 700;
    padding-left: 0;
    padding-right: 0;
    transition: .5s ease;
    border-radius: 500px;
}

.navbar-brand:hover {
    color: #fff;
    text-decoration: none;
    padding-left: 1rem;
    padding-right: 1rem;
    background-color: rgba(var(--primary-color-rgb), 0.7);
}

.nav-link {
    transition: .3s ease;
    position: relative;
    border-bottom: 2px solid rgba(var(--primary-color-rgb), 0);
    top: 0;
}

.nav-link:hover {
    color: var(--primary-color);
    border-bottom: 2px solid rgba(var(--primary-color-rgb), 1);
    top: -2px;
}

/* END NAVBAR STYLING */

.hero {
    height: 100vh;
    width: 100%;
    /* background: var(--background-color);  */
    background: url('../images/home-bg.jpg') no-repeat center center/cover;
    padding: 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(27, 26, 23, 0.7);
    z-index: 0;
}

.text-gold {
    color: var(--primary-color);
}

.hero-title {
    position: relative;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #f0f0f0;
    opacity: 0.9;
}

/* About STYLING */

.timeline-item {
    background-color: rgba(255, 178, 44, 0.1);
    border-left: 4px solid var(--primary-color);
    margin-bottom: 1.5rem;
    padding: 1rem;
    transition: background-color 0.3s ease;
    width: 100%;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 1rem;
    width: 0;
    height: 0;
    border-left: 1rem solid transparent;
    border-right: 1rem solid transparent;
    border-top: 1rem solid var(--primary-color);
}

.about-img-container img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: 0 30%;
}

/* END OF ABOUT US PAGE STYLING */

/* NEWS PAGE STYLING */
.card:hover {
    transform: translateY(-4px);
    transition: .2s ease;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    object-position: center;
}

.card-body p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.news-detail-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    margin-bottom: 1rem;
}

/* END OF NEWS PAGE STYLING */
body {
    font-size: 0.95rem;
}

.navbar .nav-link {
    opacity: 0.85;
}

.navbar .nav-link.active {
    opacity: 1;
    font-weight: 600;
}

.card {
    border-radius: 12px;
}

.table thead th {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.btn {
    border-radius: 8px;
}

@media(max-width: 768px) {
    .hero-title {
        font-size: 2.4rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media(min-width: 992px) {
    .timeline-item {
        width: auto;
        position: relative;
    }

    .timeline-item:not(:last-child) {
        margin-right: 2rem;
    }

    .timeline-item:not(:last-child)::after {
        top: 50%;
        right: -2.5rem;
        transform: translateY(-50%);
        width: 0;
        left: unset;
        height: 0;
        border-top: 0.5rem solid transparent;
        border-bottom: 0.5rem solid transparent;
        border-left: 1rem solid var(--primary-color);
    }
}