html {
  scrollbar-color: #82bee6 rgba(255, 255, 255, 0.3);
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: linear-gradient(to bottom, #ffffff, #d2ebfa);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #a0dcff, #288cc8);
  border-radius: 10px;
  border: 2px solid #ffffff;
  box-shadow: inset 0 1px 0 #ffffff;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #b4ebff, #3ca0dc);
}


body {
    background-image: url("images/background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    background-attachment: fixed;
    margin: 0;
    font-family: "Segoe UI", 'Century Gothic', sans-serif;
}

button {
    font-family: "Segoe UI", 'Century Gothic', sans-serif;
}

.tab-structure {
    margin-left: 20%;
    margin-top: 8vh;
}

.base-tab {
    width: clamp(350px, 60vw, 1200px);
    height: 700px;

     background: linear-gradient(
        to top,
        rgba(255, 255, 255, 0.85) 0%,
        rgba(210, 235, 250, 0.85) 45%,
        rgba(130, 190, 230, 0.9) 100%
    );

    border-radius: 0 8px 8px 8px;
    box-shadow:
        inset 0 1px 2px rgba(255, 255, 255, 0.9),
        0 8px 25px rgba(0, 60, 100, 0.3);


    backdrop-filter: blur(5px);
}

.tab-content {
    margin: 0px;
    padding: 20px;
    gap: 20px;
    display: flex;
    flex-direction: row;
}

.tab-content h1, .tab-content p {
    margin-top: 0;
}

.tabs {
    display: flex;
    gap: 5px;
    align-items: flex-end;
}


.tab {
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.85) 0%,
        rgba(210, 235, 250, 0.85) 45%,
        rgba(130, 190, 230, 0.9) 100%
    );
    box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -3px 6px rgba(60, 130, 180, 0.25),
    0 2px 5px rgba(0, 60, 100, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-bottom: none;
    padding: 12px 30px;
    border-radius: 12px 12px 0 0;
    color: #17466b;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
    
    transform: translateY(10px);
    transition: transform 0.2s ease;
        font-weight: 300;
    font-family: "Segoe UI", 'Century Gothic', sans-serif;
}

.tab:hover {
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.95),
        rgba(220, 242, 255, 0.95) 45%,
        rgba(150, 205, 240, 0.95)
    );

    box-shadow:
        inset 0 1px 0 white,
        inset 0 -3px 8px rgba(50, 130, 190, 0.25),
        0 3px 8px rgba(0, 70, 120, 0.35);

    transform: translateY(0px);
}

.tab.active {
    transform: translateY(0px);

}

/*Seperate tabs*/
#home {
    padding: 30px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.home-left-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: clamp(150px, 19vw, 400px);
    height: 640px;
}

.home-right-structure {
width: clamp(300px, 40vw, 800px);
   gap: 30px;
   display: flex;
   flex-direction: column;
}

.home-header-content {
    margin: 0;
    padding: 0;
    width: 100%;
    height:100px;
    gap: 10px;
   display: flex;
   flex-direction: column;
}

.home-header-content h3 {
        text-align: center;
        font-size: clamp(0.95rem, 1.6vw, 1.8rem);

        font-weight: 300;
        line-height: 1.2;
        text-align: center;

        color: #2b8db8;
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9);
}

.home-right-content {
    width: 100%;
    height: 510px;
    display: flex;
    align-items: center;
    column-count: 2;
    column-gap: 10px;
    margin: 0px;
}

.home-left-container {
    position: relative;
    padding-top: 2vh;
}

.home-left-container h2 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);

    margin: 10px 0 0;
    padding: 0;

    font-size: clamp(1.4rem, 2vw, 2rem);
    font-weight: 300;
    line-height: 1.2;
    text-align: center;

    color: #2b8db8;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9);
}


#home-content {
    background:rgba(185, 219, 241, 0.615);

    border-radius: 8px;
    box-shadow:
        inset 0 1px 2px rgba(255, 255, 255, 0.9),
        0 8px 25px rgba(0, 60, 100, 0.3);


    backdrop-filter: blur(5px);
}

/*home avatar*/

