/* Global Styles */
body {
    background: linear-gradient(to right, #1a237e, #424242); /* Deep blue to dark gray gradient */
    color: #f5f5f5;
    font-family: Arial, sans-serif;
}

/* Header & Navigation */
.navbar-brand img {
    height: 70px;
}
.navbar {
    background-color: #18b8e0; /* Semi-transparent header */
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

/* Continuous Carousel */
.carousel-container {
    padding-top: 50px;
    margin: 50px auto;
}

.carousel-scroll {
    white-space: nowrap;
    animation: scrollCarousel 30s linear infinite;
}

.carousel-item-scroller {
    display: inline-block;
}

.carousel-item-scroller img {
    height: 120px;
    width: 200px;
    object-fit: cover;
    display: block;
}

/* Continuous scroll animation */
@keyframes scrollCarousel {
    0% {
        transform: translateX(0);
    }
    100% {
        /* This should be half the width of your carousel-scroll div to loop seamlessly */
        transform: translateX(-50%);
    }
}

/* Hero Section */
.hero-section {
    
    background-color: #18b8e0;
    padding: 100px 0;
    text-align: center;
}

/* Art Cards */
.card {
    background-color: #0e6f9c;
    border: none;
    color: #f5f5f5;
    border-radius: 1rem;
    overflow: hidden;
}

.card-img-top {
    height: 250px;
    object-fit: cover;
}

/* Pagination */
.pagination .page-item .page-link {
    background-color: transparent;
    border: 1px solid #ddd;
    color: #f5f5f5;
    margin: 0 5px;
}

.pagination .page-item.active .page-link {
    background-color: #007bff;
    border-color: #007bff;
}

/* Modals */
.modal-content {
    background-color: #212529;
    color: #f5f5f5;
    border-radius: 1rem;
}

.modal-header .btn-close {
    filter: invert(1);
}

.modal-body img {
    width: 100%;
    height: auto;
}

/* Buttons */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    border-radius: 20px;
    padding: 10px 20px;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-outline-light {
    border-color: #f8f9fa;
    color: #f8f9fa;
    border-radius: 20px;
    padding: 10px 20px;
}

/* Footer */
.footer {
    background-color: #18b8e0;
    padding: 20px 0;
}
        .smalltext {
/*  12px  */
  font-size:0.75rem;
}


.social-icon {
    font-size: 1.5rem;
    margin: 0 10px;
    color: #f5f5f5;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #007bff; /* Example hover color */
}