/* Import the Poppins font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
    
/* Loading Screen Styles */
#loadingScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #071b3d;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 1s ease-out;
}

.loading-content {
    color: white;
    text-align: center;
    font-family: 'Oleo Script', sans-serif;
}

.loading-content h1 {
    font-size: 60px;
    margin-bottom: 10px;
    font-weight: bold;
}

.loading-content p {
    font-size: 24px;
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #loadingScreen h1 {
        font-size: 1.5rem;
    }
    
    #loadingScreen p {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    #loadingScreen h1 {
        font-size: 1.2rem;
    }
    
    #loadingScreen p {
        font-size: 0.75rem;
    }
}

    /* Transparent Navbar */
    .navbar {
        position: absolute;
        background-color: #071b3d;  
        padding: 5px 0;
        transition: background-color 0.3s ease, border-radius 0.3s ease;  
        top: 0;  
        width: 100%;
        z-index: 1000;  
    }

    .sticky-navbar {
        position: fixed;
        top: 0;
        width: 100%;
        background-color: #071b3d; 
        border-radius: 0 0 10px 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    /* Logo Styling */
    .navbar-brand img {
        height: 70px;
        margin-right: 10px;
    }
    .navbar-brand h1 {
        display: inline;
        font-size: 1.5rem;
        color: #fef5e6;
        margin: 0;
        font-family: 'Oleo Script', cursive;
    }

    /* Navbar Link Styling */
    .navbar-nav .nav-link {
        color: #fef5e6; 
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .navbar-nav .nav-link:hover {
        color: #ff73a2;
    }
    .navbar-nav .nav-link.active {
        color: #fef5e6;
    }

    /* Dropdown Menu Customization */
    .dropdown-menu {
        background-color: #ff73a2; 
        border: none;
    }
    
    .dropdown-item {
        color: #fff; 
        transition: background-color 0.3s ease, color 0.3s ease;
    }
    .dropdown-item:hover {
        background-color: #ffffff; 
        color: #ff73a2; 
    }

    @media (max-width: 768px) {
        .navbar-brand img {
            height: 50px;
        }
        .navbar-brand h1 {
            font-size: 1.2rem;
        }
    }
    
/* Highlighted Artwork Section */
.highlighted-artwork-section {
    padding: 6 60px 0 15px 0;
    color: #fff;
    text-align: center;
    margin-top: 40px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: bolder;
    font-size: 30px;
    color: #FFFFFF;
    margin-bottom: 1rem;
    margin-top: 100px;
}

.section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #D4D4D4;
    margin-bottom: 2.5rem;
}

/* Artwork Item Style */
.artwork-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Hover Effect on Artwork Item */
.artwork-item:hover {
    transform: scale(1.05);
}

/* Artwork Image */
.artwork-image {
    width: 100%;
    border-radius: 15px;
    transition: filter 0.3s ease;
}

/* Image Brightness on Hover */
.artwork-item:hover .artwork-image {
    filter: brightness(0.5);
}

/* Overlay for Button */
.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.artwork-item:hover .overlay {
    opacity: 1;
}

/* Button Styling */
.overlay-button {
    font-family: 'Poppins', sans-serif;
    padding: 10px 20px;
    background-color: #ed8b21;
    border: none;
    border-radius: 20px;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.overlay-button:hover {
    background-color: #ff73a2;
}

/* Subtext Styling */
.subtext {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #ffffff;
    font-weight: 300;
    margin-left: 25px;
    margin-right: 25px;
    margin-top: 10px;  /* Adds space between button and subtext */
    margin-bottom: 30px;
    text-align: center; /* Centers the subtext */
}

/* Artwork Description */
.artwork-description {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: bolder;
    color: #f9d620;
    margin-top: 20px;
    text-align: center;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

    .fw-bold {
        color: #FFFFFF;
        margin-top: auto;
    }

.portfolio {
    margin: auto;
}

/* Add this CSS to your stylesheet */

.portfolio-item img {
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  .portfolio-item img:hover {
    transform: scale(1.05); /* Slight zoom effect */
    opacity: 0.8; /* Slight transparency when hovered */
  }
  

/* Change color for all buttons in the button group */
#filters .btn {
    background-color: #f9d620; /* Green background */
    border-radius: 30px;
    color: white; /* White text */
    border: none; /* Remove border */
    font-family: 'Poppins', sans-serif;
    font-weight: bolder;
  }
  
  
 /* General button style */
#filters .btn {
    background-color: #f9d620; /* Bright yellow background */
    border-radius: 30px;
    color: #051c48; 
    border: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    padding: 10px 24px;
    transition: all 0.3s ease-in-out; /* Smooth transition for effects */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Soft shadow */
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden; /* Hide extra effects */
}

/* Hover effect */
#filters .btn:hover {
    background-color: #f7a923; /* Darker yellow shade */
    color: #ff73a2;
    transform: translateY(-3px) scale(1.02); /* Lift and slightly enlarge on hover */
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3); /* Stronger shadow on hover */
}

