
html,
body {
    color: rgb(206, 206, 206);  
    width: 100%;
}

.nav-transparent-bk {
    background-color: transparent;
    color: rgb(206, 206, 206);
}

.form-label {
    font-weight: bold;
}

.font-size-1 {
  font-size: 1rem;
}

.font-size-2 {
    font-size: 1.2rem;
}

.font-size-3 {
    font-size: 1.5rem;
}

.font-size-4 {
    font-size: 2rem;
}

.font-size-5 {
    font-size: 3rem;
}

.calender-item {
    width: 10em;
    font-size: small;
    font-family: Verdana, Geneva, Tahoma, sans-serif;

    margin: 0 auto;
        /* Added */
        float: none;
        /* Added */
}

.calender-item img {
    width: 10em;
}

.captcha-container {
    width: 120px;
    /* Keep the original width */
    height: 40px;
    /* Keep the original height */
    overflow: hidden;
    /* Hide overflow to prevent stretching */
    display: inline-block;
    margin-top: 7px;
    margin-right: 12px;
}

.captcha-image {
    transform: scale(2);
    /* Zoom in */
    transform-origin: center;
    /* Keep it centered */
    image-rendering: pixelated;
    /* Maintain sharpness */
}

.form-group-override {
    margin-top: 6px;
}

.bg-video-container {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1000;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-image: url('/images/alpin-band-logo.png');
    background-repeat: no-repeat;
    background-color: black;
}

/* background video should be at start from y:0 position */
.video-background {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1000;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-image: url('/images/alpin-band-logo.png');
    background-repeat: no-repeat;
    background-color: black;
}

/* background video should should fill the backgraound when in mobile view */
@media (max-width: 767px) {
    .video-background {
        position: fixed;
        right: 0;
        bottom: 0;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        z-index: -1000;
        overflow: hidden;
        background-size: cover;
        background-position: center;
        background-image: url('/images/alpin-band-logo.png');
        background-repeat: no-repeat;
        background-color: black;
    }
}

.custom-body-background {
    background-color: rgb(33, 33, 33);
    color: rgb(206, 206, 206);
    background-image: url('/images/alpin-band-logo.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: calc(-50%);
    background-blend-mode: soft-light;
    width: 100%;
}

.anton-regular {
    font-family: "Anton", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 3rem;
}

.roboto-h1 {
    font-family: "Roboto", serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-size: 2rem;
}

.roboto-body {
    font-family: "Roboto", serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-size: 1.4rem;
}

#index-pg-carousel {
    margin-top: 150px;
    min-height: 400px;
}

.tag-line {
    font-size: 1rem;
}

@media (max-width: 767px) {
    .anton-regular {
        font-family: "Anton", serif;
        font-weight: 400;
        font-style: normal;
        font-size: 2rem;
    }

    .roboto-h1 {
        font-family: "Roboto", serif;
        font-optical-sizing: auto;
        font-weight: normal;
        font-style: normal;
        font-size: 1.2rem;
    }

    #index-pg-carousel {
        margin-top: 50px;
        padding-left: 25px;
        padding-right: 25px;
        min-height: 400px;
    }

    .tag-line {
      /* hide and remove occupied space */
        display: none;
    }
}


#profile-pg-carousel {
    margin-top: 150px;
}


.footer a {
    color: white;
    text-decoration: none;
}

.footer img {
    width: 25px;
    height: 25px;
    margin: 5px;
    text-decoration: none;
}

.emoji {
    font-size: 25px;
    margin: 5px;
    text-decoration: none;
}

.test-justify{
    text-align:left;
    text-justify:newspaper;
}

.nav-item a#nav-link {
    color: white;
    text-decoration: none;
}

.nav-item a#nav-link:hover {
    color: white;
    text-decoration: none;
    font-size: 1rem;
}

.content-section {
    background-color: rgba(55, 56, 56, 0.59);
    padding-bottom: 50px; 
    padding-top: 25px;
    padding-left: 140px;
    padding-right: 140px;
}

@media (max-width: 767px) {
    .content-section {
        padding-left: 10px;
        padding-right: 10px;
    }
}

.gallery-container {
    overflow-y: scroll;
    overflow-x: hidden;
    height: 600px;
    scrollbar-color: gray transparent;
    scrollbar-width: 20px;
    padding-right: 10px;
    
    width: 98%;
}

.gallery-container .gallery-item {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    overflow: hidden;
    background-color: transparent;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 0px solid transparent;
    /* add drop shadow to the image */
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    position: relative;
    cursor: pointer;
}

.gallery-container .gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    border: 0px solid transparent;
    /* add drop shadow to the image */
    filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.724));
}

.gallery-container .gallery-item img {
    width: 100%;
    height: 100%;
}

.img-download-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: transparent;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 24px;
}