/********** USJ Career Guidance Unit - Custom CSS **********/

:root {
    --primary: #003087;
    --secondary: #C8972B;
    --accent: #1a52b3;
    --light: #F4F7FB;
    --dark: #0a1f4e;
    --text: #2c3e6b;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

.fw-medium { font-weight: 600 !important; }
.fw-semi-bold { font-weight: 700 !important; }
.back-to-top { position: fixed; display: none; right: 45px; bottom: 45px; z-index: 99; }

/*** Spinner ***/
#spinner { opacity: 0; visibility: hidden; transition: opacity .5s ease-out, visibility 0s linear .5s; z-index: 99999; }
#spinner.show { transition: opacity .5s ease-out, visibility 0s linear 0s; visibility: visible; opacity: 1; }

/*** Button ***/
.btn { font-family: 'Source Sans 3', sans-serif; font-weight: 600; transition: .5s; }
.btn.btn-primary, .btn.btn-secondary { color: #FFFFFF; }
.btn-primary { background-color: var(--primary) !important; border-color: var(--primary) !important; }
.btn-primary:hover { background-color: var(--secondary) !important; border-color: var(--secondary) !important; }
.btn-outline-gold { color: var(--secondary); border: 2px solid var(--secondary); background: transparent; }
.btn-outline-gold:hover { background: var(--secondary); color: #fff; }
.btn-square { width: 38px; height: 38px; }
.btn-sm-square { width: 32px; height: 32px; }
.btn-lg-square { width: 48px; height: 48px; }
.btn-square, .btn-sm-square, .btn-lg-square { padding: 0; display: flex; align-items: center; justify-content: center; font-weight: normal; border-radius: 0px; }

/*** Navbar ***/
.navbar { background: var(--primary) !important; border-bottom: 3px solid var(--secondary); }
.navbar .dropdown-toggle::after { border: none; content: "\f107"; font-family: "Font Awesome 5 Free"; font-weight: 900; vertical-align: middle; margin-left: 8px; }
.navbar-brand { background: var(--dark); padding: 0 20px !important; height: 75px; display: flex !important; align-items: center; }
.navbar-light .navbar-nav .nav-link { margin-right: 5px; padding: 25px 12px; color: rgba(255,255,255,0.85) !important; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; outline: none; transition: .3s; }
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link.active { color: var(--secondary) !important; }
.navbar-light .navbar-brand, .navbar-light a.btn { height: 75px; }
.navbar-light.sticky-top { top: -100px; transition: .5s; }
@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link { margin-right: 0; padding: 10px 0; color: #fff !important; }
    .navbar-light .navbar-nav { border-top: 1px solid rgba(255,255,255,0.2); padding: 10px; }
}
@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu { display: block; margin-top: 0; opacity: 0; visibility: hidden; transition: .5s; border-top: 3px solid var(--secondary); border-radius: 0; }
    .navbar .dropdown-menu.fade-down { top: 100%; transform: rotateX(-75deg); transform-origin: 0% 0%; }
    .navbar .nav-item:hover .dropdown-menu { top: 100%; transform: rotateX(0deg); visibility: visible; transition: .5s; opacity: 1; }
}
.navbar-toggler { border-color: rgba(255,255,255,0.5) !important; }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important; }

/*** Header Carousel ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item { position: relative; min-height: 500px; }
    .header-carousel .owl-carousel-item img { position: absolute; width: 100%; height: 100%; object-fit: cover; }
}
.header-carousel .owl-nav { position: absolute; top: 50%; right: 8%; transform: translateY(-50%); display: flex; flex-direction: column; }
.header-carousel .owl-nav .owl-prev, .header-carousel .owl-nav .owl-next { margin: 7px 0; width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; color: #FFFFFF; background: transparent; border: 1px solid #FFFFFF; font-size: 22px; transition: .5s; }
.header-carousel .owl-nav .owl-prev:hover, .header-carousel .owl-nav .owl-next:hover { background: var(--secondary); border-color: var(--secondary); }

/*** Page Header ***/
.page-header { background: linear-gradient(rgba(0,30,87,.85), rgba(0,30,87,.85)), url(../img/carousel-1.jpg); background-position: center center; background-repeat: no-repeat; background-size: cover; border-bottom: 4px solid var(--secondary); }
.page-header-inner { background: rgba(15, 23, 43, .7); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--secondary); }

/*** Section Title ***/
.section-title { position: relative; display: inline-block; text-transform: uppercase; color: var(--primary); font-family: 'Source Sans 3', sans-serif; font-weight: 700; letter-spacing: 2px; font-size: 13px; }
.section-title::before { position: absolute; content: ""; width: calc(100% + 80px); height: 2px; top: 4px; left: -40px; background: var(--secondary); z-index: -1; }
.section-title::after { position: absolute; content: ""; width: calc(100% + 120px); height: 2px; bottom: 5px; left: -60px; background: var(--secondary); z-index: -1; }
.section-title.text-start::before { width: calc(100% + 40px); left: 0; }
.section-title.text-start::after { width: calc(100% + 60px); left: 0; }

/*** Color Utilities ***/
.text-primary { color: var(--primary) !important; }
.bg-primary { background-color: var(--primary) !important; }
.text-gold { color: var(--secondary) !important; }
.bg-gold { background-color: var(--secondary) !important; }

/*** Stats Strip ***/
.stats-strip { background: var(--primary); border-top: 4px solid var(--secondary); border-bottom: 4px solid var(--secondary); padding: 30px 0; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--secondary); display: block; }
.stat-label { color: rgba(255,255,255,0.8); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }

