/*
Theme Name:  ShadrickMasy Themes
Theme URI:   https://www.freshzambianmusicpromos.live/contact-us
Description: A custom WordPress theme for Any Music Video Website, optimized for SEO and speed, with custom post types for music, videos, and albums.
Version:     1.0.0
Author:      Shadrickmasy 
Author URI:  https://www.freshzambianmusicpromos.live/contact-us 
Text Domain: FreshZambianMusicPromos 
License:     GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags:        custom-post-types, SEO, responsive, music, video
Tested up to:6.6.1
Requires PHP:8.1
Update Date: 2024-08-27
*/

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif; 
    background-color: #ffffff;
    color: #333333;
}

.tagtat {
    font-size: 14px !important;
}

header {
    background-color: #ffffff;
    padding: 10px;
}

a {
    color: #00A651; /* Primary Green */
    text-decoration: none;
}

#morebutton {
    text-align: right !important;
}

a:hover,
a:focus {
    color: #00803e; /* Darker Green Hover */
    text-decoration: none;
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo {
    width: 100px;
    max-width: 100%;
    height: 50px;
    margin-left: 10px;
}

.logo-section h1 {
    font-size: 24px;
    color: #00A651;
    font-weight: bold;
    font-family: Arial, sans-serif;
    text-align: center;
}

.menu-toggle {
    position: absolute;
    right: 20px;
    display: block;
    background: none;
    border: none;
    color: inherit;
}

.menu-toggle i {
    font-size: 28px;
    color: #00A651;
}

/* Mobile Navigation Styles */
.nav-icons {
    display: flex;
    justify-content: space-around;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-icons li {
    text-align: center;
}

.nav-icons a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #333333;
    text-decoration: none;
    padding: 10px;
}

.nav-icons i {
    font-size: 24px;
    margin-bottom: 5px;
}

.nav-icons span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-icons a:hover {
    color: #00A651;
}

.nav-icons a:hover i {
    color: #00A651;
}

/* Desktop Navigation Styles */
.nav-desktop {
    background-color: #ffffff;
    padding: 10px;
    border-radius: 10px;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
}

.nav-menu li {
    margin: 0 15px;
}

.nav-menu li a {
    text-decoration: none;
    color: #333333;
    font-size: 16px;
}

.wp-caption-text {
    display: none;
}

.size-medium {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.aligncenter {
    clear: both;
    margin: 20px 10px 10px 40px;
}

.schema {
    display: none;
}

/* Media Query for Laptop Design */
@media (min-width: 768px) {
    .nav-mobile {
        display: none;
    }
    audio {
        width: 50% !important;
    }
    .breadcrumb {
        font-size: 16px !important;
    }
    .container {
        margin: 0 100px 50px 100px !important;
    }
    .image-caption {
        left: 40% !important;
    }
    .social-container {
        width: 100% !important;
    }
    .social-icon {
        font-size: 24px !important;
    }
    .post-image-content {
        height: auto;
        width: 100%;
        border-radius: 10px;
    }
    .menu-toggle {
        margin-right: 60px;
        margin-top: 20px;
        cursor: pointer;
    }
    .header-container {
        justify-content: center;
    }
    .post-title h2 {
        font-size: 16px !important;
    }
    .post-title h1 {
        font-size: 26px !important;
    }
    .author-text {
        font-size: 15px !important;
    }
    .author-name {
        font-size: 15px !important;
    }
    .post-date {
        font-size: 15px !important;
    }
    .nav-desktop {
        display: block;
    }
}

@media (max-width: 767px) {
    .nav-desktop {
        display: none;
    }
    .nav-mobile {
        display: block;
    }
    .menu-toggle {
        display: block;
    }
    .header-container {
        justify-content: space-between;
    }
}

/* General Styles for Homepage Body */
.homepage-body {
    background-color: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 10px;
}

/* Section Title & Trending Now - Updated with Section Heading Line Styling */
.trending-now,
.hub-section-title {
    background-color: #00A651 !important;
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    padding: 12px 20px !important;
    border-radius: 5px !important;
    font-size: 16px !important;
    text-align: center !important;
    margin-bottom: 15px !important;
    margin-top: 25px !important;
    font-weight: 800 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Post List */
.post-list {
    margin-top: 5px;
}

.post-item {
    display: flex;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.3s ease;
}

.post-item:hover {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.post-image img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 15px;
}

.post-details {
    flex-grow: 1;
}

.post-title {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333333;
}

/* Next Post Link */
.next-post {
    display: block;
    background-color: #00A651;
    color: #ffffff;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-size: 16px;
    margin-top: 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

@media (max-width: 768px) {
    .post-title {
        font-size: 14px;
    }
    .trending-now {
        font-size: 14px !important;
    }
}

/* Footer Styles */
.footer {
    background-color: #333333;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    border-top: 3px solid #00A651;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 15px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 5px 15px;
    font-weight: 700;
    transition: color 0.3s ease;
    font-size: 16px;
}

.footer-links a:hover {
    color: #00A651;
}

.social-media {
    margin-bottom: 15px;
}

.social-media a {
    color: #ffffff;
    font-size: 24px;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: #00A651;
}

.social-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.social-icon {
    text-decoration: none;
    font-size: 22px;
}

.social-icon[href*="facebook.com"] {
    color: #1877F2;
}

.social-icon[href*="twitter.com"] {
    color: #1DA1F2;
}

.social-icon[href*="whatsapp.com"] {
    color: #25D366;
}

.social-icon[href*="t.me"] {
    color: #0088cc;
}

#copy-link, #copy-link1 {
    color: #333333;
}

.social-icon:hover {
    opacity: 0.8;
}

.copy-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333333;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s;
}

.copy-notification.fade-out {
    opacity: 0;
}

.dmca {
    margin-bottom: 15px;
}

.dmca img {
    width: 100px;
    height: 20px;
}

.copyright {
    font-size: 12px;
    color: #ccc;
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: row;
        justify-content: center;
        margin-bottom: 10px;
    }
    .footer-links a {
        font-size: 14px;
        margin: 5px 10px;
    }
    .social-media a {
        font-size: 20px;
    }
}

/* Search Bar */
.search-bar {
    display: none;
    padding: 10px;
    background-color: #ffffff;
    position: absolute;
    top: 60px;
    right: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    z-index: 1000;
}

.search-bar form {
    display: flex;
    align-items: center;
}

.search-bar input[type="text"] {
    width: 200px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    margin-right: 10px;
}

.search-bar button {
    padding: 8px 16px;
    background-color: #00A651;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

#trend {
    margin-top: 20px;
}

/* Container & Breadcrumb */
.container {
    padding: 10px;
}

.breadcrumb {
    font-size: 14px;
    margin-bottom: 5px;
    color: #00A651;
    margin-top: 10px; 
}

.breadcrumb a {
    text-decoration: none;
    color: #00A651;
}

.breadcrumb a::after {
    content: " >> ";
    color: gray;
}

.breadcrumb a:last-child::after {
    content: "";
}

/* Post Headings & Author Details */
.post-title h1 {
    font-size: 24px;
    margin-top: 10px;
}

.post-title h2 {
    font-size: 14px;
    color: gray;
    margin-bottom: 10px;
    margin-top: 10px;
}

.author-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.author-name {
    font-size: 13px;
    color: #00A651;
    font-weight: 700;
}

.verified-badge {
    width: 12px;
    height: 12px;
    position: relative;
    top: 3px;
}

.post-date {
    color: gray;
    font-size: 12px;
}

.author-text {
    color: gray;
    font-size: 12px;
    display: inline;
}

.post-image-container {
    position: relative;
    margin-bottom: 10px;
}

.post-image-content {
    max-width: 100%;
    height: auto;
    width: 100%;
    border-radius: 2px;
}

.image-caption {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    padding: 5px 10px;
    font-size: 14px;
    text-align: center;
    width: 80%;
}

.telegram-button {
    background-color: #00A651;
    color: #ffffff;
    padding: 10px 20px;
    text-align: center;
    border-radius: 5px;
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
}

.telegram-button:hover {
    color: #ffffff;
}

/* Post Body Formatting */
.post-content {
    font-size: 16px;
    margin-bottom: 20px;
    max-width: 800px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333;
}

.post-content p:first-of-type {
    font-weight: bold;
}

.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
    font-family: 'Georgia', serif;
    color: #222222;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    line-height: 1.4;
}

