body {
    background-color: #333;
    color: #fff;
    font-family: 'Nunito', sans-serif;
}

.navbar {
    background-color: #bfa5a7;
}

.nav-link {
    color: #ffffff;
    transition: color 0.3s ease-in-out;
}

.nav-link:hover, .nav-link:focus {
    color: #ddd;
    background-color: transparent;
}

#gallery {
    margin-top: 60px;
}


.custom-navbar {
    background-color: #2a2a2a; /* Darker shade for better contrast */
}

.navbar-toggler {
    margin-right: auto; /* Moves the toggler to the left */
}

.navbar-brand {
    margin-left: 0.5rem; /* Adjust spacing if needed */
    color: #bfa5a7;
}

.navbar-dark .navbar-nav .nav-link {
    color: #ffffff; /* Ensures links are visible against the dark background */
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
    color: #bfa5a7; /* Lighter color on hover for contrast */
}
.banner {
    background: url('images/bannerimage.jpg') no-repeat center center; 
    background-size: cover;
    
    width: 100%;
    height: 500px; /* Adjust based on your design preferences */
    color: white; /* Ensures text is readable against a potentially dark image */

    /*background: url('https://via.placeholder.com/1920x600') no-repeat center center; */
    /*background-size: cover;*/
}

.banner-header {
    font-size: 2.5rem; /* Large text for the main header */
}

.banner-subheader {
    font-size: 1.5rem; /* Smaller text for the subheader */
}
.gallery-item {
    display: flex; 
    justify-content: flex-end;     flex-direction: column;

    align-items: center;
    height: 500px; /* Sets a fixed height for each gallery item */
    position: relative; /* Needed for the overlay to position correctly */
    overflow: hidden; /* Ensures nothing spills outside the container */
}

