/* Custom CSS for Harapan Training Center Indonesia */

body {
    font-family: 'Inter', sans-serif;
    color: #4a4a4a;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #2c3e50;
}

/* Navbar Customizations */
.navbar {
    transition: all 0.3s ease;
}

.navbar-brand img {
    border: 2px solid #0b3fa8;
    padding: 2px;
    background-color: white;
}

.nav-link {
    color: #4a4a4a !important;
    font-size: 1.05rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: #faa5f1 !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #faa5f1;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 70%;
}

/* Carousel Overlays */
.carousel-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.6));
    z-index: 1;
}

.carousel-caption {
    z-index: 2;
    bottom: 20%;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Card Hover Effects */
.custom-card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175) !important;
}

.icon-circle {
    transition: transform 0.3s ease;
}

.custom-card-hover:hover .icon-circle {
    transform: scale(1.1);
}

/* Visi Misi Page Specific */
.fst-italic {
    line-height: 1.6;
}

/* Button overrides */
.btn-primary {
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 .5rem 1rem rgba(250, 165, 241, 0.5) !important;
}

.hover-white {
    transition: color 0.3s ease;
}
.hover-white:hover {
    color: #ffffff !important;
}

/* Custom Footer Text Color */
footer, footer h4, footer p, footer a, footer .text-white, footer .text-white-50, footer i {
    color: #faa5f1 !important;
}

footer a.hover-white:hover {
    color: #ffffff !important;
}

/* Berita HTCI Section */
.news-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hover-pink {
    transition: color 0.3s ease;
}
.hover-pink:hover {
    color: #faa5f1 !important;
}