.post-content a {
    color: #00A651;
    text-decoration: none;
}

.post-content a:hover {
    text-decoration: underline;
}

.post-content ul, .post-content ol {
    padding-left: 20px;
}

.post-content li {
    margin-bottom: 10px;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 10px 0;
}

.post-content blockquote {
    border-left: 4px solid #00A651;
    padding-left: 15px;
    margin: 20px 0;
    font-style: italic;
    color: #555555;
    background-color: #f1f1f1;
    border-radius: 4px;
}

.post-content pre {
    background-color: #333333;
    color: #f8f8f2;
    padding: 10px;
    border-radius: 4px;
    overflow-x: auto;
}

.post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.post-content th, .post-content td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

.post-content th {
    background-color: #f4f4f4;
    font-weight: bold;
}

/* Social & Comments */
.social-icons {
    margin-top: 20px;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
}

.social-icons img {
    width: 40px;
    height: 40px;
}

.separator {
    height: 1px;
    background-color: #e0e0e0;
}

.comment-section {
    border-radius: 8px;
    margin-top: 20px;
}

.comment-section h3 {
    font-size: 18px;
    color: #333333;
    margin-bottom: 15px;
}

.comment-section .comment-form {
    display: flex;
    flex-direction: column;
}

.comment-section .comment-form label {
    margin-bottom: 5px;
}

