/* Vendor Portal Corporate Theme */

body {
    margin:0;
    font-family:
    "Segoe UI",
    Arial,
    sans-serif;

    background:#f5f7fb;
    color:#333;
}

.hero{

height:350px;

background:
linear-gradient(
rgba(0,0,0,.55),
rgba(0,0,0,.55)
),
url('/static/banner.jpg');

background-size:cover;

background-position:center;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

color:white;

text-align:center;

}


.hero h1{

font-size:45px;

}


.search-area{

display:flex;

gap:15px;

margin-top:30px;

}


.search-area input,
.search-area select{

padding:15px;

width:350px;

border-radius:8px;

border:none;

font-size:16px;

}
/* =========================
   Artist Category Section
========================= */

.category-section {

    padding:40px;
    text-align:center;

}


.category-section h2 {

    font-size:32px;
    margin-bottom:30px;
    color:#0b3c5d; 

}


/* First 10 Cards */

.category-grid {

    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;

}


/* Square Category Card */

.category-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    height:220px;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
    transition:.3s;
}


.category-card:hover {

    transform:translateY(-8px);

    box-shadow:
    0 10px 25px rgba(0,0,0,0.2);

}



/* Category Image */

.category-card img{
    display:block;
    width:100%;
    height:160px;
    object-fit:cover;
}


/* Category Name */

.category-card h3{
    margin:0;
    height:60px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-top:1px solid #e5e7eb;
    background:#fff;
    font-size:16px;
    font-weight:600;
    color:#075985;
}

/* Last 3 Cards Center */
.last-category-row{
    display:flex;
    justify-content:center;
    gap:25px;
    margin-top:25px;
}
.last-category-row .category-link{
    width:calc((100% - 50px) / 3);
    max-width:220px;
    text-decoration:none;
    color:inherit;
}

.last-category-row .category-card {
  background:white;

    border-radius:15px;

    overflow:hidden;

    text-align:center;

    height:220px;

    box-shadow:
    0 5px 15px rgba(0,0,0,0.15);

    cursor:pointer;

    transition:.3s;

}

.last-category-row .category-card img{
  
    width:100%;

    height:160px;

    object-fit:cover;  /* same divider line */
}

.last-category-row .category-card h3{
     margin:0;

    height:60px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:16px;

    color:#075985;

}


.artist-results{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}
/* STEP 2 - Artist Result Card Layout */

.vendor-results{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
    margin:35px;
}
.category-link{
    text-decoration: none;
    color: inherit;
    display: block;
}

.category-link:hover,
.category-link:visited,
.category-link:active{
    text-decoration: none;
    color: inherit;
}

.category-link h3{
    text-decoration: none;
}
.category-link{
    display:block;
    text-decoration:none;
    color:inherit;
}

.category-link:hover{
    text-decoration:none;
    color:inherit;
}

.category-link .category-card{
    cursor:pointer;
}
.vendor-card.vendor-item{

    display:flex;
    flex-direction:column;

    background:white;

    border-radius:15px;

    overflow:hidden;

    box-shadow:0 5px 20px rgba(0,0,0,0.12);

}

.vendor-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    transition:.35s;

    box-shadow:
        0 6px 20px rgba(0,0,0,.08);
}

.vendor-info{

    padding:18px;

    display:flex;
    flex-direction:column;

    justify-content:flex-start;

    gap:8px;
}


.vendor-info h3{

    margin:0;

    font-size:21px;

    font-weight:700;

    color:#0b3c5d;
}

.vendor-info .category{

    margin:0;

    color:#1677a8;

    font-size:15px;

    font-weight:600;
}



.vendor-info .location{

    margin:0;

    color:#777;

    font-size:14px;
}


.vendor-link{
    text-decoration:none;
    color:inherit;
}


.vendor-card:hover{

    transform:translateY(-8px);

    box-shadow:
        0 15px 35px rgba(0,0,0,.16);
}


/* Full photo area */





/* Text area */






.header h1 {

    margin:0;

    font-size:32px;

}



/* Main Container */

.container {

    width:90%;

    max-width:1200px;

    margin:30px auto;

}



/* Search Box */

.search-box {

    background:white;

    padding:25px;

    border-radius:15px;

    box-shadow:
    0 5px 20px rgba(0,0,0,0.08);

}



.search-box input {

    width:90%;

    padding:15px;

    border-radius:8px;

    border:1px solid #ddd;

    font-size:16px;

}



/* Vendor Cards */





@media(max-width:900px){

.vendor-results{

grid-template-columns:repeat(2,1fr);

}

}


@media(max-width:600px){

.vendor-results{

grid-template-columns:1fr;

}

}


/* Buttons */


.btn {


background:#1d7aa8;

color:white;

padding:10px 18px;

border-radius:8px;

text-decoration:none;


}


.btn:hover {

background:#0b3c5d;

}



/* Profile */


.profile-card {

    background:white;

    max-width:700px;

    margin:40px auto;

    padding:35px;

    border-radius:20px;

    text-align:center;

    box-shadow:
    0 5px 20px rgba(0,0,0,0.1);

}


.profile-card h2 {

color:#0b3c5d;

}



.link-btn {


display:inline-block;

margin:8px;

background:#e8f4fb;

color:#0b3c5d;

padding:12px 20px;

border-radius:10px;

text-decoration:none;


}


.link-btn:hover {


background:#1d7aa8;

color:white;


}



/* Mobile */

@media(max-width:600px){

.vendor-card{

flex-direction:column;

}


}
/* Profile Page Image */