.avatar {
    position: relative;
    width: 11vw;
    height: 11vw;
    background: linear-gradient(
    135deg,
    rgba(245, 255, 255, 0.82) 0%,
    rgba(190, 235, 245, 0.72) 30%,
    rgba(80, 190, 215, 0.68) 65%,
    rgba(30, 125, 175, 0.72) 100%
);

border: 1px solid rgba(225, 255, 255, 0.95);
border-radius: 8px;

box-shadow:
    inset 0 2px 3px rgba(255, 255, 255, 0.95),
    inset 0 -3px 7px rgba(0, 90, 145, 0.35),
    0 3px 12px rgba(0, 70, 110, 0.35);

backdrop-filter: blur(5px);


}   

.avatar-picture,
.avatar-frame {
    position: absolute;
    width: 92%;
    height: 92%;
    margin: 0.5vw;
}

.avatar-picture {
    object-fit: cover;
    border-radius: 5%;
}

.avatar-frame {
    pointer-events: none;
}

/*Home squares*/
.home-squares {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-direction: column;
    padding-top: 15vh;
}

.home-square {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 11vw;
    height: 2vw;

    padding: 0;

    font-size: clamp(0.6rem, 0.95vw, 1.15rem);
    font-weight: 400;
    line-height: 1;
    text-align: center;

    font-family: "Segoe UI", "Century Gothic", sans-serif;

    color: #2b8db8;
    text-shadow:
        0 1px 2px rgba(255, 255, 255, 0.95),
        0 1px 4px rgba(120, 200, 230, 0.25);

    cursor: pointer;

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.32) 0%,
            rgba(210, 245, 255, 0.12) 45%,
            rgba(100, 190, 220, 0.08) 100%
        );

    border: 1px solid rgba(235, 255, 255, 0.75);
    border-radius: 7px;

    box-shadow:
        inset 0 1px 2px rgba(255, 255, 255, 0.9),
        inset 0 -1px 3px rgba(40, 130, 170, 0.18),
        0 2px 8px rgba(0, 80, 130, 0.18);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        color 0.2s ease;
}

.home-square:hover {
    color: #176f96;

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.55) 0%,
            rgba(190, 240, 255, 0.25) 45%,
            rgba(80, 185, 220, 0.18) 100%
        );

    border-color: rgba(255, 255, 255, 0.95);

    box-shadow:
        inset 0 1px 3px rgba(255, 255, 255, 1),
        inset 0 -1px 4px rgba(40, 140, 180, 0.2),
        0 0 8px rgba(120, 220, 255, 0.35),
        0 3px 12px rgba(0, 100, 150, 0.22);
}

.vista-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -190%);

    width: clamp(240px, 30vw, 420px);
    height: auto;
    padding: 18px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;

    color: #185f7e;
    font-family: "Segoe UI", "Century Gothic", sans-serif;

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.42) 0%,
            rgba(220, 248, 255, 0.18) 45%,
            rgba(80, 180, 215, 0.12) 100%
        );

    border: 1px solid rgba(240, 255, 255, 0.85);
    border-radius: 9px;

    box-shadow:
        inset 0 1px 3px rgba(255, 255, 255, 0.95),
        inset 0 -2px 5px rgba(30, 120, 160, 0.15),
        0 5px 20px rgba(0, 70, 120, 0.3);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    z-index: 1000;
}

.vista-popup-title {
    width: 100%;

    font-size: 1.1rem;
    font-weight: 300;
    text-align: center;

    color: #176487;

    text-shadow:
        0 1px 2px rgba(255, 255, 255, 0.95);
}

.vista-popup-content {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.4;
    text-align: center;

    color: #2b7898;
}

/*Right content*/

.home-right-content p {
    padding: 5px;
    text-align: center;
    font-size: clamp(0.4rem, 0.95vw, 1.15rem);
    font-weight: 300;
    color: #176487;

    text-shadow:
        0 1px 2px rgba(255, 255, 255, 0.95);
}

.home-base-image {
    border: 1px solid rgba(240, 255, 255, 0.85);
    border-radius: 7px;
    box-shadow:
        inset 0 1px 3px rgba(255, 255, 255, 0.95),
        inset 0 -2px 5px rgba(30, 120, 160, 0.15),
        0 5px 20px rgba(0, 70, 120, 0.3);

    cursor: pointer;
}


.home-fa-1, .home-fa-3 {
    width: 12vw;
    height: auto;
    transform: rotate(-10deg);
    z-index: 10;
}

