/*
Theme Name: Chatlingos Theme
Theme URI: https://chatlingos.com
Author: Chatlingos Team
Author URI: https://chatlingos.com
Description: A modern Bootstrap-based theme designed for Chatlingos.com, featuring a clean, responsive layout with a card-based post design.
Version: 1.2
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: chatlingos-theme
Tags: custom-background, custom-menu, featured-images, full-width-template, responsive-layout
*/

/* 🔹 General Styling */
@import url('https://fonts.googleapis.com/css2?family=Beiruti:wght@200;300;400;500;600;700;800;900&family=Noto+Kufi+Arabic&display=swap');

body {
      font-family: "Beiruti", "Noto Kufi Arabic", serif;
    background-color: #f9f9f9; /* ✅ Light Gray Background */
    color: #000000; /* Black text */
    direction: rtl;
    text-align: right;
}

a {
    text-decoration: none;
    color: #f99f4b; /* ✅ Orange from logo */
    transition: color 0.3s ease;
}

a:hover {
    color: #000000; /* ✅ Text turns black on hover */
}

/* 🔹 Header */
.header-container {
    text-align: center;
    padding: 20px 0;
    background-color: #ffffff;
    border-bottom: 3px solid #f99f4b; /* ✅ Orange underline */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* ✅ Subtle shadow */
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* ✅ Adjusted Logo Size */
.header-logo img {
    max-width: 100px;
    height: auto;
    margin-bottom: 10px;
}

/* 🔹 Navigation Menu */
.nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 2px;
}

.nav-menu li {
    display: inline-block;
}

.nav-menu li a {
    font-size: 17px;
    font-weight: bold;
    padding: 5px 4px;
    border-radius: 8px;
    transition: color 0.3s ease, background-color 0.3s ease;
    color: #000000;
}

.nav-menu li a:hover {
    color: #f99f4b;
}
/* ✅ Add a small dot (•) before each menu item */
.nav-menu li a::before {
    content: "@"; /* You can replace with another symbol */
    color: #000000; /* ✅ Same color as menu links */
    font-size: 14px;
}

/* 🔹 Social Media Icons */
.header-social {
    margin-top: 1px;
}

.header-social a {
    color: #000000;
    font-size: 18px;
    margin: 0 8px;
    transition: color 0.3s ease;
}

.header-social a:hover {
    color: #f99f4b;
}

/* 🔹 Sections Styling */
.section {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.section-title {
    font-size: 22px;
    color: #f99f4b;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
}

/* 🔹 Card Layout */
.card {
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    background-color: #ffffff;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    text-align: right;
    padding: 15px;
}

.card:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.card-title {
    color: #f99f4b;
    font-weight: bold;
    font-size: 20px;
}

.card-text {
    color: #333;
}
/* ✅ Full Width Wrapper */
.single-post-fullwidth {
    width: 100%;

}


/* 🔹 Buttons */
.btn-primary {
    background-color: #f99f4b;
    border-color: #f99f4b;
    font-weight: bold;
    text-align: center;
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 6px;
}

.btn-primary:hover {
    background-color: #000000;
    border-color: #000000;
    color: #ffffff;
}

/* 🔹 Footer */
footer {
    background-color: #000000;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

/* 🔹 Forms */
input, textarea {
    text-align: right;
    border: 1px solid #ddd;
    padding: 8px;
    border-radius: 5px;
    width: 100%;
}

input:focus, textarea:focus {
    border-color: #f99f4b;
    outline: none;
}

/* 🔹 Sidebar */
.sidebar {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* 🔹 Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-menu li {
        margin-bottom: 5px;
    }

    .header-container {
        padding: 1px 0;
    }

    .section {
        padding: 1px;
    }
}

/* ✅ Post Title */
.post-title {
    font-size: 28px;
    font-weight: bold;
    color: #f99f4b;
    text-align: center;
    margin-bottom: 10px;
}

/* ✅ Post Metadata */
.post-meta {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-bottom: 20px;
}

/* ✅ Post Image */
.post-image img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* ✅ Post Content */
.post-content {
    font-size: 18px;
    color: #333;
}

/* ✅ Voice Recording Section */
.voice-recording-section {
    text-align: center;
    background-color: #fff5e6;
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    border: 1px solid #f99f4b;
}

/* ✅ Voice Notes Section */
.voice-notes-section {
    margin-top: 30px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 10px;
}

/* ✅ Voice List */
.voice-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ✅ Individual Voice Item */
.voice-item {
    background: white;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    gap: 10px;
}
/* ✅ Voice Notes Section */
.voice-notes-section {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.voice-notes-section h3 {
    font-size: 20px;
    color: #f99f4b;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}

/* ✅ Voice Threads */
.voice-thread-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.voice-thread {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* ✅ User Header */
.voice-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
}

.voice-user-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f99f4b;
}

.voice-username {
    font-weight: bold;
    color: #333;
    font-size: 16px;
}

/* ✅ Voice Body */
.voice-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

/* ✅ Audio Player */
.voice-body audio {
    width: 100%;
    border-radius: 6px;
    outline: none;
}

/* ✅ Metadata (Score & Likes) */
.voice-metadata {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 8px;
}

.voice-score {
    background: #000000;
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
}

.voice-likes {
    background: #000000;
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
}
/* 🔥 ✅ App Download Section */
.app-download-section {
    text-align: center;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.app-download-section h3 {
    color: #f99f4b;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}

.app-download-section p {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
}

/* ✅ Download Buttons */
.download-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.download-btn img {
    height: 50px;
    transition: transform 0.3s ease-in-out;
}

.download-btn:hover img {
    transform: scale(1.1);
}

.top-score-banner {
    background: #fef3c7;
    border: 2px solid #facc15;
    padding: 10px 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    font-size: 1.2rem;
}
.score-highlight {
    color: #d97706;
}
.voice-user-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}
.voice-thread {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 15px;
    background: #fafafa;
}
.voice-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}
.voice-username {
    font-weight: bold;
}
.voice-score {
    margin-top: 5px;
    display: inline-block;
}