.profile-image{

    width:300px;

    height:300px;

    object-fit:contain;

    border-radius:15px;

    background:#f5f7fb;

    display:block;

    margin:0 auto 25px auto;

}
/* Section Divider */

.section-divider{

    text-align:center;

    margin:50px 0 35px;

}


.divider-line{

    width:120px;

    height:4px;

    background:#1677a8;

    margin:15px auto;

    border-radius:10px;

}


.section-divider h2{

    margin:0;

    font-size:34px;

    color:#0b3c5d;

    font-weight:700;

}


.section-divider p{

    margin-top:10px;

    color:#666;

    font-size:17px;

}
.section-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin:20px 40px;

}

.section-header h2{

    margin:0;

    color:#0b3c5d;

}

.view-all-btn{

    text-decoration:none;

    color:#1677a8;

    font-weight:bold;

    font-size:16px;

}

.view-all-btn:hover{

    color:#0b3c5d;

}
.artist-header{

    width:90%;

    margin:20px auto 30px;

    display:flex;

    justify-content:flex-end;

    align-items:center;

}

.view-all{

    display:inline-block;

    background:#1677a8;

    color:white;

    padding:10px 22px;

    border-radius:25px;

    text-decoration:none;

    font-size:16px;

    font-weight:600;

    transition:.3s;

}


.view-all:hover{

    background:#0b3c5d;

    color:white;

    transform:translateY(-3px);

}
.all-artists-page{

    padding:40px;

}


.all-artists-page h1{

    text-align:center;

    font-size:40px;

    color:#0b3c5d;

    margin-bottom:10px;

}


.all-artists-page > p{

    text-align:center;

    color:#666;

    font-size:18px;

    margin-bottom:40px;

}
/* FINAL ALL ARTISTS CARD FIX */

.all-artists-page .vendor-results{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}


.all-artists-page .vendor-card{
    background:white;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.12);
}





.all-artists-page .vendor-info{

    padding:15px;

}


.all-artists-page .vendor-info h3{

    font-size:20px;
    margin:0 0 8px;
    color:#0b3c5d;

}


.all-artists-page .category{

    color:#1677a8;
    font-weight:bold;

}


.all-artists-page .location{

    color:#666;

}
.all-artists-page .vendor-card{

    height:320px;

}


.all-artists-page .vendor-info{

    height:140px;

    padding:15px;

}


/* Home page + All Artist page cards */

.vendor-results{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin:40px;
}







/* Text area */


/* Responsive */

@media(max-width:900px){

.vendor-results{
    grid-template-columns:repeat(2,1fr);
}

}


@media(max-width:600px){

.vendor-results{
    grid-template-columns:1fr;
}

}
/* ALL ARTISTS PAGE FINAL IMAGE CONTROL */

.all-artists-page .vendor-card{

    height:auto !important;

}


.all-artists-page .artist-image-box{

    width:100%;
    height:150px;
    overflow:hidden;

}



.all-artists-page .vendor-info{

    height:auto !important;

}
/* ALL ARTISTS PAGE SAME AS RESULT CARD */

.all-artists-page .vendor-results{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin:40px;

}
.all-artists-page .vendor-results{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}


.all-artists-page .vendor-card{

    width:220px;
    height:330px;

    background:white;
    border-radius:12px;
    overflow:hidden;

    box-shadow:0 4px 15px rgba(0,0,0,0.12);

}


.all-artists-page .artist-image{

    width:100%;
    height:220px;

    object-fit:contain;

    background:#f5f5f5;

}


.all-artists-page .vendor-info{

    padding:12px;

}


.all-artists-page .vendor-card{

    background:white;
    border-radius:15px;
    overflow:hidden;

    box-shadow:
    0 5px 20px rgba(0,0,0,0.12);

    transition:.3s;

}


.all-artists-page .vendor-card:hover{

    transform:translateY(-8px);

}


/* Image size */

.all-artists-page .artist-image{

    width:100%;
    height:250px;

    object-fit:contain;

    background:#f5f7fb;

}


/* Text */

.all-artists-page .vendor-info{

    padding:15px;

}


.all-artists-page .vendor-info h3{

    margin:0 0 8px;

    font-size:22px;

    color:#0b3c5d;

}


.all-artists-page .category{

    color:#1677a8;

    font-weight:bold;

}


.all-artists-page .location{

    color:#666;

}


/* All Artists Card */

.all-artists-page .vendor-results{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin:30px;

}


.all-artists-page .vendor-card{

    background:white;
    border-radius:12px;
    overflow:hidden;
    height:350px;
    box-shadow:0 4px 12px rgba(0,0,0,0.12);

}



/* Vertical 9:16 Image */

.all-artists-page .artist-image{

    width:100%;
    height:220px;


    background:#f5f5f5;

}



/* Text section */

.all-artists-page .vendor-info{

    padding:12px;

}


.all-artists-page .vendor-info h3{

    font-size:18px;
    margin:0 0 5px;
    color:#0b3c5d;

}


.all-artists-page .category{

    font-size:14px;
    color:#1677a8;
    font-weight:bold;

}


.all-artists-page .location{

    font-size:14px;
    color:#666;


}
.all-artists-page .artist-image{
    width:100%;
    aspect-ratio:3/4;
    object-fit:contain;
    object-position:center;
    display:block;
    background:#fff;
}
.artist-image{

    width:100%;

    aspect-ratio:3/4;

    object-fit:cover;

    border-radius:18px;

    display:block;
}