.home-fa-1:hover, .home-fa-3:hover {
    transform: rotate(10deg) scale(1.1);
}

.home-fa-2, .home-fa-4 {
    width: 6vw;
    height: auto;
    transform: rotate(10deg);
    margin-left: 60px;
    z-index: 20;
}

.home-fa-4 {
    width: 10vw;
    margin-left: 45px;
}

.home-fa-2:hover, .home-fa-4:hover {
    transform: rotate(-10deg) scale(1.1);
}

/*icons*/
.tab-icons {
    width: 1.5vw;
    height: auto;
}

/*search bar*/

  .vista-search-bar {
    display: flex;
    align-items: center;
    gap: 8px;

    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.65) 0%,
        rgba(190, 230, 245, 0.4) 40%,
        rgba(85, 165, 195, 0.55) 100%
    );

    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 4px 8px;

    box-shadow:
        0 4px 15px rgba(0, 80, 130, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);

    font-family: "Segoe UI", Tahoma, sans-serif;
    max-width: 450px;
}


  .vista-orb {
    width: 28px;
    height: 28px;
    border-radius: 50%;

    background: radial-gradient(
        circle at 35% 30%,
        #a1ecff 0%,
        #2b9fd1 60%,
        #176487 100%
    );

    border: 1px solid #ffffff;

    box-shadow:
        0 2px 6px rgba(0, 70, 110, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.8);

    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}


  .orb-icon {
    font-size: 14px;
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.8);
  }

  .vista-search-form {
    display: flex;
    gap: 6px;
    width: 100%;
  }

  .input-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
  }

  .search-icon {
    position: absolute;
    left: 8px;
    font-size: 11px;
    opacity: 0.6;
    pointer-events: none;
  }

  .vista-input {
    width: 100%;
    padding: 5px 8px 5px 24px;
    font-size: 12px;
    color: #042542;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(230, 245, 255, 0.7) 100%);
    border: 1px solid #7cb9e8;
    border-radius: 12px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15), 0 1px 0 rgba(255, 255, 255, 0.8);
    outline: none;
    font-family: inherit;
  }

  .vista-input:focus {
    border-color: #2b8ce0;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15), 0 0 6px rgba(43, 140, 224, 0.6);
  }

  .vista-go-btn {
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #d9f0fc 50%,
        #a9d5ec 51%,
        #cceafa 100%
    );
    border: 1px solid #78afd0;
    border-radius: 12px;
    padding: 4px 12px;
    color: #176487;
    font-size: 11px;
    font-weight: bold;
    cursor: pointer;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.vista-go-btn:hover {
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #e8f7fd 50%,
        #bfe2f2 51%,
        #dff2fb 100%
    );
    border-color: #4e91b8;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 0 8px rgba(100, 190, 220, 0.45);
}
/*windows player*/
.vista-audio-player {
    width: 11vw; 
    min-width: 60px; 
    box-sizing: border-box;
    
    margin-top: 15px;
    padding: 8px 10px;
    position: absolute;
    
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.45) 0%,
        rgba(210, 245, 255, 0.22) 45%,
        rgba(100, 190, 220, 0.15) 100%
    );

    border: 1px solid rgba(240, 255, 255, 0.85);
    border-radius: 7px;

    box-shadow:
        inset 0 1px 3px rgba(255, 255, 255, 0.95),
        inset 0 -2px 5px rgba(30, 120, 160, 0.15),
        0 5px 20px rgba(0, 70, 120, 0.25);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    font-family: "Segoe UI", "Century Gothic", sans-serif;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.player-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: clamp(0.55rem, 0.75vw, 0.85rem);
    color: #176487;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.95);
    font-weight: 300;
}

.progress-container {
    width: 100%;
    height: 6px;
    background: rgba(185, 219, 241, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 4px;
    cursor: pointer;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 60, 100, 0.2);
    position: relative;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(100, 200, 245, 0.9) 45%,
        rgba(30, 140, 200, 0.9) 100%
    );
    border-radius: 3px;
    box-shadow: 0 0 6px rgba(120, 220, 255, 0.6);
    transition: width 0.1s linear;
}

.player-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
}

