/* Reset default margins for Bootstrap */
body, h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    font-family: 'Jura', sans-serif;
}

/* styles.css */
body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 0; 
    background-color: rgb(255, 255, 255)!important; /* Dark grey background color */
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 60px); /* account for navbar height */
    margin-top: 60px; /* create space below navbar */
}


/* Minimal Navbar Styling */
.minimal-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    height: 50px;
    padding: 16px 30px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-family: 'Jura', sans-serif;
}

.minimal-navbar .brand a {
    font-weight: 500;
    font-size: 1.6rem;
    color: black;
    letter-spacing: 0.06rem;
    text-decoration: none;
}


.minimal-navbar .nav-links a {
    margin-left: 30px;
    color: black;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
}



.page-title {
    text-align: center; /* Center the title */
    margin-top: 100px; /* Add some spacing above the title */
    margin-bottom: 100px;
    /* margin-bottom: 100px; Add some spacing above the title */
    font-size: 2em; /* Adjust font size as needed */
    color: #db14ad;
}

/* Add this CSS to your existing styles.css or in a new file */
.activated {
    display: none; /* Hide the "Activate Sound" button when activated */
}
.activate-button {
    color: white;
    margin-top: 50px; /* Add some spacing above the title */

}

.slider-button {
    position: relative;
    background-color: transparent;
    border: 1px solid #ff6b9d; /* Darker grey border color */
    border-radius: 45px; /* Add border radius */
    width: 100px; /* Width of each slider segment */
    margin: 0 5px; /* Space between slider segments */
    margin-bottom: 100px;
    padding: 5px;
    cursor: pointer;
    text-align: center; /* Center text horizontally */
    color: #000000; /* White text color */
    transition: background-color 0.3s ease;
    overflow: hidden;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Jura', sans-serif;
}

.leftone {
    height: 100px; /* Height of the tall slider button */
}

.lefttwo {
    height: 150px; /* Height of the tall slider button */
}

.leftthree {
    height: 200px; /* Height of the tall slider button */
}

.sounds {
    height: 250px; /* Height of the tall slider button */
}

.visuals {
    height: 300px; /* Height of the medium slider button */
}

.portfolio {
    height: 250px; /* Height of the short slider button */
}

.bio {
    height: 200px; /* Height of the short slider button */
}

.rightone {
    height: 150px; /* Height of the tall slider button */
}

.righttwo {
    height: 100px; /* Height of the tall slider button */
}

.empty {
    color: transparent;
}

.on-button {
    margin-top: 30px;
    margin-bottom: -10px;
    font-size: 0.7rem;
    color: #000000;
}
.explainer {
    color: #db14ad;
}

.fas {
    margin-bottom: 0px;
    font-size: 20px;
}

.button-link {
    color: inherit;
    text-decoration: none !important;
}

.button-link:focus {
    outline: none !important;
}


.fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    /* background: linear-gradient(to bottom, #db14ad, #901ab4);  */
    background: linear-gradient(to bottom, #ff6b9d, #f6246a); 
    transition: height 7s ease;
    z-index: -1;
}


.slider-button:hover .fill {
    height: 100%; /* Increase height to 100% on hover */
}

footer {
    width: 100%;
    background-color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
    color: #333;
}

.social-icon {
    font-size: 24px;
    color: #000000;
    margin: 0 10px;
    text-decoration: none;
}

.social-icon:hover {
    color:#ff6b9d
}


@media (max-width: 1080px) {
    .slider-button,
    .leftone, .lefttwo, .leftthree, .sounds, .visuals, .portfolio, .bio,
    .rightone, .righttwo {
        margin-bottom: 20px;
        height: 50px;
        width: 100%;
    }
    .leftone, .lefttwo, .righttwo {
        display: none;
    }
    .container {
        justify-content: center;
        margin-top: 80px;
        min-height: calc(100vh - 80px);
    }
    .on-button {
        display: none;
    }
    .explainer {
        display: none;
    }
    .fas {
        display: none !important;
    }

    .page-title {
        margin-top: 10px;
        margin-bottom: 60px;
    }
    .footer {
        margin-top: 50px;
    }

    .social-icon {
        color: #ff6b9d;
    }
 

}