/* ==========================================
   RESET & CORE VARIABLES
   ========================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans Ethiopic', sans-serif;
}

:root {
    --primary-green: #006B3C;
    --primary-green-dark: #004D2B;
    --accent-gold: #D4AF37;
    --accent-gold-hover: #C19B2E;
    --accent-red: #A31C1C;
    --accent-red-hover: #821414;
    
    --bg-light: #FAF7F2;
    --card-bg: #FFFFFF;
    --text-main: #1C241F;
    --text-muted: #58635C;
    --border-gold: #E5D5A5;
    
    --shadow-soft: 0 4px 15px rgba(0, 107, 60, 0.08);
    --shadow-hover: 0 8px 25px rgba(0, 107, 60, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.8;
    top: 0px !important;
}

a {
    text-decoration: none;
    color: inherit;
}

a:focus-visible, button:focus-visible, input:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
header {
    background-color: rgba(0, 77, 43, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(212, 175, 55, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* LOGO STYLING */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.logo h1 {
    font-size: 1.5rem;
    color: #FFFFFF;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* NAVIGATION LINKS */
nav ul {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
    margin: 0;
    padding: 0;
}

nav a {
    position: relative;
    color: #FAF7F2;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
    opacity: 0;
}

nav a:hover {
    color: var(--accent-gold);
    background-color: rgba(212, 175, 55, 0.08);
}

nav a:hover::after,
nav a.active::after {
    width: 60%;
    opacity: 1;
}

nav a.active {
    color: var(--accent-gold);
    background-color: rgba(212, 175, 55, 0.12);
}

/* DROPDOWN MENU STYLING */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    background-color: var(--primary-green-dark);
    min-width: 220px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    flex-direction: column;
    padding: 8px;
    z-index: 1000;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    width: 10px;
    height: 10px;
    background-color: var(--primary-green-dark);
    border-left: 1px solid rgba(212, 175, 55, 0.3);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    transform: rotate(45deg);
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #FAF7F2;
    transition: all 0.2s ease;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background-color: rgba(212, 175, 55, 0.18);
    color: var(--accent-gold);
    transform: translateX(4px);
}

/* LANGUAGE SELECTOR STYLES */
.language-selector {
    position: relative;
    display: inline-block;
    flex-shrink: 0;
    z-index: 1005;
}

.lang-btn {
    background-color: rgba(212, 175, 55, 0.15);
    color: #FAF7F2;
    border: 1px solid var(--accent-gold);
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.lang-btn:hover {
    background-color: var(--accent-gold);
    color: var(--primary-green-dark);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background-color: #FFFFFF;
    min-width: 180px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    display: none;
    flex-direction: column;
    padding: 6px 0;
    z-index: 99999;
    list-style: none;
    margin: 0;
}

.lang-dropdown-menu.show {
    display: flex !important;
}

.lang-dropdown-menu li {
    width: 100%;
}

.lang-dropdown-menu li a {
    display: block;
    padding: 10px 16px;
    color: #333333;
    font-size: 0.88rem;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}

.lang-dropdown-menu li a:hover {
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--primary-green-dark);
}

/* HAMBURGER MENU BUTTON */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    height: 3px;
    width: 100%;
    background-color: var(--accent-gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    color: #FFFFFF;
    text-align: center;
    padding: 6.5rem 1.5rem;
    border-bottom: 4px solid var(--accent-gold);
    position: relative;
    overflow: hidden;
    background-color: var(--primary-green-dark);
}

.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 40, 20, 0.55);
}

.slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 2.6rem;
    color: var(--accent-gold);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    margin-bottom: 1rem;
    font-weight: 700;
    overflow-wrap: break-word;
}

.hero p {
    font-size: 1.25rem;
    color: #FFFFFF;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.7);
    margin-bottom: 2.5rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.search-box {
    display: flex;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 6px;
    border-radius: 50px;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.search-box input {
    width: 75%;
    padding: 12px 20px;
    border: none;
    font-size: 1rem;
    outline: none;
    background: transparent;
    border-radius: 50px 0 0 50px;
    color: var(--text-main);
}

.search-box button {
    width: 25%;
    border: none;
    background-color: var(--accent-red);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.search-box button:hover {
    background-color: var(--accent-red-hover);
}

/* ==========================================
   MAIN CONTAINER & LAYOUTS
   ========================================== */
.container {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--primary-green-dark);
    margin-bottom: 2.5rem;
    position: relative;
    font-weight: 700;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
    margin: 8px auto 0;
    border-radius: 2px;
}

.daily-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 4rem;
}

.daily-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-gold);
}

