﻿/* Navbar */
.navbar-nav .nav-link:hover {
    color: #C1272D !important;
}

.dropdown-item:hover {
    background-color: #C1272D !important;
    color: #FFD700 !important;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Footer */
.footer-link {
    color: #F5F1E9;
    margin-bottom: 12px;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
}

    .footer-link:hover {
        color: #FFD700;
        transform: translateX(5px);
    }

/* Hero Card (custom cards for sections) */
.hero-card {
    background-color: rgba(255,255,255,0.1);
    min-height: 220px;
    display: flex;
    align-items: center;
    padding: 25px;
    border-radius: 10px;
    transition: transform 0.3s;
    text-decoration: none;
}

    .hero-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    }

    .hero-card i {
        font-size: 2.5rem;
        color: #FFD700;
        margin-right: 20px;
    }

    .hero-card h4 {
        color: #FFD700;
        margin-bottom: 5px;
    }

    .hero-card p {
        color: #FFF;
        margin: 0;
    }

/* Carousel */
.carousel-wrapper {
    position: relative;
}

.carousel {
    scroll-behavior: smooth;
    gap: 20px;
    display: flex;
}

    .carousel::-webkit-scrollbar {
        display: none;
    }

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(220,20,60,0.8);
    border: none;
    color: #FFD700;
    font-size: 2rem;
    padding: 5px 12px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    transition: 0.3s;
}

    .carousel-btn:hover {
        background: #DC143C;
    }

.left-btn {
    left: -10px;
}

.right-btn {
    right: -10px;
}

/* Carousel Card */
.carousel .card {
    width: 250px;
    height: 400px;
    background-color: rgba(255,255,255,0.1);
    border: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s;
}

    .carousel .card:hover {
        transform: translateY(-5px);
    }

.card-body {
    flex: 1;
}

.card-footer {
    background: rgba(0,0,0,0.2);
    padding: 8px;
    display: flex;
    align-items: center;
}

.author-img {
    width: 30px;
    height: 30px;
    object-fit: cover;
    margin-right: 10px;
    border: 2px solid #FFD700;
}

.author-info {
    font-size: 0.85rem;
    color: #fff;
}

.card-img-top {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}