/* Active/selected button style */
#filters .btn.is-checked {
    background-color: #ff73a2; /* Bright pink for active button */
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3); /* Enhanced shadow for active button */
    transform: scale(1.05); /* Slightly larger active button */
}

/* Animated background effect for hover */
#filters .btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 300%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transform: skewX(-20deg);
    transition: all 0.4s ease;
}

/* Move the background effect on hover */
#filters .btn:hover::before {
    left: 100%;
}

/* Focus outline for accessibility */
#filters .btn:focus {
    outline: 3px solid #f7a923; /* Outline for focus */
    outline-offset: 3px;
}

/* Style for the description in Lightbox */
.lightbox .description {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #fff;
    margin-top: 10px;
    line-height: 1.4;
    text-align: center;
}


    .back-to-home-btn {
        margin-top: 30px; 
        margin-bottom: 50px; 
        padding: 10px 20px;
        font-size: 1rem;
        background-color: #ff73a2;
        color: #fff;
        border-radius: 30px; /* Increased to make the button more rounded */
        text-decoration: none; /* Remove underline */
        transition: background-color 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .back-to-home-btn:hover {
        background-color: #ff4c80;
    }
    
    /* Contact Section Styling */
    .contact {
        background-color: #ff73a2;
        padding: 15px 0;
        border-radius: 30px 30px 0 0;
        margin-top: 50px;
        font-family: 'Poppins', sans-serif;
    }
    
    .contact h3 {
        font-size: 2rem;
        font-weight: 800;
        margin-top: 20px;
        margin-bottom: 5px;
        color: #ffffff;
    }
    
    .contact p {
        font-size: 1rem;
        font-weight: 400;
        color: #ffffff;
        margin-bottom: 10px;
    }
    
    /* Flexbox Layout */
    .contact .row {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .contact-text {
        text-align: left;
        margin-bottom: 10px;
    }
    
    .social-icons {
        display: flex;
        justify-content: flex-end;
        gap: 15px;
    }
    
    .social-icon {
        display: inline-block;
    }
    
    .icon {
        width: 40px;
        height: 40px;
        transition: transform 0.3s ease;
    }
    
    .icon:hover {
        transform: scale(1.1);
    }
    
    /* Optional: Additional hover effect for the icon containers */
    .social-icon:hover .icon {
        opacity: 0.8;
    }
    
    /* Copyright Styling */
    .copyright {
        text-align: center;
        font-size: 0.75rem;
        color: #ffffff;
        margin-top: 0px;
        opacity: 0.8;
    }
    
    /* Media Queries for Responsiveness */
    @media (max-width: 992px) {
        .contact .row {
            flex-direction: column;
            align-items: center;
        }
    
        .contact-text {
            text-align: center;
        }
    
        .social-icons {
            justify-content: center;
        }
    }
    
    @media (max-width: 768px) {
        .contact h3 {
            font-size: 1.75rem; /* Adjusted font size for small screens */
        }
    
        .contact p {
            font-size: 0.9rem;
        }
    
        .social-icons {
            gap: 10px;
        }
    
        .icon {
            width: 35px;
            height: 35px;
        }
    }
    
    @media (max-width: 576px) {
        .contact h3 {
            font-size: 1.5rem;
        }
    
        .contact p {
            font-size: 0.85rem;
        }
    
        .icon {
            width: 30px;
            height: 30px;
        }
    }
    
    