@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --bg: white;
    --textColor: black;
    --accentDark: #D4A373;
    --accentMid: #FAEDCD;
    --accentLight: #FEFAE0;
    --accent2Light: #E9EDC9;
    --accent2Dark: #CCD5AE;
}

* {
    font-family: 'Poppins';
    user-select:none;
}

body, html {
    margin:0;
    height:100%;
    height:100%;
    overflow-x:hidden;
    color:var(--accent2Light);
    background:var(--accentLight);
}

button {
    width:fit-content;
    background:var(--accentDark);
    color:white;
    border:0;
    border-radius:6px;
    padding:3px 7px;
    font-weight:1000;
    font-size:15px;
    cursor:pointer;
}
input {
    border:0;
    border-radius:10px;
    background:var(--accentDark);
    -webkit-text-fill-color: lightgrey;
    color:var(--accent2Light);
    outline:0;
    padding:2px 6px;
}
input[type="checkbox"] {
  accent-color:var(--accentMid);
}

select {
    border:0;
    border-radius:10px;
    background:var(--accentDark);
    color:var(--accent2Light);
    padding:2px 6px;
}

::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-thumb {
    background:var(--accentDark);
    border:0;
}
::-webkit-scrollbar-track {
    background:none;
    border:0;
}

.hidden {
  display: none;
}

#header {
    position:fixed;
    top:0;
    display:flex;
    background:var(--accentDark);
    width:calc(100% - 80px);
    height:30px;
    padding:5px 40px;
    z-index:990;
}

#loader {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--accentLight);
    z-index: 9999;
    
    transform: scaleX(0);
    transform-origin: center;
    animation: unset;
}

#pages {
    display:flex;
    gap:15px;
}
body[mobile] #pages {
    display:none;
    background:var(--accentDark);
    position:fixed;
    top:40px;
    left:0;
    width: 100%;
    justify-content:center;
}
#mobilePages {
    display:none;
    align-items:center;
}
body[mobile] #mobilePages {
    display:flex;
}
.pageBtn {
    color:var(--accent2Light);
    letter-spacing:5%;
    position: relative;
    display: inline-block;
    text-decoration: none;
}
.pageBtn::after {
    content: "";
    position: absolute;
    width: calc(100% - 14px);
    height: 2px;
    bottom: 5px;
    left: 7px;
    background-color: var(--accent2Light);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}
.pageBtn:hover::after {
    transform: scaleX(1);
}

#socials {
    display:flex;
    gap:20px;
    margin-left:auto;
    align-items:center;
}
.social {
    cursor:pointer;
    transition:transform 0.2s ease;
}
.social:hover {
    transform:scale(1.1);
}

#main {
    position:relative;
    display:flex;
    flex-direction:column;
    box-sizing: border-box;
    width:100%;
    height:80vh;
}
#mainPicture {
    width:100%;
    height:80vh;
    top:0;
    object-fit:cover;
    position:absolute;
    z-index:0;
}
#pictureOverlay {
    width:100%;
    height:80vh;
    position:absolute;
    top:0;
    background:var(--accentDark);
    z-index:1;
    opacity:0.5;
}
#mainDesc {
    display:flex;
    justify-content:center;
    align-items:center;
    width:100%;
    height:80vh;
    font-weight:1000;
    font-size:50px;
    text-align:center;
    z-index:2;
}
body[mobile] #mainDesc {
    font-size:3ch;
}
#scrollTip {
    display:flex;
    flex-direction:column;
    align-items:center;
    color:var(--accent2Light);
    width:100%;
    margin-top:auto;
    text-align:center;
    z-index:2;
}
#scrollArrow {
    fill: var(--accent2Light);
    width:40px;
    height:40px;
    animation: mover 0.5s infinite alternate;
}
.mainRedirect {
    margin-bottom:5px;
    color:var(--accent2Light);
    cursor:pointer;
    transition:transform 0.2s ease;
}
.mainRedirect button {
    color:var(--accent2Light);
    background:var(--accent2Dark);
    font-weight:600;
    border-radius:100px;
    padding:3px 15px;
}
.mainRedirect:hover {
    transform:scale(1.08);
}

