/* /Components/CanvasComponent.razor.rz.scp.css */
/* Paintings Grid Container */
.paintings-grid-container[b-3xm91bvnzi] {
    display: flex;
    justify-content: center;
    padding: 20px;
}

/* Default 4-Column Grid for Desktop */
.paintings-grid[b-3xm91bvnzi] {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns */
    gap: 16px;
    width: 100%;
    max-width: 1200px;
}

/* Painting Cards */
.painting-card[b-3xm91bvnzi] {
    background: #625c57;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 1);
    padding: 10px;
    color: white;
    font-size: 1px;
}

    .painting-card:hover[b-3xm91bvnzi] {
        transform: scale(1.05);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    }

/* Image inside card */
.painting-img[b-3xm91bvnzi] {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
}

/* Responsive: Change from 4-column to 1-column on smaller screens */
@media (max-width: 1200px) {
    .paintings-grid[b-3xm91bvnzi] {
        grid-template-columns: 1fr; /* Switch to 1-column layout */
    }

    .painting-card[b-3xm91bvnzi] {
        width: 100%;
        max-width: 600px; /* Prevents stretching too much */
    }

    .painting-img[b-3xm91bvnzi] {
        width: 100%;
        max-height: 400px; /* Ensures images don’t stretch excessively */
        object-fit: contain;
    }
}

