body{
    background-color: #091619;
    color: #ffffff;
    padding: 0;
    margin: 0;
    font-family: 'Garamond', sans-serif;
    padding-top: 60px;
}
a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
footer {
    text-align: center;
    padding: 20px;
    background-color: #091619;
    color: #ffffff;
    font-size: 0.9em;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #091619;
    color: #ffffff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000; 
}
header img {
    width: 40px;
    height: 40px;
    cursor: pointer;
}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
/* Opening Cover */
#indexCover {
  position: relative;
  text-align: center;
  padding-bottom: 30px;
  width: 100%;
  color: white;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
}
    #indexCover img {
        width: 80%;
        height: auto;
        position: relative;
        display: block;
        margin: 0 auto;
        
    }

#indexCoverText {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  pointer-events: none;
}
    #indexCoverText h1 {
        font-size: 4em;
    }
/* Opening Cover END */


/* Default Album Container */
.AlbumContainer {
    position: relative;
    background-color: #091619;
    padding: 20px;
    margin: 20px auto;
    border-radius: 10px;
    width: 80%;
    
   
    display: flex;
    align-items: center; 
    gap: 20px;          
    text-align: left;  

    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    cursor: pointer; 
}    
.AlbumContainer:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}
    .AlbumContainer img {
        width: 6em;
        height: 6em;
        object-fit: cover;  
        flex-shrink: 0;     
}
    .AlbumContainer::before {
        content: "";
        background: linear-gradient(to right, var(--gradient-colors,));
        border-radius: 10px;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
        margin: -3px;
}

.nav-menu ul {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 10px 15px; 
    list-style: none;
    padding: 0;
    margin: 0;
}


.nav-menu {
    position: fixed;
    top: 60px;
    left: -100%;
    width: auto; 
    height: auto;
    background-color: #091619;
    border-right: 1px solid #f68c27;
    border-bottom: 1px solid #f68c27;
    border-radius: 0 0 10px 10px;
    transition: left 0.3s ease-in-out;
    z-index: 999;
    padding: 20px;
    box-sizing: border-box;
}
.nav-menu.active {
    left: -6px;
}

.nav-menu ul li {
    padding:0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


    #KIDS {
        --gradient-colors: #eab308, #3b82f6, #ef4444;
    }

    #BestDayEver {
        --gradient-colors: #ff1838, #9e2eae;
    }

    #BlueSlidePark {
        --gradient-colors: #1e3a8a, #0284c7, #14b8a6;
    }

    #Macadelic {
        --gradient-colors: #505050,#b34846, #fafafa  ;
    }
    #You{
        --gradient-colors: #d3461b,#636057, #c32b02  ;
    }

    #WMWTSO {
        --gradient-colors: #c82127, #c2825c, #944522;
    }

    #Faces {
        --gradient-colors: #ffc315, #dc2626, #3e8cee;
    }

    #GOODAM {
        --gradient-colors: #94a3b8, #f8fafc,  #9e9e9e;
    }

    #TheDivineFeminine {
        --gradient-colors: #b29182, #d7beba, #d7d7d7;
    }

    #Swimming {
        --gradient-colors: #dea6a9, #a3c8e2, #f8fafc;
    }

    #Circles {
        --gradient-colors: #ffffff, #a0a0a0, #c1c1c1;
    }

    #Balloonerism {
        --gradient-colors: #2f5da8,#daedf3, #e7a38b ;
    }

.albumCover {
  position: relative;
  text-align: center;
  padding-bottom: 30px;
  width: 100%;
  color: white;
}
    .albumCover img {
        width: 60%;
        height: auto;
        position: relative;
        display: block;
        margin: 0 auto;
        border-radius: 20px;
        padding: 10px;
    }

.btn {
    display: block;
    width: 80%;               
    max-width: 600px;
    margin: 10px auto 0 auto;  
    font-size: 1.2em;
    padding: 10px 20px;
    background-color: #091619;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;   
    transition: width 0.4s ease, border-radius 0.4s ease;
}

