/* ============================================
   ACET WEBSITE – Custom Styles
   ============================================ */

/* ----- General ----- */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

a {
    text-decoration: none;
    transition: color 0.2s;
}

/* ----- Navbar ----- */
.navbar-brand img {
    max-height: 50px;
    width: auto;
}
.navbar .nav-link {
    font-weight: 500;
    color: #2c3e50 !important;
}
.navbar .nav-link:hover {
    color: #1a73e8 !important;
}

/* ----- Carousel ----- */
.carousel-item img {
    height: 500px;
    object-fit: cover;
    filter: brightness(0.8);
}
.carousel-caption {
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 10px;
}
.carousel-caption h5 {
    font-size: 2.5rem;
    font-weight: 700;
}
.carousel-caption p {
    font-size: 1.2rem;
}

/* ----- Cards & Sections ----- */
.card {
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* ----- Stats (Homepage) ----- */
.stats-section h3 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a73e8;
}
.stats-section p {
    font-size: 1.1rem;
    color: #555;
}

/* ----- Footer ----- */
footer {
    background-color: #1a2332 !important;
}
footer a {
    color: #adb5bd !important;
}
footer a:hover {
    color: #fff !important;
}

/* ----- Buttons ----- */
.btn-primary {
    background-color: #1a73e8;
    border-color: #1a73e8;
}
.btn-primary:hover {
    background-color: #1557b0;
    border-color: #1557b0;
}

/* ----- Admin Panel Tweaks (for sidebar) ----- */
.admin-sidebar .nav-link {
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 4px;
}
.admin-sidebar .nav-link:hover {
    background: rgba(255,255,255,0.1);
}
.admin-sidebar .nav-link i {
    width: 24px;
    text-align: center;
}

/* ----- Responsive Helpers ----- */
@media (max-width: 768px) {
    .carousel-item img {
        height: 300px;
    }
    .carousel-caption h5 {
        font-size: 1.5rem;
    }
    .stats-section h3 {
        font-size: 2rem;
    }
}