/* School Theme CSS mimicking SMAN 1 Konohaa / Park Serpong Style */
:root {
    --primary-color: #002b5e; /* Navy Blue */
    --secondary-color: #f39c12; /* Orange/Gold */
    --text-color: #333;
    --light-bg: #f8f9fa;
    --dark-bg: #1a1a1a;
    --white: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

a {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

/* Top Bar */
#top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

#top-bar a {
    color: var(--white);
}

#top-bar i {
    margin-right: 5px;
}

.social-icons a {
    margin-left: 10px;
}

/* Navbar */
.navbar-default {
    background-color: var(--white);
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 0;
    padding: 15px 0;
}

.navbar-brand {
    height: auto;
    padding: 0 15px;
    font-weight: 700;
    font-size: 24px;
    color: var(--primary-color) !important;
    line-height: 1.2;
}

.navbar-brand span {
    font-size: 14px;
    color: #666;
    display: block;
    font-weight: 400;
}

.navbar-nav > li > a {
    color: var(--primary-color) !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    padding: 10px 15px;
}

.navbar-nav > li > a:hover, .navbar-nav > li.active > a {
    color: var(--secondary-color) !important;
    background-color: transparent !important;
}

/* Hero Slider */
.carousel-inner .item {
    height: 600px;
    background-size: cover;
    background-position: center;
}

.carousel-caption {
    background: rgba(0, 43, 94, 0.7);
    padding: 30px;
    border-radius: 5px;
    bottom: 20%;
}

.carousel-caption h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.carousel-caption p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-theme {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
}

.btn-theme:hover {
    background-color: #d68910;
    color: var(--white);
}

/* Section Common */
section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

/* Info Boxes / Features */
.info-box {
    background: var(--white);
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    text-align: center;
    transition: transform 0.3s;
    height: 100%;
}

.info-box:hover {
    transform: translateY(-5px);
}

.info-box i {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.info-box h4 {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* About Section */
.about-img img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-content h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.about-list {
    list-style: none;
    padding: 0;
.about-list li {
    margin-bottom: 10px;
}

/* Sticky Navbar Animation */
.navbar-fixed-top {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    animation: fadeInDown 0.5s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-bottom: none;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    display: none;
    background: var(--secondary-color);
    color: var(--white);
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 44px;
    font-size: 16px;
    border-radius: 50%;
    right: 15px;
    bottom: 15px;
    transition: background 0.3s;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.back-to-top:hover, .back-to-top:focus {
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
}   position: relative;
    padding-left: 25px;
}

.about-list li::before {
    content: '\f00c';
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* Stats Section */
#stats {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 0;
}

.stat-item {
    text-align: center;
    margin-bottom: 30px;
}

.stat-item h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 18px;
    font-weight: 500;
    opacity: 0.9;
}

/* Stages / Programs */
.stage-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.stage-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.stage-content {
    padding: 20px;
}

.stage-content h4 {
    font-weight: 700;
    color: var(--primary-color);
}

.progress {
    height: 10px;
    margin-top: 15px;
    border-radius: 5px;
}

/* News */
.news-item {
    margin-bottom: 30px;
}

.news-img {
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 15px;
}

.news-img img {
    transition: transform 0.5s;
}

.news-item:hover .news-img img {
    transform: scale(1.1);
}

.news-date {
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
    display: block;
}

.news-title a {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

/* Footer */
#footer {
    background: var(--dark-bg);
    color: #ccc;
    padding: 60px 0 20px;
}

#footer h4 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 20px;
}

#footer ul {
    list-style: none;
    padding: 0;
}

#footer ul li {
    margin-bottom: 10px;
}

#footer a {
    color: #ccc;
}

#footer a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
}