#filter {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px 10px;
    cursor: text;
    width:100%;
    margin-top:40px;
    background:var(--accent2Dark);
}
#filterSearch {
    background:var(--accent2Dark);
    color:white;
    border: none;
    outline: none;
    flex: 1;
    min-width: 120px;
    font-size: 14px;
    width:100%;
}
.keyword-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: var(--accent2Light);
    color: white;
    border-radius: 999px;
    font-size: 13px;
}
.keyword-pill span {
    color:white;
}
.keyword-pill button {
    border: none;
    background: none;
    color: white;
    cursor: pointer;
    font-size: 14px;
}
#keywordMatch {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--accent2Light);
    color:var(--accent2Dark);
    border-top:solid 4px var(--accentLight);
    padding:0;
    list-style: none;
    max-height: 220px;
    overflow-y: auto;
    z-index: 999;
    margin:0;
}

#keywordMatch li {
    padding: 8px 12px;
    cursor: pointer;
    color:white;
    transition:background 0.2s ease;
}

#keywordMatch li:hover,
#keywordMatch li.active {
    background: var(--accentLight);
    color:black;
}

.galleryHolder {
    display:flex;
    width:calc(100% - 32px);
    gap:5px;
    padding:16px;
}
.gallery {
    column-count:1;
    column-gap:16px;
}
.gallery img {
    width:100%;
    height:auto;
    display:block;
}
.card {
    position:relative;
    break-inside:avoid;
    display:inline-block;
    margin-bottom:16px;
    background-color:rgb(0,0,0,0.5);
    transition:transform 0.2s ease;
}
.card:hover {
    z-index:99;
    transform:scale(1.05);
}

.info {
    position:absolute;
    width:fit-content;
    text-align:center;
    background:rgb(204, 213, 174, 0.5);
    color:white;
    padding: 2px 10px;
    font-size:1ch;
    font-weight:bold;

    border:0;
    border-bottom-right-radius: 10px;

    z-index:10;
    top:0;
    left:0;
}
.photoDownload {
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:100px;
    padding:7px;
    top:5px;
    left:5px;
    width:fit-content;
    height:fit-content;
    cursor:pointer;
}
.photoMaximize {
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:100px;
    padding:7px;
    top:5px;
    right:5px;
    left:auto;
    width:fit-content;
    height:fit-content;
    cursor:pointer;
}
.photoId {
    border-bottom-left-radius: 10px;
    left:50%;
    transform:translateX(-50%);
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-7px);
    }
}
@keyframes growCenter {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.small {
    font-size:10px;
}
.line {
    border:solid 3px var(--accentLight);
    border-radius:5px;
    margin-top:7px;
    width:calc(100% - 5px);
}
.separateLine {
    margin:auto 0;
    margin-top:-1px;
    border:solid 0.5px var(--accentLight);
    background:var(--accentLight);
    border-radius:5px;
    height:calc(100% - 5px);
    width:2px;
}

#loginMain {
    display:flex;
    flex-direction:column;
    gap:5px;
    border:solid 5px var(--accentDark);
    background:#D4A37380;
    border-radius:20px;
    color:white;
    -webkit-text-fill-color: white;
    font-size:1.3rem;
    font-weight:bold;
    padding:20px;
    margin:auto;
    width:300px;
    gap:7px;
}
#loginMain button {
    border-radius:10px;
    width:100%;
    font-weight:600;
}
#loginBtn {
    margin-top:7px;
}

#error {
    margin:0 auto;
    color:rgb(255, 40, 40);
    -webkit-text-fill-color: rgb(255, 40, 40);
    width:100%;
    text-align:center;
}