.comment-section .comment-form input[type="text"],
.comment-section .comment-form textarea {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

.comment-section .comment-form textarea {
    resize: vertical;
}

.comment-section .comment-form input[type="submit"] {
    background-color: #00A651;
    color: #ffffff;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .comment-section {
        padding: 15px;
    }
    .comment-section .comment-form input[type="text"],
    .comment-section .comment-form textarea {
        font-size: 16px;
    }
    .comment-section .comment-form input[type="submit"] {
        font-size: 14px;
        padding: 8px 12px;
    }
}

/* Post Tags & Call-To-Action */
.post-tags {
    margin: 20px 0;
    font-size: 14px;
    color: #333333;
    text-align: left;
}

.post-tags p {
    margin: 0;
}

.post-tags a {
    color: #00A651;
    text-decoration: none;
}

.post-tags a:hover {
    color: #00A651;
}

.rating-call-to-action {
    margin: 20px 0;
    font-size: 16px;
    color: #333333;
    text-align: left;
}

.rating-call-to-action p {
    margin: 10px 0;
}

.rating-call-to-action strong {
    font-weight: bold;
}

.rating-link {
    display: inline-block;
    padding: 10px 15px;
    background-color: #00A651;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
}

.rating-link:hover {
    color: #ffffff;
}

/* Post Badges / Overlays */
.post-image-wrapper {
    position: relative;
    display: inline-block;
}

#post-number-1,
#post-number-2,
#post-number-3,
#post-number-4,
#post-number-5 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
    background-color: #00A651;
    z-index: 10;
    margin-left: 40%;
}

#trending-now {
    margin-top: 10px;
}

#trend svg {
    margin-left: 10px;
    margin-top: -3px;
    vertical-align: middle;
}

/* ==========================================================================
   FIXED: Related Posts Grid Rule (Mirrors Homepage Grid Layout via !important)
   ========================================================================== */
.related-posts-container,
.hiphopkray-related-posts-wrapper {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: repeat(3, auto) !important;
    gap: 15px !important;
    margin-top: 20px !important;
    width: 100% !important;
}

@media (min-width: 768px) {
    .related-posts-container,
    .hiphopkray-related-posts-wrapper {
        grid-template-columns: repeat(4, 1fr) !important;
        grid-template-rows: auto !important;
        gap: 20px !important;
    }
}

.hiphopkray-related-post {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    margin: 0 !important;
    padding: 10px !important;
    border: 1px solid #dddddd !important;
    border-radius: 8px !important;
    background-color: #ffffff !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05) !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.hiphopkray-related-post:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    color: #333333 !important;
}

.hiphopkray-related-post-link {
    text-decoration: none !important;
    display: flex !important;
    flex-direction: column !important;
    color: #333333 !important;
    width: 100% !important;
}

.hiphopkray-related-post-image {
    width: 100% !important;
    margin-right: 0 !important;
    margin-bottom: 10px !important;
}

.hiphopkray-related-post-image img {
    width: 100% !important;
    height: 150px !important;
    object-fit: cover !important;
    border-radius: 6px !important;
}

.hiphopkray-related-post-title {
    font-size: 14px !important;
    font-weight: bold !important;
    text-align: left !important;
    line-height: 1.3 !important;
    color: #111111 !important;
}

/* Sidebar Layout */
.content-wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.main-content {
    width: 75%;
    box-sizing: border-box;
}

.post-list-sidebar {
    width: 40%;
    box-sizing: border-box;
    padding: 20px;
}

.post-list-sidebar .post-item {
    display: flex;
    margin-bottom: 15px;
}

.post-list-sidebar .post-image-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    margin-right: 10px;
}

.post-list-sidebar .post-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #00A651;
    color: #ffffff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.post-list-sidebar .post-info {
    flex: 1;
}

.post-list-sidebar .post-title {
    font-size: 12px;
    color: #333333;
    margin-left: 3rem;
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }
    .main-content, .post-list-sidebar {
        width: 100%;
        padding: 0;
    }
    .post-list-sidebar {
        display: flex;
        flex-direction: column;
    }
    .post-list-sidebar .post-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 20px;
        border-bottom: 1px solid #ddd;
    }
    .post-list-sidebar .post-image-wrapper {
        margin-right: 20px;
    }
    .post-list-sidebar .post-image {
        width: 100px;
        height: 100px;
        display: block;
    }
    .post-list-sidebar .post-number {
        display: flex;
        margin-bottom: 20px;
        background-color: #ffffff;
        border-radius: 5px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
        text-decoration: none;
        color: inherit;
        transition: box-shadow .3s ease;
    }
    .post-list-sidebar .post-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .post-list-sidebar .post-title {
        font-size: 14px;
        margin-bottom: 5px;
    }
}

