/* General styles */
.nav-link.active {
    font-weight: bold;
    color: #E18803 !important;
}

.nav-pills .nav-link {
    color: black;
}

.nav-pills .nav-link.active .icon-container, .nav-pills .nav-link.active .icon-container p {
    color: #E18803;
}

.nav-pills .nav-link.active {
    background-color: transparent;
}

/* Hero section */
.hero-section {
    background: url('hero-image.jpg') no-repeat center center;
    background-size: cover;
}

.hero-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-section p.lead {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

/* Stats section */
.stats-section {
    padding: 5rem 0;
}

.stats-section img {
    max-width: 100%;
    border-radius: 10px;
}

.stats-section h3 {
    font-size: 2rem;
    font-weight: bold;
}

.stats-section p {
    margin-bottom: 1.5rem;
    color: #6c757d;
}

.stats-section .text-warning {
    color: #E18803 !important;
}

.stats-section .col-6 {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.stats-section h4 {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Blog card */
.blog-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.blog-card img {
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.blog-card .card-body {
    padding: 1rem;
}

.blog-card .card-title {
    font-size: 1.25rem;
    font-weight: bold;
}

.blog-card .card-text {
    font-size: 0.875rem;
    color: #6c757d;
}

.blog-card .text-muted {
    font-size: 0.75rem;
}

.blog-card .text-warning {
    color: #E18803 !important;
}

.blog-card .d-flex {
    display: flex;
    align-items: center;
}

.blog-card img.rounded-circle {
    border-radius: 50%;
}

.blog-card .author-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

/* Content card */
.content-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    text-align: left;
}

.content-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.content-card .card-body {
    padding: 1rem;
}

.content-card .card-title {
    font-size: 1.25rem;
    font-weight: bold;
}

.content-card .card-text {
    font-size: 0.875rem;
    color: #6c757d;
}

.content-card .text-muted {
    font-size: 0.75rem;
}

.content-card .author-info {
    display: flex;
    align-items: center;
    margin-top: 1rem;
}

.content-card .author-info img {
    border-radius: 50%;
    margin-right: 0.5rem;
    width: 30px;
    height: 30px;
}

.content-card .author-info .author-name {
    margin-right: 0.5rem;
}

/* Discord section */
.discord-section {
    background: #E18803;
    color: white;
    padding: 2rem;
    border-radius: 0.5rem;
}

.discord-section a.btn {
    margin: 0.5rem;
}

/* Icon container */
.icon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: black;
}

.icon-container p {
    margin: 0;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    color: black;
}

/* Buttons */
.btn-primary {
    background-color: #E18803;
    border-color: #E18803;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #d17703;
    border-color: #d17703;
}

.btn-warning {
    background-color: #E18803;
    border: none;
}

.btn-warning:hover {
    background-color: #cf7b03;
}
.nav-pills .nav-link.selected {
    background-color: #f5f5f5; /* Almost white */
    border-radius: 10px;
    padding: 5px;
}
footer nav a:hover {
    text-decoration: underline;
}
.embed-responsive {
    margin-bottom: 20px;
}

#playlistsContainer .col-md-6 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

@media (max-width: 768px) {
    #playlistsContainer .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 576px) {
    #playlistsContainer .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