#contactMe {
    font-weight:bold;
    width:100%;
    border-top:solid 3px var(--accent2Light);
    background:var(--accentDark);
    text-align:center;
}
#imagePopup {
    position:fixed;
    width:100%;
    height:100%;
    z-index:999;
}
.popupBtn {
    position:absolute;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:100px;
    padding:0 10px;
    width:fit-content;
    height:fit-content;
    background:rgb(0,0,0,0.5);
    color:var(--accentLight) !important;
    z-index:999;
    font-size: 25px;
    font-weight: 500;
}
#popupClose {
    top:20px;
    right:20px;
}
#popupNext {
    top:50%;
    bottom:50%;
    right:20px;
    padding:0 12px;
}
#popupBack {
    top:50%;
    bottom:50%;
    left:20px;
    padding:0 12px;
}
#popupImg {
    position:absolute;
    background:grey;
    z-index:992;
    height:80%;
    top:calc(50% - 20px);
    left:50%;
    transform: translate(-50%, -50%);
}
body[mobile] #popupImg {
    height:unset;
    width:80%;
}
body:not([account]) #popupImg {
    top:50%;
}
#popupInfo {
    position:absolute;
    display:flex;
    justify-content:center;
    gap:20px;
    height:40px;
    bottom:0;
    background:rgb(0,0,0,0.5);
    color:var(--accentLight);
    z-index:999;
    width:100%;
}
body:not([account]) #popupInfo {
    display:none;
}
.popupInfoBtn {
    display:flex;
    align-items:center;
    gap:5px;
    position:relative;
    background:unset;
    font-weight:500;
    color:var(--accentLight);
}
.popupInfoBtn svg {
    width:20px;
    height:20px;
}
.popupInfoBtn::after {
    content: "";
    position: absolute;
    width: calc(100% - 14px);
    height: 2px;
    bottom:7px;
    left: 7px;
    background-color: var(--accent2Light);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}
.popupInfoBtn:hover::after {
    transform: scaleX(1);
}
#popupInfo .separateLine {
    height:50%;
    margin-top: auto;
    margin-bottom: auto;
}
#popupBlur {
    position:absolute;
    display:flex;
    color:var(--bg);
    justify-content:center;
    background:rgb(0,0,0,0.5);
    backdrop-filter: blur(10px);
    width:100%;
    height:100%;
    z-index:991;
    top:0;
    left:0;
}

body[about] {
    background:var(--accentLight);
    color:var(--accentDark);
}
#aboutHolder {
    padding:10px;
    margin-top:40px;
}
#aboutPhoto {
    max-height:45vh;
    object-fit:cover;
}
body[mobile] #aboutPhoto {
    min-height:45vh;
}
#aboutMe {
    display:flex;
    gap:20px;
}
body[mobile] #aboutMe {
    flex-direction: column;
    align-items:center;
    text-align:center;
}
#aboutMainText {
    margin-top:auto;
    margin-bottom:auto;
}
#aboutName {
    font-size:50px;
    font-weight:1000;
}
body[mobile] #aboutName {
    font-size:35px;
}
.aboutTitle {
    font-size:30px;
    font-weight:1000;
}
.aboutDesc {
    font-size:12px;
    margin-top:-7px;
}
#aboutExtras {
    display:flex;
    margin-top:15px;
}
body[mobile] #aboutExtras {
    flex-direction: column;
    text-align:center;
}
#aboutArtists {
    max-width:50vw;
}
body[mobile] #aboutArtists {
    max-width:100vw;
}
.aboutArtistHolder {
    margin-top:15px;
    display:flex;
    gap:10px;
    flex-wrap:auto;
    justify-content:center;
}
.aboutArtist {
    display:flex;
    flex-direction:column;
    align-items: center;
}
.aboutArtistImg {
    width:100px;
    height:100px;
    object-fit: cover;
    border-radius:100px;
    border:solid var(--accentDark) 3px;
}
.aboutArtistTitle {
    font-weight:700;
}
body[mobile] #latinmafia {
    display:none;
}
#aboutContact {
    max-width:50vw;
    text-align:right;
    width:100%;
}
body[mobile] #aboutContact {
    margin-top:30px;
    text-align:center;
    max-width:100vw;
}
#aboutContactDesc {
    margin-bottom:5px;
}
#aboutEmail a {
    color:var(--accentDark);
}

#filterHolder {
    display:flex;
    flex-direction: column;
    justify-content:center;
    align-items:center;
    padding:5px;
    background:var(--accentDark);
}
#filterLabel {
    display:flex;
    align-items:center;
    gap:5px;
    font-weight:700;
    font-size:25px;
}
#filters {
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    gap:50px;
}
body[mobile] #filters {
    flex-direction: column;
    gap:10px;
}
.filterDropdown {
    font-weight:500;
    border:solid 2px var(--accentLight);
    cursor:pointer;
    font-size:20px;
    text-align:center;
    width:fit-content;
}