.synaxarium-card {
    border-left: 6px solid var(--accent-red);
    position: relative;
}

.sidebar-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.widget-box {
    background: #FAF8F5;
    border-radius: 8px;
    padding: 18px;
    border: 1px solid #EAE3D2;
    border-left: 4px solid var(--primary-green-dark);
}

.widget-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.widget-header h4 {
    margin: 0;
    font-size: 1.05rem;
    color: var(--primary-green-dark);
}

.verse-text {
    font-style: italic;
    color: var(--text-main);
    margin: 0 0 8px 0;
    line-height: 1.6;
    font-size: 0.98rem;
}

.verse-ref {
    display: block;
    text-align: right;
    font-weight: bold;
    color: var(--accent-gold-hover);
    font-size: 0.85rem;
}

.announcement-box {
    border-left-color: var(--accent-gold);
}

.btn-secondary {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary-green-dark);
    font-weight: bold;
    text-decoration: none;
    font-size: 0.85rem;
}

.btn-secondary:hover {
    text-decoration: underline;
}

.date-badge, .badge {
    display: inline-block;
    background-color: var(--accent-red);
    color: #FFFFFF;
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}

.synaxarium-content h3, .card-title {
    color: var(--primary-green-dark);
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.synaxarium-content p {
    color: var(--text-muted);
}

.btn-read-more {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-green-dark);
    font-weight: 600;
    border: 2px solid var(--primary-green-dark);
    padding: 8px 24px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    background-color: var(--primary-green-dark);
    color: var(--accent-gold);
}

/* SYNAXARIUM DYNAMIC UI STYLES */
.synaxarium-scroll-box {
    max-height: 450px;
    overflow-y: auto;
    padding-right: 12px;
    line-height: 1.8;
    color: var(--text-main);
    font-size: 1rem;
}

.synaxarium-section {
    margin-bottom: 1.5rem;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
    border-bottom: 1px dashed var(--border-gold);
    padding-bottom: 6px;
}

.section-header h4 {
    color: var(--primary-green-dark);
    font-size: 1.1rem;
    font-weight: 700;
}

.event-card {
    background-color: #FAF8F5;
    border: 1px solid #EAE3D2;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.event-header {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0.5rem;
}

.event-number {
    background-color: var(--accent-gold);
    color: #FFFFFF;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: bold;
    flex-shrink: 0;
}

.event-title-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.event-title {
    color: var(--primary-green-dark);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
}

.event-tag {
    background-color: rgba(0, 107, 60, 0.1);
    color: var(--primary-green);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.event-desc {
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: 0.5rem;
}

.event-action {
    margin-top: 0.8rem;
}

.btn-read-detail {
    color: var(--accent-red);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease;
}

.btn-read-detail:hover {
    color: var(--accent-red-hover);
    text-decoration: underline;
}

.monthly-list {
    list-style: square;
    padding-left: 1.2rem;
    color: var(--text-main);
}

.monthly-list li {
    margin-bottom: 0.4rem;
}

.empty-msg {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.9rem;
}

/* SYNAXARIUM SCROLLBAR */
.synaxarium-scroll-box::-webkit-scrollbar {
    width: 6px;
}

.synaxarium-scroll-box::-webkit-scrollbar-track {
    background: #FAF7F2;
    border-radius: 4px;
}

.synaxarium-scroll-box::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 4px;
}

.synaxarium-scroll-box::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold-hover);
}

/* ==========================================
   CATEGORIES & SAINTS GRID
   ========================================== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 4rem;
}

.category-card {
    background-color: var(--card-bg);
    padding: 2rem 1.5rem;
    text-align: center;
    border-radius: 12px;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-gold);
    background-color: #FCFAFA;
}

.category-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 0.8rem;
}

.category-card h4 {
    color: var(--primary-green-dark);
    font-weight: 600;
}

.saints-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.saint-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: all 0.3s ease;
}

.saint-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-gold);
}

.saint-img {
    width: 100%;
    height: 220px;
    background-color: #F2EFE9;
    overflow: hidden;
    position: relative;
}

.saint-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.saint-card:hover .saint-img img {
    transform: scale(1.05);
}

.saint-info {
    padding: 1.5rem;
}

.saint-info h4 {
    color: var(--primary-green-dark);
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
}

.saint-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ==========================================
   FEATURED ARTICLES SECTION
   ========================================== */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.article-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-gold);
    padding: 1.8rem;
    position: relative;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-gold);
}