.gallery-item img {
    transition: transform 0.5s ease;
    max-height: 100%; /* Ensures the image does not exceed the container's height */
    object-fit: cover; /* Covers the area without distorting the aspect ratio, may crop the image */
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    transition: transform 0.5s ease;
    height: auto;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(176, 224, 230, 0.7); /* Light blue background, semi-transparent */
    color: black;
    transition: all 0.5s ease;
    transform: translateY(100%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0; /* Padding for text */
}

.gallery-item:hover .overlay {
    transform: translateY(0); /* Transition the overlay up into view */
}

.overlay .text {
    text-align: center;
    width: 100%;
    font-size: 16px; /* Adjust font size as needed */
}
.gallery-item:hover .overlay {
    opacity: 1; /* Shows the overlay when hovered */
}


/* Adjust font sizes for smaller devices */
@media (max-width: 768px) {
    .banner-header {
        font-size: 2rem;
    }
    .banner-subheader {
        font-size: 1rem;
    }.gallery-item {

    height: auto; /* Sets a fixed height for each gallery item */
}
footer {
    background-color: #333; /* Dark background for the footer */
    color: #fff; /* White text color */
}

footer a.text-white {
    color: #fff; /* Ensures links are white */
}

footer a.text-white:hover {
    color: #bfa5a7; /* Light pink color for hover states */
}

footer .textf {
    color: #fff; /* Lighter text color for the quote */
}
footer .col-md-4 {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}

footer h5 {
    margin-bottom: 10px; /* Adds space below the 'Follow Us' heading */
}

footer a {
    margin-right: 10px; /* Adds space between social icons */
}
.social-icon {
    margin: 0 8px; /* Adds 10px margin to both left and right of the icon */
}
a.social-icon {
    text-decoration: none; /* Removes underline */
}
 
.quo {
        font-style: italic;

}
/* General Modal Styling */
.modal-content {
    background-color: #333; /* Light background for the modal content */
    color: #000; /* Dark text color for contrast */
    font-family: 'Nunito', sans-serif; /* Stylish, clean font */
    border-radius: 8px; /* Rounded corners for a softer look */
    text-align:center;
}

.modal-header, .modal-footer {
    background-color: #333; /* Slightly darker background for header/footer */
    border-bottom: none; /* Removes default borders */
    border-top: none; /* Removes default borders in footer */
}

.modal-title {
    font-weight: 700; /* Bold font weight for the title */
    color:#000;
}

.btn-close {
    color: #fff; /* Ensures the close button is visible */
}

/* Enhancing the Close Button */
.btn-close:hover {
    color: #000; /* Darker color on hover for better interaction */
}

.modal-body img {
    border-radius: 4px; /* Slightly rounded corners for images */
}

.modal-footer {
    font-size: 0.9rem; /* Smaller font size for less important footer text */
    text-align: center; /* Center-aligns the footer content */
}

/* Custom overlay text style in modal */
.modal-footer p {
    padding: 15px;
    color: #333; /* Text color for footer */
    margin-bottom: 0; /* Removes default margin */
    width: 100%; /* Full width */
    box-sizing: border-box;
}
}
/* Responsive adjustments */
@media (max-width: 576px) {
    .modal-dialog {
        margin: 20px; /* Smaller margin on small devices */
    }.navbar-toggler{margin-right:0;}
}
.btn {
    background-color: #B19CD9
; /* Example blue, adjust as needed */
    border-color: transparent; /* Darker blue for border */
    color: #fff; /* Text color */
        padding: 15px;    
        text-decoration:none;


}

.btn:hover {
    background-color: #B0E0E6; /* Darker blue on hover */
    color: #000; /* Keep text color white on hover */
}
.modal-header {
    position: relative; /* Needed for absolute positioning of the button */
}

.modal-title {
    width: 100%; /* Ensures the title can be centered properly */
}

.btn-close {
    position: absolute; /* Positions the button absolutely within the header */
    right: 15px; /* Adjust based on padding and aesthetic preference */
    top: 50%; /* Aligns the button vertically to the middle */
    transform: translateY(-50%); /* Ensures the button is exactly centered vertically */color: #fff;
} 
.modal-header {
    display: flex;
    justify-content: center; /* Aligns children (title and button) in the center */
    position: relative;
}

.modal-title {
    margin-right: auto; /* Pushes the close button to the far right */
        color:#000;

}

.btn-close {
    margin-left: auto; /* Ensures the button is spaced from the title */
    color:#fff;
}.banner {
    position: relative;
    background: url('images/bannerimage.jpg') no-repeat center center; 
    background-size: cover; /* Cover the full area of the banner */
}
.artwork-image {
    transition: transform 0.5s ease;
    overflow: hidden;
}

.artwork-image:hover {
    transform: scale(1.1);
}

.btn-inquire {
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    cursor: pointer; /* Ensures it's clear this is a clickable button */
        background-color: #B19CD9; color:#fff;
}

.btn-inquire:hover {
    background-color: #B0E0E6; /* Darker blue on hover */
}
.artwork-container {
    position: relative;
    overflow: hidden; /* Prevents the image from going outside the bounds of its container */
    width: 100%; /* Adjust width as necessary */
    height: auto; /* Adjust height as necessary, or make it responsive */
}

.artwork-image {
    width: 100%; /* Ensures the image covers the full width of the container */
    height: 100%; /* Ensures the image covers the full height of the container */
    transition: transform 0.5s ease; /* Smooth transition for the transform effect */
    object-fit: cover; /* Ensures the image covers the area without distorting aspect ratio */
}

.artwork-image:hover {
    transform: scale(1.1); /* Scales the image up to 110% of its original size */
}
/* Ensures the navbar items align left always */
.navbar-nav {
    align-items: flex-end; /* Align items to the start of the nav */
}

/* Fix alignment issues by resetting flex properties */
.navbar-collapse {
    justify-content: flex-end !important; /* Force content to align to the left */
    width: 100%; /* Ensure the collapse container takes full width */
}

/* Ensures navbar contents are always right-aligned */
.navbar-collapse {
    justify-content: flex-end !important; /* Aligns the navbar items to the right */
}

/* Ensure the navbar-nav takes the full width of its container to properly align items */
.navbar-nav {
    width: 100%;
}

/* Additional rule to target the flex container within the navbar-collapse when it's a flexbox */

    .navbar-nav {
        justify-content: flex-end; /* Ensures items are pushed to the right */
    
}
a {text-decoration:none;}

    


@media (max-width: 768px) { /* Adjusts for small devices */
    .banner {
        height: auto; /* Adjusts the minimum height for smaller devices */
        margin-top:0;
    }.navbar {
        margin-bottom: 0 !important;  /* Removes any bottom margin applied to the navbar */
    } .container2 {        display:flex;background-position: left center; /* Keep background image centered */    align-items: center;  /* Aligns items vertically in the center */


        height: auto; /* Adjust this value if you need a specific height on mobile */
        min-height: 300px; /* You can set a minimum height if needed */
    }}.banner {
    position: relative;
    background-image: url('images/bannerimage.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
}
.quo {
        font-style: italic;
