﻿/* Commission Pages */
.commission-page {
    text-align: center;
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

    .commission-page h1 {
        font-size: 2.2rem;
        color: #333;
        margin-bottom: 15px;
    }

    .commission-page p {
        font-size: 1.2rem;
        color: #666;
        margin-bottom: 20px;
    }

/* Pricing Layout */
.commission-pricing {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Individual Price Box */
.price-box {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 250px;
}

    .price-box h2 {
        font-size: 1.5rem;
        color: #444;
    }

    .price-box p {
        font-size: 1.1rem;
        color: #666;
    }
.price-box-wide {
    width: 100%;
    max-width: calc(100% - 40px); /* add padding */
    margin: 10px auto;
}
/* Individual Reference Sheet Price Box */
.refprice-box {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 200px;
    flex: 1 1 200px;
    max-width: 200px;
}

    /* Make the first box span full width */
    .refprice-box:first-of-type {
        flex: 1 1 100%;
        max-width: 100%;
    }
/* Art Examples Section */
.art-examples h2 {
    margin-top: 40px;
    font-size: 1.8rem;
    color: #333;
}

/* Example Gallery */
.gallery-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.gallery-item {
    width: 200px;
    height: auto;
    border-radius: 8px;
    transition: transform 0.2s ease-in-out;
}

    .gallery-item:hover {
        transform: scale(1.05);
    }
/* Commission Overview */
.commission-overview {
    text-align: center;
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

    .commission-overview h1 {
        font-size: 2.5rem;
        color: #333;
        margin-bottom: 15px;
    }

    .commission-overview p {
        font-size: 1.2rem;
        color: #666;
        margin-bottom: 30px;
    }

/* Commission Grid */
.commission-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}



/* Individual Commission Box */
.commission-box {
    width: 260px;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s ease-in-out;
    text-align: center;
    cursor:pointer;
    height:330px;
}

    .commission-box img {
        width: 100%;
        max-height: 180px;
        border-radius: 8px;
        object-fit: cover;
        margin-bottom: 10px;
    }

    .commission-box h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .commission-box a {
        text-decoration: none;
        color: #d63031;
    }

    .commission-box p {
        font-size: 1rem;
        color: #555;
    }

    .commission-box:hover {
        transform: scale(1.05);
    }
.commission-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
    .commission-link * {
        text-decoration: none !important;
    }
    .commission-link:hover .commission-box {
        transform: scale(1.02);
        transition: transform 0.2s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
.no-examples {
    text-align: center;
    font-style: italic;
    color: #666;
    margin: 20px 0;
    padding: 10px;
    background: #fdfdfd;
    border: 1px dashed #ccc;
    border-radius: 6px;
}

/*Image Hovering with text*/
.image-hover-wrapper {
    position: relative;
    display: inline-flex;
    overflow: hidden;
    border-radius: 8px;
    width: 300px; 
}

    .image-hover-wrapper .gallery-item {
        width: 100%;
        height: auto;
        border-radius: 8px;
        transition: transform 0.2s ease-in-out;
        display: block;
    }

    .image-hover-wrapper:hover .gallery-item {
        transform: scale(1.05);
    }

.hover-label {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 33%;
    background: rgba(0, 0, 0, 0.6);
    color: white !important;
    font-size: 1rem;
    text-align: center;
    padding: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.image-hover-wrapper:hover .hover-label {
    opacity: 1;
}

/*for ref sheets*/
.image-hover-wrapper-wide {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 8px;
    width: 300px; /* for reference sheet width */
}

    .image-hover-wrapper-wide .gallery-item {
        width: 100%;
        height: auto;
        border-radius: 8px;
        transition: transform 0.2s ease-in-out;
        display: block;
    }

    .image-hover-wrapper-wide:hover .gallery-item {
        transform: scale(1.05);
    }

    .image-hover-wrapper-wide .hover-label {
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 33%;
        background: rgba(0, 0, 0, 0.6);
        color: white;
        font-size: 1rem;
        text-align: center;
        padding: 10px;
        opacity: 0;
        transition: opacity 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }

    .image-hover-wrapper-wide:hover .hover-label {
        opacity: 1;
    }
.reference-prices {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
    transition: transform 0.2s ease-in-out;
    cursor: pointer;
}