/*** Service Cards ***/
.service-item { background: var(--light); transition: .5s; border-bottom: 3px solid transparent; border-radius: 4px; }
.service-item:hover { margin-top: -10px; background: var(--primary); border-bottom-color: var(--secondary); }
.service-item * { transition: .5s; }
.service-item:hover * { color: var(--light) !important; }
.service-item i { color: var(--secondary) !important; }
.service-item:hover i { color: #fff !important; }

/*** Club Cards ***/
.club-card { background: #fff; border: 1px solid #e3eaf7; border-top: 4px solid var(--secondary); border-radius: 4px; padding: 30px 20px; text-align: center; transition: .4s; height: 100%; }
.club-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,48,135,0.12); border-top-color: var(--primary); }
.club-icon { width: 70px; height: 70px; border-radius: 50%; background: var(--light); display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; font-size: 28px; color: var(--primary); border: 2px solid var(--secondary); }

/*** Event / News / Job Cards ***/
.event-card, .news-card, .job-card { background: #fff; border: 1px solid #e3eaf7; border-radius: 4px; overflow: hidden; transition: .4s; height: 100%; }
.event-card:hover, .news-card:hover, .job-card:hover { transform: translateY(-6px); box-shadow: 0 12px 35px rgba(0,48,135,0.1); }
.event-date-box { background: var(--primary); color: #fff; text-align: center; padding: 12px 15px; min-width: 75px; border-right: 3px solid var(--secondary); }
.event-date-box .day { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; line-height: 1; color: var(--secondary); }
.event-date-box .month { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }
.badge-club { background: var(--secondary); color: #fff; font-size: 11px; padding: 2px 10px; border-radius: 2px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; display: inline-block; margin-bottom: 5px; }
.badge-type { background: var(--light); color: var(--primary); font-size: 11px; padding: 2px 10px; border-radius: 2px; font-weight: 600; text-transform: uppercase; border: 1px solid #c8d8f0; display: inline-block; }
.job-type-badge { background: #e8f0fb; color: var(--primary); font-size: 11px; font-weight: 700; padding: 3px 12px; border-radius: 20px; text-transform: uppercase; }
.deadline-text { color: #e74c3c; font-size: 12px; font-weight: 600; }

/*** Category & Courses ***/
.category img, .course-item img { transition: .5s; }
.category a:hover img, .course-item:hover img { transform: scale(1.1); }

/*** Team ***/
.team-item img { transition: .5s; }
.team-item:hover img { transform: scale(1.1); }

/*** Testimonial ***/
.testimonial-carousel::before { position: absolute; content: ""; top: 0; left: 0; height: 100%; width: 0; background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%); z-index: 1; }
.testimonial-carousel::after { position: absolute; content: ""; top: 0; right: 0; height: 100%; width: 0; background: linear-gradient(to left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%); z-index: 1; }
@media (min-width: 768px) { .testimonial-carousel::before, .testimonial-carousel::after { width: 200px; } }
@media (min-width: 992px) { .testimonial-carousel::before, .testimonial-carousel::after { width: 300px; } }
.testimonial-carousel .owl-item .testimonial-text, .testimonial-carousel .owl-item.center .testimonial-text * { transition: .5s; }
.testimonial-carousel .owl-item.center .testimonial-text { background: var(--primary) !important; }
.testimonial-carousel .owl-item.center .testimonial-text * { color: #FFFFFF !important; }
.testimonial-carousel .owl-dots { margin-top: 24px; display: flex; align-items: flex-end; justify-content: center; }
.testimonial-carousel .owl-dot { position: relative; display: inline-block; margin: 0 5px; width: 15px; height: 15px; border: 1px solid #CCCCCC; transition: .5s; }
.testimonial-carousel .owl-dot.active { background: var(--secondary); border-color: var(--secondary); }

/*** Footer ***/
.footer { background: var(--dark) !important; }
.footer .btn.btn-social { margin-right: 5px; width: 35px; height: 35px; display: flex; align-items: center; justify-content: center; color: var(--light); font-weight: normal; border: 1px solid rgba(200,151,43,0.5); border-radius: 35px; transition: .3s; }
.footer .btn.btn-social:hover { background: var(--secondary); border-color: var(--secondary); color: #fff; }
.footer .btn.btn-link { display: block; margin-bottom: 5px; padding: 0; text-align: left; color: rgba(255,255,255,0.75); font-size: 15px; font-weight: normal; text-transform: capitalize; transition: .3s; }
.footer .btn.btn-link::before { position: relative; content: "\f105"; font-family: "Font Awesome 5 Free"; font-weight: 900; margin-right: 10px; color: var(--secondary); }
.footer .btn.btn-link:hover { letter-spacing: 1px; box-shadow: none; color: var(--secondary); }
.footer .copyright { padding: 20px 0; font-size: 14px; border-top: 1px solid rgba(200,151,43,0.2); color: rgba(255,255,255,0.6); }
.footer .copyright a { color: var(--secondary); }
.footer .footer-menu a { margin-right: 15px; padding-right: 15px; border-right: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,0.6); text-decoration: none; }
.footer .footer-menu a:last-child { margin-right: 0; padding-right: 0; border-right: none; }
.footer .footer-menu a:hover { color: var(--secondary); }
.dropdown-menu { border-radius: 0; border: none; box-shadow: 0 5px 20px rgba(0,0,0,0.1); }
.dropdown-item:hover { background: var(--light); color: var(--primary); }
