/* Default light mode styles */
body {
    background-color: #ffffff;
    color: #000000;
    padding-top: 20px;
}

.navbar-light {
    background-color: #f8f9fa;
}

.navbar-light .navbar-brand,
.navbar-light .navbar-nav .nav-link {
    color: #000000;
    transition: color 0.3s ease, transform 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover{
    color: #007bff;
    transform: scale(1.1);
}
#active{
    color: #007bff;
}

.card {
    background-color: #ffffff;
    color: #000000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    color: #ffffff;
}

.film-container, .text-box1, 
.album-description, .track-container, .music-links {
    background: rgba(236, 236, 236, 0.85);
    color: #303030;
}


/* Dark mode styles */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #121212;
        color: #ffffff;
    }

    .navbar-light {
        background-color: #333333;
    }

    .navbar-light .navbar-brand,
    .navbar-light .navbar-nav .nav-link {
        color: #ffffff;
    }

    .navbar-light .navbar-nav .nav-link:hover {
        color: #007bff;
        transform: scale(1.1);
    }
    #active{
        color: #007bff;
    }

    .card {
        background-color: #1e1e1e;
        color: #ffffff;
    }

    .card:hover {
        box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
    }

    .btn-primary {
        background-color: #007bff;
        border-color: #007bff;
        color: #ffffff;
    }

    .film-container, .text-box1, 
    .album-description, .track-container, .music-links {
        background: rgba(29, 29, 29, 0.85);
        color: #ffffff;
    }


}

.embed-container {
    margin-bottom: 10px;
    margin-top: 10px;
}

.navbar-brand {
    font-family: Arial, Helvetica, sans-serif;
}

.title {
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}

.film {
    padding-top: 10px;
    padding-bottom: 10px;

}

.cause-title {
    text-align: center;
    font-size: x-large;
    font-family: Arial, Helvetica, sans-serif;
}
.cause-description {
    text-align: center;
    font-size: medium;
    padding-bottom: 10px;
    padding-top: 10px;
}
.text-box1 {
    border-radius: 25px;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    max-width: 900px;
    height: auto;
    margin: auto;
    margin-bottom: 20px;
    padding-top: 25px;
    padding-bottom: 10px;
}

.album-description {
    border-radius: 25px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    width: 100%;
    height: auto;
    margin: auto;
    margin-bottom: 20px;
}

.custom-modal {
    max-width: 80%; /* Adjust the percentage as needed */
    margin: auto;
}

@media (min-width: 768px) {
    .custom-modal {
        max-width: 70%; /* Adjust the percentage as needed */
    }
}

@media (min-width: 992px) {
    .custom-modal {
        max-width: 60%; /* Adjust the percentage as needed */
    }
}

@media (min-width: 1200px) {
    .custom-modal {
        max-width: 50%; /* Adjust the percentage as needed */
    }
}

.modal-dialog {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000;
    text-align: center;
}

.modal-header {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000;
    text-align: center;
}


.video-container {
    text-align: center;
    margin: 20px 0;
    padding-top: 30px;
}

.video-container video {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.film-container {
    border-radius: 25px;
    margin-left: 10 px;
    margin-right: 10px;
}

.music-links {
    border-radius: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    padding-bottom: 20px;
    padding-top: 20px;
    padding-left: 7px;
    padding-right: 7px;
    margin-left: 5px;
    margin-right: 5px;
}

.music-links a {
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
}
.music-links a:hover {
    transform: scale(1.1);
}

.music-links img {
    width: 55px; /* Adjust size as needed */
    height: auto;
}

.tidal-logo {
    padding-top: 10px;
}
.spotify-logo {
    content: url(../images/icons/spotify-icon.svg);
}
.apple-music-logo {
    content: url(../images/icons/apple-music-icon.svg);
}
.youtube-music-logo {
    content: url(https://upload.wikimedia.org/wikipedia/commons/6/6a/Youtube_Music_icon.svg);
}
.amazon-music-logo {
    content: url(../images/icons/amazon-music-icon.svg);
}

.tracks {
    line-height: 1em; 
}

.track-container {
    padding-top: 20px;
    border-radius: 25px;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
    height: auto;
}

.img-fluid {
    border-radius: 25px; 
}



.small_album_nav {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
    padding-bottom: 20px;
    padding-top: 10px;
    margin-left: 5px;
    margin-right: 5px;
}

.small_album_nav a {
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
}
.small_album_nav a:hover {
    transform: scale(1.1);
}

.small_album_nav img {
    width: 60px; /* Adjust size as needed */
    height: auto;
    border-radius: 10px;
}