.player-btn {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.9);
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.85) 0%,
        rgba(210, 235, 250, 0.85) 45%,
        rgba(130, 190, 230, 0.9) 100%
    );
    color: #17466b;
    font-size: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 1),
        0 2px 5px rgba(0, 60, 100, 0.25);
    transition: transform 0.2s ease, background 0.2s ease;
}

.player-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(220, 242, 255, 0.95) 45%,
        rgba(150, 205, 240, 0.95) 100%
    );
}

/* volume Control */
.volume-container {
    display: flex;
    align-items: center;
    gap: 4px;
    width: 60%;
}

.volume-icon {
    font-size: 10px;
}

.volume-container input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: rgba(185, 219, 241, 0.7);
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    outline: none;
}

.volume-container input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(180deg, #ffffff 0%, #2b8db8 100%);
    border: 1px solid #ffffff;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0, 60, 100, 0.3);
}

.scroll-button-container {
    width: clamp(180px, 15vw, 260px);
    max-height: 400px; 
    overflow-y: auto; 
    padding: 10px;
    
    display: flex;
    flex-direction: column;
    gap: 8px; 

    background: rgba(185, 219, 241, 0.4);
    border: 1px solid rgba(240, 255, 255, 0.85);
    border-radius: 9px;
    box-shadow:
        inset 0 1px 3px rgba(255, 255, 255, 0.95),
        inset 0 -2px 5px rgba(30, 120, 160, 0.15),
        0 5px 20px rgba(0, 70, 120, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-sizing: border-box;
}

.scroll-btn {
    width: 100%;
    padding: 8px 12px;
    font-size: clamp(0.6rem, 1vw, 1rem);;
    font-family: "Segoe UI", "Century Gothic", sans-serif;
    color: #2b8db8;
    text-align: center;
    cursor: pointer;

    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.55) 0%,
        rgba(210, 245, 255, 0.25) 45%,
        rgba(100, 190, 220, 0.18) 100%
    );
    border: 1px solid rgba(235, 255, 255, 0.85);
    border-radius: 7px;
    box-shadow:
        inset 0 1px 2px rgba(255, 255, 255, 0.9),
        inset 0 -1px 3px rgba(40, 130, 170, 0.18),
        0 2px 6px rgba(0, 80, 130, 0.15);
    
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.95);
    transition: all 0.2s ease;
    box-sizing: border-box;
    font-weight: 300;
}

.scroll-btn:hover {
    color: #176f96;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.75) 0%,
        rgba(190, 240, 255, 0.4) 45%,
        rgba(80, 185, 220, 0.3) 100%
    );
    border-color: rgba(255, 255, 255, 0.95);
    box-shadow:
        inset 0 1px 3px rgba(255, 255, 255, 1),
        0 0 8px rgba(120, 220, 255, 0.4);
    transform: scale(1.05);
}

.scroll-button-container h2, .blog-display-container h2, 
.blog-display-container h3, .gallery-container h2  {
    font-size: clamp(1.4rem, 2vw, 2rem);
    font-weight: 300;
    line-height: 1.2;
    text-align: center;

    color: #2b8db8;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9);
}
.scroll-button-container::-webkit-scrollbar {
    width: 6px;
}

.scroll-button-container::-webkit-scrollbar-track {
    background: rgba(185, 219, 241, 0.3);
    border-radius: 4px;
}

.scroll-button-container::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ffffff 0%, #7ec6e6 100%);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.scroll-button-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ffffff 0%, #3a9fcc 100%);
}

/*blog tab content*/
.blog-display-container {
    padding: 10px;
    width: 50vw;
    background:rgba(185, 219, 241, 0.615);

    border-radius: 8px;
    box-shadow:
        inset 0 1px 2px rgba(255, 255, 255, 0.9),
        0 8px 25px rgba(0, 60, 100, 0.3);


    backdrop-filter: blur(5px);
}

.blog-display-container h3 {
    font-size: clamp(0.9rem, 1.5vw, 1.4rem);

}
.blog-display-container p, .gallery-container p {
    font-size: clamp(0.6rem, 1vw, 1rem);
    line-height: 1.2;

    font-weight: 300;
    color: #176487;

    text-shadow:
        0 1px 2px rgba(255, 255, 255, 0.95);
}

.gallery-container h2 {
    text-align: left;
}