 body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            /* background: url('../img/background3.jpg') repeat-y fixed bottom center; */
            /* background-position: 10%; */
            background:#111;

        }
        
        header {
            background: #000;
            background-size: 5%;
            background-position: 80% 10%;
            border-bottom: none;
            position: relative;
            width: 100%;
            z-index: 100;
            padding: 25px;
            color:#fff;
        }

        a.mn, a.mn:visited{color:#fff; text-decoration: none;padding:5px 10px;float:left;}
        a.mn:hover{color:#d8c2a0; text-decoration: none;}

        a.shop, a.shop:visited{color:#ffee00; text-decoration: none;padding:5px 10px;float:left;}
        a.shop:hover{color:#d8c2a0; text-decoration: none;}

        

        .logo-container {
            position: absolute;
            top: 10px;
            left: 60px;
            z-index: 110; /* Higher than gallery */
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
        }
        .logo {
            /* display: none; */
            height: 80px;
        }
        

        .video-container {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio (divide 9 by 16 = 0.5625) */
            height: 0;
            overflow: hidden;
            max-width: 100%;
            background: #000;
        }
        
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }
        
        .description{
            border-top:1px dashed #999;
            border-bottom:1px dashed #999;
            padding:20px;
            font-style: italic;
            font-size:18px;
        }

        .borders{
            border-top:1px dashed #999;
            border-bottom:1px dashed #999;
            padding-top:10px;
            padding-bottom:10px;
        }

        .glass{
            /* bacckground: rgba(255, 255, 255, 0.7); */
            background: #424141;
            color:#fff;
            backdrop-filter: blur(10px);
            border-radius: 10px;
            padding: 20px 0px 20px 20px;
            margin: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
        }

        .header-text {
            font-size: 22px;
            position: absolute;
            right: 50px;
            top: 5px;
           
        }
        .gallery {
            padding: 20px;
        }
        .carousel-item img {
            width: 100%;
            height: 100vh;
            object-fit: cover;
        }
        .thumbnails {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
        }
        .thumbnail {
            width: 100px;
            height: 100px;
            margin: 5px;
            cursor: pointer;
            object-fit: cover;
        }
        .blocktitle {
            font-size: 24px;
            margin:10px 0  40px 0;
        }
        .oswald{
            font-family: "Oswald", sans-serif;
            font-optical-sizing: auto;
            font-style: normal;
        }
        .mainarea {
            /* border-top: 1px solid #ccc; */
            padding-bottom: 40px;
            margin-top:20px;
        }
        .bio{
            background:#333;
            color:#fff;
            /* min-height: 100%; */
            padding: 20px;
            margin: 20px;
            border-radius: 10px;
        }
        .bio_mobile{
            background:#333;
            color:#fff;
            /* min-height: 100%; */
            padding: 10px;
            margin: 10px;
            border-radius: 10px;
        }

        .members{
            border-top:2px solid #fff;
            border-left:2px solid #fff;
            border-right:2px solid #fff;
            padding:0;
            margin:0;
        }
        .tag{
            border-bottom:2px solid #fff;
            border-left:2px solid #fff;
            border-right:2px solid #fff;
            background:#000;
            color:#fff;
            width:100%;
            text-align: center;
            margin-bottom:20px;
        }


        .albumcover{
            width:180px;
        }

        .contactarea {
            /* border-top: 1px solid #ccc; */
            padding-bottom: 40px;
            margin-top:20px;
        }

        .card-body{
            background:#333;
        }
        .card{
            border:none;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
            border-radius: 0px;
        }

        .lead{
            font-size: 18px;
            font-family: "Oswald", sans-serif;
        }

        .upcoming{
            background:#333;
            color:#fff;
            padding: 20px;
            border-radius: 10px;
        }

        @media (max-width: 768px) {
            .logo-container {
                left: 5px; /* Adjust the value as needed */
                top: 7px; /* Adjust the value as needed */
            }
            .logo {
                height: 35px; /* Smaller logo for mobile */
            }
            .header-text {
                font-size: 16px; /* Smaller text for mobile */
                top: 13px;
                right: 20px;
            }
            .glass{
                background: rgba(255, 255, 255, 1);
                backdrop-filter: none;
                border-radius: 10px;
                padding: 0;
                margin: 20px 0;
                box-shadow: none;
            }
        } 