/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@500&display=swap');
/* Global Styles */
:root {
    --main: #DADDB1;
    --drktxt: #383838;
    --colour3: #737373;
    --littxt: #cfcfcf;
    --colour5: #929292;
    --bg: white;
}
/*IE9*/
*::selection 
{
    background-color:transparent;
} 
*::-moz-selection
{
    background-color:transparent;
}
*
{        
    -webkit-user-select: none;
    -moz-user-select: -moz-none;
    /*IE10*/
    -ms-user-select: none;
    user-select: none;

    /*You just need this if you are only concerned with android and not desktop browsers.*/
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}  
body {
    font-family: 'Rubik', sans-serif;
    margin: 0;
    width: 100%;
    position: absolute;
}

*, *::before, *::after {
    box-sizing: inherit;
}

html {
    box-sizing: border-box;
}

/* Default styles for larger screens */
main {
    padding-left: 12vw;
    padding-right: 12vw;
}

/* Media queries for responsive design */
@media (max-width: 768px) {
    main {
        padding-left: 5vw;
        padding-right: 5vw;
    }
}

@media (max-width: 480px) {
    main {
        padding-left: 1vw;
        padding-right: 1vw;
    }
}

/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Gallery Styles */
.gallery {
    column-count: 3;
    column-gap: 6px;
}

.gsticky {
    margin-top: 66px;
}

.photo {
    position: relative;
    cursor: pointer;
    display: inline-block;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.photo img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    

}
.photo-img {
    transition: transform 0.3s ease-in-out;
}
.photo.blur {
    filter: blur(1.7px);
}

@media (max-width: 768px) {
    .gallery {
        column-count: 2;
        column-gap: 5px;
    }

    .lightbox img {
        max-width: 80%;
        max-height: 80%;
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(70px);
    background: rgba(255,255,255,0.85);
    justify-content: center;
    align-items: center;
    z-index: 1001;
    flex-direction: column; /* Add this line to stack items vertically */
}

.lightbox img {
    max-width: 80%;
    max-height: 80%;
    background-color: var(--main);
    padding: 10px;
    border-radius: 15px;
    color: var(--drktxt);
}

.bottom-right {
    position: absolute;
    bottom: 8px;
    right: 16px;
  }
@media (max-width: 768px) { 
    .lightbox img {
        max-width: 95%;
        max-height: 95%;
    }
}
.lightbox .buttons {
    margin-top: 10px; /* Add some margin to separate buttons from description */
}

.lightbox .buttons button {
    background-color: #F7F7F7;
    padding-top: 10px;
    font-family: 'Rubik', sans-serif;
    padding-bottom: 10px;
    color: var(--drktxt);
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 10px;
    border-radius: 30px;
    margin-right: 5px;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-transform:capitalize;
    border: none;
    text-decoration: none;
    cursor: pointer;
    font-size: 17px;
}

button {
    background-color: #F7F7F7;
    padding-top: 10px;
    font-family: 'Rubik', sans-serif;
    padding-bottom: 10px;
    color: var(--drktxt);
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 10px;
    border-radius: 30px;
    margin-right: 5px;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-transform:capitalize;
    border: none;
    text-decoration: none;
    cursor: pointer;
    font-size: 17px;
}

button:hover {
    background-color: var(--main);
}

.lightbox .buttons button:hover {
    background-color: var(--main);
}

.lightbox-description {
    color: var(--drktxt);
    margin-top: 10px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.lightbox .close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--drktxt);
    font-size: 24px;
    cursor: pointer;
}

/* Header Styles */
.header {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    margin-bottom: 5px;
    position: relative;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--bg);
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}

/* Input Styles */
.inputGroup {
    background-color: #ECECEC;
    display: inline-block;
    width: fit-content;
    margin-top: 10px;
    border-radius: 30px;
    margin-right: 5px;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-transform:capitalize;
    font-size: 17px;
    transition: 0.1s;
}

.inputGroup:hover {
    background-color: var(--main);
}
.inputGroup label:active  {
    /* font-size: 15px; */
    
}
.loading {
    background-color: #dfdfdf;
}

.inputGroup label {
    padding: 8px 20px;
    display: block;
    text-align: left;
    color: #3c454c;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: color 200ms ease-in;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    transition: 0.1s;
}
.inputGroup label:active  {
    font-size: 15px;
    padding: 8.5px 22.5px;

}
.inputGroup input:checked ~ label {
    color: var(--drktxt);
    background-color: var(--main);
    border-radius: 30px;
}

.inputGroup input:checked ~ label:before {
    transform: translate(-50%, -50%) scale3d(56, 56, 1);
    opacity: 1;
}

.inputGroup input:checked ~ label:after {
    background-color: var(--colour2);
    border-color: var(--colour2);
}

.inputGroup input {
    width: 32px;
    height: 32px;
    order: 1;
    z-index: 2;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    visibility: hidden;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: white;
    border-radius: 15px;
}

::-webkit-scrollbar-thumb {
    background: #D9D9D9;
    border-radius: 15px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

header {
    padding-top: 10vh;
    padding-bottom: 2vh;
}
header h1 {
    font-size: 50px;
    color: var(--drktxt);
    display: inline-block;
    position: relative;
}



header h1:hover {
}

header h1:hover:before {
}








/* Select form */

/*style the arrow inside the select element:*/
.select-selected:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #fff transparent transparent transparent;
  }
  
  /*point the arrow upwards when the select box is open (active):*/
  .select-selected.select-arrow-active:after {
    border-color: transparent transparent #fff transparent;
    top: 7px;
  }
  
  /*style the items (options), including the selected item:*/
  .select-items div,.select-selected {
    color: #ffffff;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    user-select: none;
  }
  
  /*style items (options):*/
  .select-items {
    position: absolute;
    background-color: DodgerBlue;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
  }
  
  /*hide the items when the select box is closed:*/
  .select-hide {
    display: none;
  }
  
  .select-items div:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
  }


.test {
    color: var(--drktxt);
    color: var(--colour5);
}


.gallery-container {
    position: relative;
    overflow: hidden;
}

.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1111;
}


.loading-spinner::after {

}

.grid-container {
    display: grid;
    grid-template-columns: auto auto;
    width: 100%;
    position: absolute;
    top: 0;
    margin: 0;
    padding: 0;
  }
  .grid-item {
    background-color: var(--main);
    border-radius: 15px;
    font-size: 30px;
    height: 200px;
    margin: 5px;
    text-align: center;
    background-image: linear-gradient(90deg, var(--littxt) 0px, rgba(187, 187, 187, 0.8) 40px, var(--littxt) 80px);
    background-size: 600px;
    animation: shine-avatar 2s infinite ease-out; 
  }

  @keyframes shine-avatar {
    0% {
      background-position: -32px; }
    40%, 100% {
      background-position: 208px; } }



      .loading-text {
        text-align: center;
        color: #737373;
      }