.btn.active {
    width: 80%;
    max-width: 600px;
    border-radius: 8px 8px 0 0;
    border-bottom: 1px solid transparent; 
}
#NextBtn{
    max-width: 300px;
    transition: transform 0.4s ease-in-out, background-color 0.4s ease-in-out;
}

#NextBtn:hover{
    background-color: #e08800;
    transform: scale(1.05); 
}
.btn a {
  text-decoration: none;
  color: inherit; 
}


.tracklist {
    display: none;
    width: 80%;                
    max-width: 600px;
    margin: 0 auto 20px auto;  
    padding: 20px 0;
    text-align: center;
    border-left: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
    border-top: none;          
    border-radius: 0 0 8px 8px;
    box-sizing: border-box;   
}
.tracklist li {
    list-style-type: none;
    padding-bottom: 5px;
    padding-right: 10px;
    margin: 0;
}

.InfoContainer {
    display: flex;
    flex-direction: column;
    border: 1px solid #ffffff;
    border-radius: 20px;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 20px;
    overflow: hidden; 
}
#BasicInfo {
    text-align: center;
    border: none;
    padding: 20px;
}
#ExtraInfo{
    border: 1px solid #f68c27;
    border-radius: 20px;
    padding: 10px;
}

.row {
    display: flex;
    flex-direction: row;
    align-items: stretch; 
}

.col { 
    display: flex;
    flex-direction: column;
    flex: 1;
}

.Txtcol {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

#left {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    margin: 0;
    padding: 0;
    display: block;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
}

#right {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    margin: 0;
    padding: 0;
    display: block;
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to top, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
}


.row {
    display: flex;
    flex-direction: column; 
    width: 100%;
}

p a{
    color: #f68c27;
    text-decoration: underline;
}

        /* Desktop Styles (768px screens and above) */
        @media (min-width: 768px) {
            .InfoContainer {
                max-width: 900px;
                margin: 0 auto 30px auto; 
            }

            .row {
                flex-direction: row;
                align-items: stretch;
            }

            .col, .Txtcol {
                flex: 1;
            }

           
            .tracklist {
                max-width: 500px;
                margin: 20px auto;
            }
            .albumCover img {
            width: 40%;          
            max-width: 320px;   
            height: auto;
            position: relative;
            display: block;
            margin: 0 auto;
            border-radius: 20px;
            padding: 10px;
            }
            .btn {
            display: block;
            width: 60%;
            max-width: 600px;        
            margin: 10px auto 0 auto; 
            font-size: 1.2em;
            padding: 10px 20px;
            background-color: #091619;
            color: #ffffff;
            border: 1px solid #ffffff;
            border-radius: 8px;
            cursor: pointer;
            white-space: nowrap;
            overflow: hidden;
            transition: width 0.4s ease, border-radius 0.4s ease;
        }

        .btn.active {
            width: 60%;
            max-width: 600px;
            border-radius: 8px 8px 0 0; 
            border-bottom: 1px solid transparent; 
        }

        .tracklist {
            display: none;
            width: 60%;
            max-width: 600px;        
            margin: 0 auto 20px auto; 
            padding: 20px 0;
            text-align: center;
            border-left: 1px solid #ffffff;
            border-right: 1px solid #ffffff;
            border-bottom: 1px solid #ffffff;
            border-top: none;          
            border-radius: 0 0 8px 8px;
            box-sizing: border-box;    
        }
        #left {
            width: 100%; 
            height: 100%;
            object-fit: cover;
            margin: 0;
            padding: 0;
            display: block;
            -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
            mask-image: linear-gradient(to right, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
        }

        #right {
            width: 100%; 
            height: 100%; 
            object-fit: cover; 
            margin: 0;
            padding: 0;
            display: block;
            -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
            mask-image: linear-gradient(to left, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
        }
        }