.article-badge {
    align-self: flex-start;
    background-color: rgba(0, 107, 60, 0.1);
    color: var(--primary-green-dark);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 107, 60, 0.2);
}

.read-time {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
}

.article-content h4 {
    color: var(--primary-green-dark);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    line-height: 1.5;
    font-weight: 700;
}

.article-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px dashed var(--border-gold);
    padding-top: 1rem;
    margin-top: auto;
}

.author {
    font-size: 0.85rem;
    color: var(--primary-green-dark);
    font-weight: 600;
}

.read-link {
    color: var(--accent-red);
    font-weight: 700;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.read-link:hover {
    color: var(--accent-red-hover);
}

/* ==========================================
   SERMON & SHAREABLE VERSE SECTION
   ========================================== */
.media-verse-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.sermon-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.live-pill {
    display: inline-block;
    background-color: var(--accent-red);
    color: #FFFFFF;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.sermon-header h3 {
    color: var(--primary-green-dark);
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.sermon-speaker {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
}

.sermon-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-sermon {
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-green-dark);
    color: var(--accent-gold);
    text-decoration: none;
}

.btn-sermon:hover {
    background-color: var(--primary-green);
    color: #FFFFFF;
}

.shareable-verse-card {
    background: linear-gradient(135deg, var(--primary-green-dark) 0%, #002814 100%);
    color: #FFFFFF;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 2px solid var(--accent-gold);
    position: relative;
}

.verse-card-badge {
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.verse-quote {
    font-size: 1.15rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1rem;
    color: #FAF7F2;
}

.verse-reference {
    display: block;
    text-align: right;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.share-btn {
    border: none;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tg-btn {
    background-color: #0088cc;
    color: #FFFFFF;
}

.fb-btn {
    background-color: #1877F2;
    color: #FFFFFF;
}

.img-btn {
    background-color: var(--accent-gold);
    color: var(--primary-green-dark);
}

.share-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* ==========================================
   DIGITAL LIBRARY & DAILY QUIZ SECTION
   ========================================== */
.library-quiz-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
}

.pdf-hub-card, .quiz-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-soft);
}

.pdf-hub-card h3, .quiz-card h4 {
    color: var(--primary-green-dark);
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.pdf-hub-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
}

.pdf-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pdf-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background-color: #FAF8F5;
    border: 1px solid #EAE3D2;
    border-radius: 8px;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.pdf-item:hover {
    border-color: var(--accent-gold);
    background-color: #FFFFFF;
}

.pdf-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pdf-icon {
    font-size: 1.5rem;
}

.pdf-info strong {
    display: block;
    font-size: 0.95rem;
    color: var(--primary-green-dark);
}

.pdf-info small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.pdf-download-btn {
    background-color: var(--primary-green-dark);
    color: var(--accent-gold);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.pdf-download-btn:hover {
    background-color: var(--primary-green);
    color: #FFFFFF;
}

.quiz-badge {
    display: inline-block;
    background-color: rgba(212, 175, 55, 0.2);
    color: var(--primary-green-dark);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.quiz-question {
    font-size: 1.05rem;
    color: var(--text-main);
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.quiz-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background-color: #FAF8F5;
    border: 1px solid #EAE3D2;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.quiz-option:hover {
    background-color: rgba(212, 175, 55, 0.12);
    border-color: var(--accent-gold);
}

.quiz-option input[type="radio"] {
    accent-color: var(--primary-green-dark);
    width: 16px;
    height: 16px;
}

.btn-submit-quiz {
    width: 100%;
    background-color: var(--accent-red);
    color: #FFFFFF;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit-quiz:hover {
    background-color: var(--accent-red-hover);
}

/* ==========================================
   TELEGRAM JOIN SECTION
   ========================================== */
.newsletter-section {
    background-color: var(--primary-green-dark);
    border-top: 4px solid var(--accent-gold);
    padding: 3.5rem 1.5rem;
    color: #FFFFFF;
}

.newsletter-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.telegram-join-btn {
    transition: transform 0.2s ease, background-color 0.2s ease !important;
}

.telegram-join-btn:hover {
    transform: translateY(-3px);
    background-color: #0077b5 !important;
}

/* ==========================================
   PROFESSIONAL FOOTER STYLING
   ========================================== */
.site-footer {
    background-color: var(--primary-green-dark);
    color: #FAF7F2;
    padding: 4rem 1.5rem 0;
    border-top: 2px solid var(--accent-gold);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.footer-logo h3 {
    color: var(--accent-gold);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.footer-col h4 {
    color: var(--accent-gold);
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    position: relative;
}

.footer-col h4::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--accent-gold);
    margin-top: 6px;
    border-radius: 2px;
}

.footer-col p {
    font-size: 0.92rem;
    color: #D8E5DD;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

/* SOCIAL MEDIA ICONS (SVG STYLING) */
.footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: #FAF7F2;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.social-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.social-btn:hover {
    background-color: var(--accent-gold);
    color: var(--primary-green-dark);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    border-color: var(--accent-gold);
}

/* USEFUL LINKS WITH CHEVRON BULLETS */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #D8E5DD;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.footer-links a::before {
    content: "›";
    color: var(--accent-gold);
    font-size: 1.2rem;
    font-weight: bold;
    margin-right: 8px;
    transition: transform 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
    transform: translateX(4px);
}

.footer-links a:hover::before {
    transform: translateX(2px);
}

/* CONTACT LIST WITH SVG ICONS */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.9rem;
    color: #D8E5DD;
    font-size: 0.92rem;
}

.contact-icon {
    width: 18px;
    height: 18px;
    color: var(--accent-gold);
    flex-shrink: 0;
}

/* FOOTER BOTTOM BAR */
.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    padding: 1.5rem 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.88rem;
    color: #D8E5DD;
}

.developer-credit a {
    color: var(--accent-gold);
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.developer-credit a:hover {
    text-decoration: underline;
    opacity: 0.9;
}

/* ==========================================
   RESPONSIVE DESIGN (TABLETS & MOBILES)
   ========================================== */
@media (max-width: 1024px) {
    .menu-toggle {
        display: flex;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-green-dark);
        border-top: 1px solid rgba(212, 175, 55, 0.3);
        border-bottom: 3px solid var(--accent-gold);
        box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    nav.open {
        max-height: 500px;
        overflow-y: auto;
    }

    nav ul {
        flex-direction: column;
        gap: 4px;
        padding: 12px 16px;
    }

    nav ul li {
        width: 100%;
    }

    nav a {
        display: block;
        padding: 12px 16px;
        width: 100%;
        border-radius: 8px;
    }

    nav a::after {
        display: none;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        background-color: rgba(0, 0, 0, 0.2);
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding-left: 15px;
        margin-top: 4px;
    }

    .dropdown-menu::before {
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: flex;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .media-verse-container,
    .library-quiz-container {
        grid-template-columns: 1fr;
    }

    .newsletter-container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .daily-container {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 4rem 1rem;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .search-box {
        flex-direction: column;
        border-radius: 12px;
        background: transparent;
        box-shadow: none;
        border: none;
        gap: 8px;
    }

    .search-box input {
        width: 100%;
        border-radius: 8px;
        background: #FFFFFF;
        padding: 12px;
    }

    .search-box button {
        width: 100%;
        border-radius: 8px;
        padding: 12px;
    }

    .synaxarium-card {
        padding: 1.5rem;
    }

    .pdf-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .pdf-download-btn {
        align-self: flex-end;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
}

/* GOOGLE TRANSLATE UI FIXES */
.goog-te-banner-frame,
iframe.goog-te-banner-frame,
.goog-te-gadget-icon {
    display: none !important;
}

.goog-te-gadget-simple {
    background-color: transparent !important;
    border: none !important;
}

/* ==========================================
   KIDUSAN-MELAKT PAGE SPECIFIC STYLES
   ========================================== */
.melakt-hero {
    background: linear-gradient(135deg, var(--primary-green-dark) 0%, #002814 100%);
    color: #FFFFFF;
    text-align: center;
    padding: 3rem 1.5rem;
    border-bottom: 3px solid var(--accent-gold);
    border-radius: 12px;
    margin-bottom: 2.5rem;
}

.melakt-hero h2 {
    color: var(--accent-gold);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.melakt-hero p {
    font-size: 1.05rem;
    color: #FAF7F2;
    max-width: 700px;
    margin: 0 auto;
}
 <!-- Internal Page Styles -->
    <style>
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Noto Sans Ethiopic', sans-serif;
        }

        body {
            background-color: #f8f9fa;
            color: #2d3748;
        }

        /* HERO SECTION STYLES */
        .page-hero {
            background: linear-gradient(135deg, #092c1b 0%, #0b3d26 50%, #155e3a 100%);
            color: #ffffff;
            padding: 60px 20px;
            text-align: center;
            position: relative;
            box-shadow: inset 0 -10px 20px rgba(0,0,0,0.15);
        }

        .hero-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(246, 173, 85, 0.15);
            color: #f6ad55;
            border: 1px solid rgba(246, 173, 85, 0.4);
            padding: 6px 18px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 15px;
            letter-spacing: 0.5px;
        }

        .page-hero h1 {
            font-size: 2.6rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #ffffff;
            line-height: 1.3;
        }

        .hero-quote {
            font-size: 1.15rem;
            color: #e2e8f0;
            font-style: italic;
            margin-bottom: 25px;
            line-height: 1.6;
            font-weight: 300;
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn-primary {
            background-color: #f6ad55;
            color: #1a202c;
            padding: 12px 28px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(246, 173, 85, 0.3);
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            background-color: #ed8936;
            transform: translateY(-2px);
        }

        .btn-outline {
            background: transparent;
            color: #ffffff;
            padding: 12px 28px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            border: 1px solid rgba(255, 255, 255, 0.4);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #ffffff;
        }

        /* MAIN SPLIT LAYOUT */
        .main-layout {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
            display: flex;
            gap: 30px;
            align-items: flex-start;
        }

        /* LEFT SIDEBAR MENU */
        .angel-sidebar {
            width: 290px;
            flex-shrink: 0;
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            border: 1px solid #e2e8f0;
            overflow: hidden;
            position: sticky;
            top: 20px;
        }

        .angel-sidebar h3 {
            background-color: #0b3d26;
            color: #ffffff;
            padding: 18px 20px;
            font-size: 1.1rem;
            text-align: left;
            border-bottom: 3px solid #f6ad55;
        }

        .angel-menu-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .angel-menu-list li {
            border-bottom: 1px solid #edf2f7;
        }

        .angel-menu-list li:last-child {
            border-bottom: none;
        }

        .angel-btn {
            width: 100%;
            padding: 14px 20px;
            background: none;
            border: none;
            text-align: left;
            font-size: 0.95rem;
            font-weight: 600;
            color: #4a5568;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.2s ease;
        }

        .angel-btn:hover {
            background-color: #f0fdf4;
            color: #0b3d26;
            padding-left: 24px;
        }

        .angel-btn.active {
            background-color: #0b3d26;
            color: #ffffff;
            border-left: 5px solid #f6ad55;
        }

        /* RIGHT CONTENT PANEL */
        .angel-content-panel {
            flex-grow: 1;
            background: #ffffff;
            border-radius: 12px;
            padding: 35px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            border: 1px solid #e2e8f0;
            min-height: 520px;
        }

        /* TAB DISPLAY CONTROL */
        .angel-content {
            display: none;
        }

        .angel-content.active {
            display: block;
            animation: fadeIn 0.3s ease-in-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(6px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* OVERVIEW TAB DESIGN */
        .overview-title-block {
            border-bottom: 2px solid #edf2f7;
            padding-bottom: 15px;
            margin-bottom: 25px;
        }

        .overview-title-block h2 {
            font-size: 1.8rem;
            color: #0b3d26;
        }

        .overview-lead {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #4a5568;
            margin-bottom: 25px;
        }
/* Overview Grid Fix */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 እኩል ሳጥኖችን በጎን ያደርጋል */
    gap: 20px;
    margin: 20px 0;
}

.overview-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-top: 4px solid #1b4d3e; /* ከላይ ያመረ የካርድ መስመር */
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.overview-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.overview-card h4 {
    color: #1b4d3e;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.overview-card p {
    color: #475569;
    margin: 0;
    line-height: 1.6;
}

/* በትንንሽ ስልኮች ላይ 1 እንዲሆን ማድረግ */
@media (max-width: 640px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }
}

        /* ANGEL PROFILE & DETAILS STYLE */
        .angel-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 2px solid #edf2f7;
        }

.angel-profile-img {
    width: 110px;
    height: 120px;
    border-radius: 4px;
    object-fit: cover; /* ምስሉ ፍሬሙን ሙሉ በሙሉ (Fit) እንዲሞላ ያደርጋል */
    background-color: #fcfbf7;
    
    /* ክላሲክ ፕሮፌሽናል የፍሬም ዲዛይን */
    border: 3px solid #c5a059; /* ወርቃማ ቦርደር */
    padding: 2px; /* በፍሬሙና በምስሉ መካከል ያለውን ክፍተት ያጠባል */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* ጥላ */
    box-sizing: border-box; /* መጠኑ እንዳይዛባ ይረዳል */
}

        .angel-header-info h2 {
            font-size: 1.8rem;
            color: #0b3d26;
            margin-bottom: 6px;
        }

        .angel-title-badge {
            display: inline-block;
            background-color: #feebc8;
            color: #744210;
            font-size: 0.85rem;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 12px;
            margin-bottom: 8px;
        }

        .commemoration-info {
            color: #718096;
            font-size: 0.9rem;
        }

        .angel-body h3 {
            color: #1a202c;
            font-size: 1.25rem;
            margin: 25px 0 12px 0;
            border-left: 4px solid #0b3d26;
            padding-left: 12px;
        }

        .angel-body p {
            line-height: 1.8;
            color: #4a5568;
            margin-bottom: 15px;
            font-size: 1rem;
        }

        /* FOOTER STYLES */
        .site-footer {
            background-color: #092c1b;
            color: #a0aec0;
            padding: 60px 0 0 0;
            margin-top: 60px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px 40px 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .footer-col h3, .footer-col h4 {
            color: #ffffff;
            margin-bottom: 20px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }

        .footer-logo-img {
            height: 35px;
            width: auto;
        }

        .footer-socials {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

        .social-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            background: rgba(255,255,255,0.1);
            color: #ffffff;
            border-radius: 50%;
            transition: background 0.3s ease;
        }

        .social-btn:hover {
            background: #f6ad55;
            color: #1a202c;
        }

        .social-icon, .contact-icon {
            width: 20px;
            height: 20px;
        }

        .footer-links, .footer-contact {
            list-style: none;
        }

        .footer-links li, .footer-contact li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #a0aec0;
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: #f6ad55;
        }

        .footer-contact li {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-bottom {
            background-color: #051b10;
            padding: 20px 0;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        .footer-bottom-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            font-size: 0.9rem;
        }

        .developer-credit a {
            color: #f6ad55;
            text-decoration: none;
        }

        /* RESPONSIVE DESIGN FOR MOBILE */
        @media (max-width: 850px) {
            .page-hero h1 {
                font-size: 2rem;
            }

            .main-layout {
                flex-direction: column;
            }

            .angel-sidebar {
                width: 100%;
                position: static;
            }

            .angel-header {
                flex-direction: column;
                text-align: center;
            }

            .footer-bottom-container {
                flex-direction: column;
                text-align: center;
            }
        }
		/* ==========================================
   ATTRACTIVE TABLE STYLES
   ========================================== */

.table-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin: 25px 0;
    border: 1px solid #eef2f5;
}

.table-header-title {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: #ffffff;
    padding: 16px 20px;
}

.table-header-title h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #f8fafc;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.styled-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    text-align: left;
}

.styled-table thead tr {
    background-color: #8b0000; /* የቤተክርስቲያን ግርማ ሞገስ ያለው ቀይ ቀለም */
    color: #ffffff;
    text-align: left;
    font-weight: 700;
}

.styled-table th, 
.styled-table td {
    padding: 14px 18px;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: middle;
}

.styled-table tbody tr {
    transition: background-color 0.2s ease;
}

.styled-table tbody tr:hover {
    background-color: #f8fafc;
}

/* Realm Columns Styling */
.realm-name {
    text-align: center;
    background-color: #fdfbf7;
    border-right: 2px solid #e2e8f0;
}

.realm-badge {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    color: #8b0000;
    margin-bottom: 4px;
}

.realm-name small {
    display: block;
    color: #64748b;
    font-size: 0.8rem;
}

/* Specific Angel Tag Style */
.angel-tag {
    background-color: #f1f5f9;
    color: #1e293b;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.88rem;
    font-weight: 600;
    display: inline-block;
    border: 1px solid #cbd5e1;
}

.font-bold {
    font-weight: 600;
    color: #0f172a;
}

/* Responsive view adjustments */
@media (max-width: 768px) {
    .styled-table th, 
    .styled-table td {
        padding: 10px 12px;
        font-size: 0.88rem;
    }
    
    .realm-badge {
        font-size: 0.95rem;
    }
}
/* Two Column Side-by-Side Image Gallery */
.angel-gallery-two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* ሁልጊዜ 2 በጎን ያደርጋቸዋል */
    gap: 15px;
    margin: 20px 0;
}

.gallery-item {
    width: 100%;
    height: 280px; /* ምስሉ ሰፋ ብሎ እንዲታይ ቁመቱን ትንሽ ጨመር አድርገነዋል */
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    background-color: #f8fafc; /* ምስሉ ከጎን ክፍተት ቢኖረው እንኳን እንዲያምር */
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* ምስሉ ሙሉ በሙሉ ሳይቆረጥ ይገባል */
    display: block;
}

/* በትንንሽ ስልኮች ላይ ቁመቱ እንዳይበዛ ለማስተካከል */
@media (max-width: 480px) {
    .angel-gallery-two-col {
        gap: 10px;
    }
    
    .gallery-item {
        height: 160px; /* በስልክ ላይ በጣም እንዳይዘጋው ቁመቱን አነስ ያደርገዋል */
    }
}
   /* Sidebar Container */
.angel-sidebar {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.angel-sidebar h3 {
    margin-top: 0;
    margin-bottom: 12px;
    color: #1b4d3e;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Custom Dropdown Styling */
.angel-dropdown-select {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    font-family: inherit;
    font-weight: 600;
    color: #1b4d3e;
    background-color: #ffffff;
    border: 2px solid #c5a059;
    border-radius: 8px;
    outline: none;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
    appearance: none; /* Default አローውን ያስወግዳል */
    -webkit-appearance: none;
    -moz-appearance: none;
    /* Custom Dropdown Arrow */
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23c5a059' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
}

/* Hover & Focus States */
.angel-dropdown-select:hover {
    border-color: #1b4d3e;
    box-shadow: 0 0 8px rgba(197, 160, 89, 0.3);
}

.angel-dropdown-select:focus {
    border-color: #1b4d3e;
    box-shadow: 0 0 0 3px rgba(27, 77, 62, 0.15);
}

/* Styling Options Inside Dropdown */
.angel-dropdown-select option {
    padding: 10px;
    background-color: #ffffff;
    color: #1f2937;
    font-size: 0.95rem;
}
/* 1. በዴስክቶፕ (ከፍተኛ ስክሪን) ጊዜ Dropdown ይደበቃል */
.angel-dropdown-select {
    display: none;
}

.angel-menu-list {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* 2. በስልክ እይታ (Media Query - ከ 768px በታች) */
@media (max-width: 768px) {
    /* በስልክ ጊዜ የባተኖቹ ዝርዝር ይደበቃል */
    .angel-menu-list {
        display: none;
    }

    /* በስልክ ጊዜ Dropdown ብቻ ይታያል */
    .angel-dropdown-select {
        display: block;
        width: 100%;
        padding: 12px 16px;
        font-size: 1rem;
        font-family: inherit;
        font-weight: 600;
        color: #1b4d3e;
        background-color: #ffffff;
        border: 2px solid #c5a059;
        border-radius: 8px;
        outline: none;
        cursor: pointer;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background-image: url("data:image/svg+xml;utf8,<svg fill='%23c5a059' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='7 10l5 5 5-5z'/></svg>");
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 20px;
    }
}
@media (max-width: 768px) {
    .angel-dropdown-select {
        display: block !important;
        width: 100%;
        padding: 14px 40px 14px 16px; /* ለቀስቱ ቦታ ይተዋል */
        font-size: 1rem;
        font-family: inherit;
        font-weight: bold;
        color: #1b4d3e;
        background-color: #ffffff;
        border: 2px solid #c5a059;
        border-radius: 10px;
        outline: none;
        cursor: pointer;
        
        /* የብራውዘርን ነባር ቀስት በማጥፋት በነጭ/ወርቃማ አዶ መተካት */
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        
        /* የተቆልቋይ ቀስት አዶ (Dropdown Arrow Icon) */
        background-image: url("data:image/svg+xml;utf8,<svg fill='%23c5a059' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='7 10l5 5 5-5z'/></svg>");
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 24px;
        
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    }

    /* ተጠቃሚው ሲነካው የሚመጣ የFocus ምልክት */
    .angel-dropdown-select:focus {
        border-color: #1b4d3e;
        box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.3);
    }
}