/* Modal Overlay */
.modal-overlay[b-3xm91bvnzi] {
    position: fixed;
    top: 1rem;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Modal Animation */
@keyframes fadeIn-b-3xm91bvnzi {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-modal[b-3xm91bvnzi] {
    animation: fadeIn-b-3xm91bvnzi 0.3s ease-in-out;
}

/* Modal Content */
.modal-content[b-3xm91bvnzi] {
    background: #625c57;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: white;
}

/* Modal Image */
.modal-img[b-3xm91bvnzi] {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 6px;
}

/* Close Button */
.close-btn[b-3xm91bvnzi] {
    margin-top: 10px;
    padding: 10px 20px;
    background: red;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.2s;
}

    .close-btn:hover[b-3xm91bvnzi] {
        background: darkred;
    }
/* /Components/FooterComponent.razor.rz.scp.css */
.footer-items[b-gfml2dx5qu] {
    background-color: #635c57;
    padding: 10px;
    text-align: center;
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    height: 2rem;
}
/* /Components/HeaderComponent.razor.rz.scp.css */

/* Make the entire square clickable */
.social-link[b-biiiid0crz] {
    display: inline-flex; /* Ensures proper alignment */
    align-items: center;
    justify-content: center;
    width: 25px; /* Define a fixed square size */
    height: 50px;
    text-decoration: none; /* Removes any default link styling */
    border-radius: 5px; /* Optional: Adds rounded corners */
}

    /* Make sure the image is centered */
    .social-link img[b-biiiid0crz] {
        width: 25px;
        height: 25px;
        object-fit: contain;
        pointer-events: none; /* Prevents any interference */
    }
/* /Components/LanguageSelector.razor.rz.scp.css */
/* Language Button Styling */
.lang-btn[b-wvi5tmtibh] {
    display: inline-flex; /* Ensure it behaves properly inside flex containers */
    align-items: center;
    justify-content: center;
    width: 50px; /* Ensures a perfect clickable area */
    height: 50px; /* Matches width for a circular shape */
    background: none;
    border: none;
    border-radius: 50%; /* Makes the button circular */
    cursor: pointer;
    font-size: 24px; /* Adjust emoji size */
    transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out;
    padding: 0; /* Remove default padding */
    margin: 0; /* Remove any unexpected spacing */
    line-height: 1; /* Prevents extra height issues */
    position: relative;
}

    /* Ensure the emoji is truly centered */
    .lang-btn span[b-wvi5tmtibh] {
        display: flex;
        align-items: start;
        justify-content: center;
        width: 100%;
        height: 100%;
        line-height: 1;
    }

    /* Hover Effect */
    .lang-btn:hover[b-wvi5tmtibh] {
        transform: scale(1.2);
        opacity: 0.8; /* Slight fade effect */
    }

    /* Active/Selected Language Style */
    .lang-btn.active[b-wvi5tmtibh] {
        transform: scale(1.3);
        font-weight: bold;
        opacity: 1;
    }

/* Responsive Adjustments */
@media (max-width: 600px) {
    .lang-btn[b-wvi5tmtibh] {
        width: 40px; /* Slightly smaller for mobile */
        height: 40px;
        font-size: 20px; /* Adjust emoji size */
    }
}
/* /Components/NavBarComponent.razor.rz.scp.css */
@media (min-width: 769px) {
    .navbar[b-puaphsbjjj] {
        display: flex;
        width: 100%;
        height: 2rem;
    }

    .navbar-nav[b-puaphsbjjj] {
        padding-top: 1rem;
        gap: 1rem;
        color: white;
    }

    .nav-link[b-puaphsbjjj] {
        /*color: white !important;*/
    }

    .nav-toggler[b-puaphsbjjj] {
        display: none;
    }

    .dropdown-menu[b-puaphsbjjj] {
        position: absolute;
        top: 70%;
        left: 0.5rem;
        background-color: #635c57;
        /*padding: 10px;*/
        min-width: 200px;
        display: none;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 5px;
    }

    [b-puaphsbjjj] .dropdown-item:active {
        color: green !important;
        text-decoration: none !important;
        background-color: yellow !important;
    }

    [b-puaphsbjjj] a {
        color: white;
        text-decoration: none;
    }
}

/* MOBILE PART*/
@media (max-width: 991px) { /* Adjust breakpoint as needed */
    .navbar[b-puaphsbjjj] {
        display: flex;
        width: 100%;
        height: 2rem;
        background-color: #635c57;
    }

    .nav-link[b-puaphsbjjj] {
        color: white !important;
    }

    .navbar-collapse[b-puaphsbjjj] {
        position: absolute;
        right: 20px; /* Move navbar to the right */
        top: 50px; /* Adjust to be below toggler */
        width: 150px; /* Prevent full width */
        background: white; /* Optional: Set background color */
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add shadow */
        border-radius: 5px; /* Optional: Add rounded corners */
        padding: 10px; /* Add spacing */
    }

    .navbar-toggler[b-puaphsbjjj] {
        width: 30px; /* Adjust width */
        height: 30px; /* Adjust height */
        padding: 0px; /* Add padding to center icon */
        /*display: flex;*/ /* Ensures proper alignment */
        /*align-items: center;*/ /* Centers the icon vertically */
        /*justify-content: center;*/ /* Centers the icon horizontally */
        border: none !important;
        box-shadow: none !important;
        outline: none !important;
        border-radius: 8px; /* Adjust rounded corners */
    }

    /* Make sure the icon is properly inside */
    .navbar-toggler-icon[b-puaphsbjjj] {
        width: 25px;
        height: 25px;
        background-size: contain; /* Ensure proper size */
    }

    .dropdown-menu[b-puaphsbjjj] {
        position: absolute;
        top: 1rem;
        right: 5.8rem;
        background-color: #635c57;
        /*padding: 10px;*/
        min-width: 200px;
        display: none;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 5px;
    }
    

    .navbar-nav[b-puaphsbjjj] {
        padding: 0rem 0rem 0rem 0rem;
        color: white;
        background-color: #635c57;
    }

    .navbar-collapse[b-puaphsbjjj] {
        background-color: #635c57;
    }
    [b-puaphsbjjj] .dropdown-item:active {
        color: green !important;
        text-decoration: none !important;
        background-color: yellow !important;
    }

    [b-puaphsbjjj] a {
        color: white;
        text-decoration: none;
    }
    
}

/*dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: coral;
    padding: 10px;
    min-width: 140px;
    display: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    z-index: 1000;*/
        /*.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0rem 1rem ;
    height: 2rem;
}
.navbar-item {
    padding:3rem;
}*/
        /* By default, show the toggle button (for mobile) */
        /*.navbar-toggler {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: inherit;
}*/
        /* By default, hide the navigation links; they may be toggled via JavaScript */
        /*.navbar-links {
    display: none;
}*/
        /* Make sure the links inside the navbar display as a list horizontally on larger screens */
        /*.navbar-nav {
    list-style: none;
    display: flex;
    flex-direction: row;
    padding: 0;
    margin: 0;
}

.nav-item {
    margin-left: 1rem;
}

.nav-link,
.dropdown-item {
    text-decoration: none;
}*/
        /* Media query for screens 768px and up */
        /*@media (min-width: 768px) {*/
        /* Hide the toggle button on larger screens */
        /*.navbar-toggler {
        display: none;
    }*/
        /* Show navigation links */
        /*.navbar-links {
        display: block;*/ /* Or use 'flex' if you need more control over layout */
        /*}*/
        /* Arrange the nav items in a horizontal row */
        /*.navbar-nav {
        display: flex;
    }*/
        /* Optional: remove any mobile-specific open class behaviors */
        /*.navbar-links.open {
        display: block;
    }
}*/
        /* ---------------- DESKTOP STYLES ---------------- */
        /*@media (min-width: 769px) {
    .navbar {
        background-color: brown;
        color: white;
        height: 50px;
        padding: 0 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        width: 100%;
    }

    .navbar-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
    }*/
        /* 🚀 FORCE NAVBAR ITEMS INTO A SINGLE ROW */
        /*.navbar-links {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        width: auto;
        gap: 15px;*/ /* 🏆 Adds spacing */
        /*}

    .navbar-nav {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 0;
        margin: 0;
        list-style: none;
        gap: 15px;
    }*/
        /* 🔥 FIX NAVBAR ITEMS */
        /*.nav-item,
    .dropdown {
        color: white;
        text-decoration: none;
        background-color: coral;
        padding: 10px 15px;
        border-radius: 5px;
        font-size: 18px;
        font-weight: bold;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        min-width: 140px;
        max-width: 140px;
        height: 45px;
        box-sizing: border-box;
        white-space: nowrap;
        text-align: center;
    }*/
        /* 🔥 FIX "MAALID" ALIGNMENT */
        /*.dropdown {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 140px;
        max-width: 140px;
        height: 45px;
        box-sizing: border-box;
        line-height: 1;
        vertical-align: middle;
    }*/
        /* 🔥 Make "Maalid" behave like other nav items */
        /*.dropdown > .nav-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            text-align: center;
        }*/
        /* 🔥 DROPDOWN MENU */
        /*.dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background-color: coral;
        padding: 10px;
        min-width: 140px;
        display: none;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 5px;
        z-index: 1000;
    }*/
        /* 🔥 MATCH DROPDOWN ITEM STYLING */
        /*.dropdown-menu .dropdown-item {
            font-size: 18px;*/ /* 🔥 Match navbar font size */
        /*font-weight: bold;
            color: white;
            background-color: coral;
            padding: 12px;
            min-width: 140px;
            max-width: 140px;
            text-align: center;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
        }*/
        /* 🚀 REMOVE BLUE HIGHLIGHT */
        /*.dropdown-menu .dropdown-item:hover,
            .dropdown-menu .dropdown-item:focus {
                background-color: #d2691e;
                color: white;
                outline: none;
            }*/
        /* 🚀 SHOW DROPDOWN ON HOVER */
        /*.dropdown:hover .dropdown-menu {
        display: block;
    }*/
        /* 🚫 REMOVE MOBILE NAV BUTTON */
        /*.navbar-toggler {
        display: none;
    }
}*/
        /* ---------------- MOBILE STYLES ---------------- */
        /*@media (max-width: 768px) {
    .navbar {
        background-color: brown;
        color: white;
        height: 50px;
        padding: 5px 10px;
    }

    .navbar-toggler {
        display: block;
    }

    .navbar-links {
        display: none;
        flex-direction: column;
        background-color: brown;
        position: absolute;
        top: 100%;
        left: 0;
        width: 200px;
        padding: 10px 0;
    }

        .navbar-links.open {
            display: flex;
        }

    .dropdown-menu {
        position: absolute;
        left: 100%;
        top: 0;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }
}*/
/* /Layout/Mainlayout.razor.rz.scp.css */
/*.layout-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1;*/ /* Pushes footer to the bottom */
    /*padding: 20px;
}*/

/* /Pages/Bio.razor.rz.scp.css */
.bio-container[b-0xivakssw1] {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: #635c57;
}

    .bio-container h1[b-0xivakssw1] {
        text-align: center;
        color: #333;
        font-size: 36px;
        margin-bottom: 20px;
    }

.bio-info[b-0xivakssw1] {
    text-align: center;
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
}

    .bio-info p[b-0xivakssw1] {
        margin: 5px 0;
    }

    .bio-info a[b-0xivakssw1] {
        text-decoration: none;
        color: #007bff;
    }

.bio-content[b-0xivakssw1] {
    line-height: 1.6;
    font-size: 18px;
    color: white;
    white-space: pre-line; /* Ensures new lines are preserved */
}

.bio-image[b-0xivakssw1] {
    width: 75%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
}
/* /Pages/ExhibitsPast.razor.rz.scp.css */
.exhibition-container[b-7vnm63gt4h] {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background: #635c57;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

    .exhibition-container h1[b-7vnm63gt4h] {
        text-align: center;
        color: #333;
        font-size: 36px;
        margin-bottom: 20px;
        color: white;
    }

.exhibition-group[b-7vnm63gt4h] {
    margin-bottom: 50px;
    line-height: 1;
}

.exhibition-list[b-7vnm63gt4h] {
    list-style-type: none;
    padding: 0;
    color: white;
    
}

    /*.exhibition-list li {
        font-size: 18px;
        line-height: 2;
        margin-bottom: 8px;
        padding-left: 15px;
        position: relative;
    }

        .exhibition-list li::before {
            content: none;
            position: absolute;
            left: 0;
            font-size: 16px;
        }*/
/* /Pages/Home.razor.rz.scp.css */
/* Full-width hero section */
.hero-banner[b-qkqvtk7xtj] {
    position: relative;
    width: 100vw; /* Full width */
    height: 90vh; /* Keep the height */
    background: url('/images/jarvevaim.jpg') no-repeat center top 20%; /* Move the image downward */
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Aligns text to the left */
    padding-left: 5%;
}

/* Ensure text is properly positioned */
.overlay-content[b-qkqvtk7xtj] {
    position: absolute;
    color: #3e3e3e;
    font-size: 48px;
    font-weight: bold;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

/* Make sure it scales properly on different screen sizes */
@media (max-width: 1024px) {
    .hero-banner[b-qkqvtk7xtj] {
        height: 75vh;
        background-position: center;
    }

    .overlay-content[b-qkqvtk7xtj] {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .hero-banner[b-qkqvtk7xtj] {
        width: 100%;
        height: 100vh;
        background-size: 150%; /* Zooms in */
        background-position: center 40%; /* siin oli 40% Adjusts to keep creature centered */
    }

    .overlay-text[b-qkqvtk7xtj] {
        font-size: 22px;
        padding-left: 3%;
    }
}

/* Extra Small Screens (Phones) - More Zoom F12 and toggle devices to get the correct width/height for the small phones
*/
@media (max-width: 480px) {
    .hero-banner[b-qkqvtk7xtj] {
        width: 100%;
        height: 100vh;
        background-size: 110%; /* Further zoom */
        background-position: center 15%; /* Centers the creature */
    }

    .overlay-text[b-qkqvtk7xtj] {
        font-size: 18px;
        padding-left: 2%;
    }
}