/* Video Section */
.video-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px auto;
    max-width: 1200px;
}

.video-item {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    transition: transform 0.2s;
}

.video-thumbnail {
    position: relative;
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.play-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #00A651;
    color: #ffffff;
    padding: 5px;
    border-radius: 50%;
    font-size: 20px;
}

.video-title {
    padding: 10px;
    font-size: 14px;
    font-weight: bold;
    color: #333333;
}

.video-title small {
    display: block;
    font-size: 12px;
    color: #777777;
}

@media (max-width: 768px) {
    .video-section {
        grid-template-columns: repeat(2, 1fr);
    }
    .video-thumbnail img {
        width: 100%;
        height: auto;
    }
    .video-title {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .video-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Pagination */
.pagination {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.pagination a {
    display: inline-block;
    margin: 0 5px;
    padding: 8px 16px;
    font-size: 14px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: #ffffff;
    background-color: #00A651;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.pagination .current {
    background-color: #00803e;
    color: #ffffff;
    border: 2px solid #00803e;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 4px;
}

.pagination a:hover {
    background-color: #00803e;
    color: #ffffff;
}

.pagination .prev, .pagination .next {
    font-weight: bold;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .pagination a {
        padding: 6px 12px;
        font-size: 13px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
    }
    .pagination .current {
        padding: 6px 12px;
        font-size: 13px;
    }
}

/* Page Titles & Category Grid */
.page-title {
    background-color: #00A651;
    color: #ffffff;
    padding: 10px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
    border-radius: 5px;
}

.page-posts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 10px;
}

.page-post-item {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.2s;
}

.page-post-thumbnail {
    position: relative;
}

.page-post-thumbnail img {
    width: 100%;
    display: block;
    object-fit: cover;
    height: 200px;
}

.page-post-title {
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #333333;
}

.page-post-title a {
    text-decoration: none;
    color: #333333;
}

.page-post-title a:hover {
    color: #00A651;
}

/* Sidebar & Navigation Submenus */
.sidebar-desktop {
    float: right;
    width: 25%;
    margin-left: 20px;
}

.desktop-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.desktop-nav li {
    position: relative;
}

.desktop-nav li a {
    color: #333333;
    text-decoration: none;
    display: block;
}

.desktop-nav li a:hover,
.desktop-nav li:hover > a {
    color: #ffffff;
}

.nav-menu .dropdown-menu {
    display: none;
    position: absolute;
    background-color: #333333;
    list-style: none;
    padding: 10px;
    margin: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-menu .menu-item-has-children {
    position: relative;
}

.nav-menu .menu-item-has-children:hover .dropdown-menu {
    display: block;
}

.nav-menu .dropdown-menu li {
    margin-bottom: 10px;
}

.nav-menu .dropdown-menu li:last-child {
    margin-bottom: 0;
}

.nav-menu .dropdown-menu li a {
    text-decoration: none;
    color: #ffffff;
}

/* Audio Player & Download Actions */
.listen-section {
    margin-top: 10px;
}

.listen-section p {
    font-weight: bold;
    margin-bottom: 10px;
}

audio {
    display: block;
    margin-bottom: 10px;
    margin-top: 10px;
    width: 100%;
}

.download-button {
    display: inline-block;
    background-color: #00A651;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.download-button .button {
    display: inline-flex;
    align-items: center;
    background-color: #00A651;
    color: #ffffff;
    text-transform: uppercase;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    gap: 10px;
}

.download-button .button svg {
    margin-left: 8px;
    fill: #ffffff;
}

.download-button .button:hover {
    background-color: #00803e;
}

.youtube-embed {
    text-align: center;
}

.youtube-embed iframe {
    max-width: 100%;
    height: 300px;
}

/* 404 & Search */
.error-404 {
    text-align: center;
    padding: 60px 20px;
}

.error-404 .page-title {
    font-size: 20px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 20px;
}

.error-404 .page-content {
    font-size: 16px;
    color: #555555;
    margin-bottom: 30px;
}

.error-404 .page-content p {
    margin: 0;
}

.error-404 a {
    color: #00A651;
    text-decoration: none;
    font-weight: bold;
}

.error-404 a:hover {
    text-decoration: underline;
}

.search-form {
    display: inline-block;
    margin-top: 20px;
    font-size: 1.5em;
}

.search-form input[type="search"] {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 200px;
    max-width: 100%;
    box-sizing: border-box;
}

.search-form input[type="search"]:focus {
    outline: none;
}

.search-form input[type="submit"] {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background-color: #00A651;
    color: #ffffff;
    cursor: pointer;
    font-size: 1em;
    margin-left: 10px;
}

.search-form input[type="submit"]:hover {
    background-color: #00803e;
}
