   /* Carousel Styling */
   #carouselExample {
    width: 100%;
    height: 600px; /* Adjust height */
    /*overflow: hidden;*/
}

.carousel-item {
    height: 100vh;
    /* position: relative; */
}

.carousel-item img {
    /* position: absolute; */
    width: 100%;
    height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Caption Styling */
.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    /* background: rgba(0, 0, 0, 0.4); */
    padding: 20px;
    border-radius: 10px;f
}

.carousel-caption h1, .carousel-caption p {
    color: white;
}

/* Gallery Custom Styling */
#gallery .card {
    border: none; /* Remove border for a clean look */
    border-radius: 10px; /* Rounded corners for a modern look */
}

#gallery .card-img-top {
    border-radius: 10px 10px 0 0; /* Round top corners of the image */
}

#gallery .card-body {
    text-align: center; /* Center-align text */
}

#gallery .btn-primary {
    background-color: #007bff; /* Customize button color */
    border-color: #007bff; /* Match button border */
}

#gallery .btn-primary:hover {
    background-color: #0056b3; /* Darker hover color */
    border-color: #0056b3; /* Match hover border */
}

#gallery h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
}


/* Background for Section */


/* Card Styling */
.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.card img {
    height: 350px; /* Fixed height */
    object-fit: cover; /* Ensures full image */
}

/* Upload Date Styling */
.text-muted {
    font-size: 14px;
    font-weight: 600;
}

/* View All Button */
.btn-dark {
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
}
/* Fine Arts Section */
#fineArtsCarousel {

    max-width: 800px; /* Adjust width */
    margin: auto;
    border-radius: 10px;
    overflow: hidden;
}

/* Fine Arts Section */
#fineArtsCarousel {
    max-width: 100%; /* Adjust width */
    margin: auto;
    border-radius: 10px;
    overflow: hidden;
}

/* Fine Arts Image */
.fine-art-img {
    height: 400px; /* Fixed height */
    object-fit: cover; /* Maintain aspect ratio */
    border-radius: 10px;
    transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out, filter 1.2s ease-in-out;
    opacity: 0;
    transform: scale(1.05);
    filter: blur(5px); /* Initial blur */
}

/* Apply Fade-in + Zoom-in + Blur Removal Effect on Active Slide */
.carousel-item.active .fine-art-img {
    opacity: 1;
    transform: scale(1);
    filter: blur(0); /* Remove blur */
}

/* Footer Styling */
.footer {
    background: #464646;
    color: #ffffff;

}

.footer h1, .footer h4, .footer h5, .footer h6{
    color: #f1c40f; /* Gold Accent */
}

.footer p, .footer a {
    font-size: 14px;
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
}

.footer a:hover {
    color: #f1c40f; /* Gold Hover Effect */
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    background: #222;
    color: white;
    border-radius: 50%;
    transition: 0.3s;
}

.social-icon:hover {
    background: #f1c40f;
    color: black;
}

/* Copyright */
.designer-link {
    color: #f1c40f;
    font-weight: bold;
}
.designer-link:hover {
    text-decoration: underline;
}

