
    * {
    font-family: League Spartan, sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

body {
    background-color: #0F0F0F;
    color: white;
    line-height: 1.6;

}

/* ===== HEADER/NAVBAR ===== */
.p-3 {
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid #333;
}

.mb-3 {
    margin-bottom: 0 !important;
}


.nav .nav-link {
    color: rgb(197, 197, 197) !important;
    font-weight: 600;
    font-size: 18px;
    padding: 8px 16px !important;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav .nav-link:hover {
    color: white !important;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4a90e2, #9013fe);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav .nav-link:hover::after {
    width: 80%;
}

.admin-link {
    color: #FFC107 !important;
    background-color: rgba(255, 193, 7, 0.1) !important;
}

.admin-link:hover {
    color: #FFD54F !important;
    background-color: rgba(255, 193, 7, 0.2) !important;
}

/* Search Bar */
.form-control {
    font-size: 16px;
    border: 1px solid #444;
    border-radius: 30px;
    padding: 10px 20px;
    background-color: #2A2A2A;
    transition: all 0.3s ease;
}

.form-control::placeholder {
    color: #bbb;
}

.form-control:focus {
    background-color: #333;
    color: white;
    border-color: #4a90e2;
    box-shadow: 0 0 0 0.25rem rgba(74, 144, 226, 0.25);
}

/* Dropdown */
.dropdown-menu {
    background-color: #1A1A1A;
    border: 1px solid #333;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.dropdown-item {
    color: white !important;
    padding: 10px 16px;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: #4f4a5e !important;
    padding-left: 20px;
}

.dropdown-divider {
    border-color: #333;
}

.user-avatar {
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.user-avatar:hover {
    border-color: #4a90e2;
    box-shadow: 0 0 10px rgba(74, 144, 226, 0.5);
}

/* ===== CAROUSEL ===== */
.c-item {
    height: 500px;
    position: relative;
    overflow: hidden;
}

.c-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7);
    transition: transform 8s ease;
}

.carousel-item.active .c-item img {
    transform: scale(1.05);
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: white;
    transform: scale(1.2);
}

.carousel-control-prev, .carousel-control-next {
    width: 5%;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.carousel-control-prev:hover, .carousel-control-next:hover {
    opacity: 1;
}

/* ===== SECTIONS ===== */
.container.px-4.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.pb-2 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, #4a90e2, #9013fe) 1;
    display: inline-block;
}

.pb-2 a:hover {
    color: #4a90e2;
}

/* ===== CARDS ===== */
.card {
    background: linear-gradient(145deg, #1A1A1A, #222);
    color: white;
    border: none;
    border-radius: 12px;
    display: flex;
    margin-bottom: 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
    max-width: 18rem;
    min-height: 100%;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4a90e2, #9013fe);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

.card-img-top {
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.card-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0;
    line-height: 1.4;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(74, 144, 226, 0.3);
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    margin-top: 4rem;
    border-top: 1px solid #333;
}

footer .text-reset {
    transition: all 0.3s ease;
}

footer .text-reset:hover {
    color: #4a90e2 !important;
    transform: translateY(-3px);
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
    .nav .nav-link {
        font-size: 16px;
        padding: 6px 12px !important;
    }
    
    .c-item {
        height: 350px;
    }
    
    .pb-2 {
        font-size: 1.5rem;
    }
    
    .card {
        max-width: 100%;
    }
}

/* Animation for page load */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.container.px-4.py-5 {
    animation: fadeIn 0.8s ease;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1A1A1A;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(#4a90e2, #9013fe);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(#5a9ff2, #a023fe);
}
