@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* --- CSS Variables & Design System --- */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f6f6f9;
    --text-primary: #111115;
    --text-secondary: #5e5e6a;
    --accent-burgundy: #8d1b24;
    --accent-gold: #c5a059;
    --border-color: #e5e5ea;
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    --card-hover-shadow: 0 10px 30px rgba(141, 27, 36, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 0, 0, 0.05);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-speed: 0.3s;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

[data-theme="dark"] {
    --bg-primary: #0a0a0c;
    --bg-secondary: #131318;
    --text-primary: #f3f3f6;
    --text-secondary: #9393a2;
    --accent-burgundy: #d4434f;
    --accent-gold: #e5c158;
    --border-color: #24242e;
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --card-hover-shadow: 0 10px 30px rgba(212, 67, 79, 0.15);
    --glass-bg: rgba(10, 10, 12, 0.85);
    --glass-border: rgba(255, 255, 255, 0.05);
}

/* --- Base & Reset Rules --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-speed) ease, opacity var(--transition-speed) ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-burgundy), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Layout Utilities --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 96px 0;
    position: relative;
}

.section-secondary {
    background-color: var(--bg-secondary);
}

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

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

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 991px) {
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* --- Animations & Transitions --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Header / Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: background-color var(--transition-speed) ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.logo img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-burgundy);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-burgundy);
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* --- Theme Toggle --- */
.theme-btn {
    background: none;
    border: 1px solid var(--border-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: background-color var(--transition-speed) ease, border-color var(--transition-speed) ease;
}

.theme-btn:hover {
    background-color: var(--bg-secondary);
    border-color: var(--accent-burgundy);
}

.theme-btn svg {
    width: 18px;
    height: 18px;
}

.menu-toggle {
    display: inline-block;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
}

@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
}

/* --- Mobile Menu Drawer --- */
.mobile-nav {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: calc(100vh - 72px);
    background-color: var(--bg-primary);
    z-index: 999;
    padding: 32px 24px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav-link {
    font-size: 20px;
    font-weight: 600;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.btn-primary {
    background-color: var(--accent-burgundy);
    color: #ffffff;
    border: none;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(141, 27, 36, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--bg-secondary);
    border-color: var(--text-primary);
    transform: translateY(-2px);
}

.btn-gold {
    background-color: var(--accent-gold);
    color: #ffffff;
    border: none;
}

.btn-gold:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.2);
}

/* --- App Store Badges --- */
.badge-container {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.store-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #111115;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    min-width: 155px;
}

.store-badge:hover {
    transform: translateY(-2px);
    border-color: var(--accent-gold);
}

.store-badge i {
    font-size: 24px;
}

.store-badge .badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.store-badge .badge-text span:first-child {
    font-size: 10px;
    text-transform: uppercase;
    opacity: 0.6;
}

.store-badge .badge-text span:last-child {
    font-size: 14px;
    font-weight: 700;
}

/* --- Section Headings --- */
.section-header {
    max-width: 600px;
    margin: 0 auto 56px auto;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 18px;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    padding-top: 140px;
    padding-bottom: 96px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.hero-title {
    font-size: 56px;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

@media (max-width: 991px) {
    .hero {
        padding-top: 110px;
        text-align: center;
    }
    
    .hero .grid-2 {
        display: flex;
        flex-direction: column;
        gap: 60px;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 40px;
    }
}

/* --- App Presentation Cards --- */
.app-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.app-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.app-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-hover-shadow);
    border-color: var(--accent-burgundy);
}

.app-card-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background-color: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 28px;
    border: 1px solid var(--border-color);
}

.app-card.madi7i .app-card-icon {
    color: var(--accent-burgundy);
}

.app-card.anagnostis .app-card-icon {
    color: var(--accent-gold);
}

.app-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.app-card p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    flex-grow: 1;
}

.app-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
}

.app-card.madi7i .app-card-link {
    color: var(--accent-burgundy);
}

.app-card.anagnostis .app-card-link {
    color: var(--accent-gold);
}

.app-card-link i {
    transition: transform var(--transition-speed) ease;
}

.app-card-link:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .app-showcase-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Features Section --- */
.features-grid {
    margin-top: 48px;
}

.feature-item {
    background-color: var(--bg-primary);
    padding: 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    transition: transform var(--transition-speed) ease, border-color var(--transition-speed) ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    border-color: var(--accent-burgundy);
}

.feature-icon {
    font-size: 28px;
    color: var(--accent-burgundy);
    margin-bottom: 20px;
}

.feature-item.gold .feature-icon {
    color: var(--accent-gold);
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* --- Phone Mockup Container --- */
.mockup-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-shell {
    width: 320px;
    height: 640px;
    background-color: #111115;
    border-radius: 44px;
    border: 12px solid #111115;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    outline: 2px solid var(--border-color);
}

/* Screen Notch */
.phone-shell::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 28px;
    background-color: #111115;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 100;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-color: #0c0c0e;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    font-family: var(--font-body);
}

.phone-screen-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Interactive Mockup Widgets inside Phone --- */

/* App Frame UI Header */
.screen-header {
    padding: 36px 16px 12px 16px;
    background-color: #131317;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #1e1e24;
}

.screen-app-name {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.screen-app-icon {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    background-color: var(--accent-burgundy);
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Madi7i Audio Player Screen Widget */
.widget-player {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 16px;
    background: linear-gradient(180deg, #131317 0%, #070709 100%);
    justify-content: space-between;
}

.song-info {
    text-align: center;
    margin-top: 12px;
}

.song-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.song-category {
    font-size: 12px;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lyrics-container {
    flex-grow: 1;
    margin: 16px 0;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 16px;
    overflow-y: auto;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    max-height: 220px;
    scroll-behavior: smooth;
}

.lyrics-container::-webkit-scrollbar {
    width: 4px;
}
.lyrics-container::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.lyric-line {
    opacity: 0.4;
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
    font-weight: 400;
}

.lyric-line.active {
    opacity: 1;
    color: #ffffff;
    font-weight: 600;
    transform: scale(1.05);
}

.player-controls {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.player-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 10px;
    color: #888890;
    gap: 8px;
}

.progress-bar-bg {
    flex-grow: 1;
    height: 4px;
    background-color: #22222a;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.progress-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: var(--accent-burgundy);
    transition: width 0.1s linear;
}

.play-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.play-btn-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--accent-burgundy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #ffffff;
    cursor: pointer;
}

.play-btn-small {
    font-size: 16px;
    color: #888890;
    cursor: pointer;
}

/* Anagnostis Readings Screen Widget */
.widget-readings {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 16px;
    background-color: #0c0c0e;
    overflow-y: auto;
}

.widget-readings::-webkit-scrollbar {
    width: 0px;
}

.reading-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.reading-tabs::-webkit-scrollbar {
    height: 0px;
}

.reading-tab {
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    background-color: #131317;
    border-radius: 12px;
    border: 1px solid #1e1e24;
    white-space: nowrap;
    cursor: pointer;
    color: #888890;
    transition: all var(--transition-speed) ease;
}

.reading-tab.active {
    background-color: var(--accent-gold);
    color: #000000;
    border-color: var(--accent-gold);
}

.reading-content-card {
    background-color: #131317;
    border-radius: 14px;
    padding: 16px;
    border: 1px solid #1e1e24;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.reading-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    border-bottom: 1px solid #1e1e24;
    padding-bottom: 8px;
}

.reading-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-gold);
}

.reading-ref {
    font-size: 10px;
    color: #888890;
}

.reading-body-scroller {
    font-size: 12px;
    line-height: 1.5;
    color: #dddddf;
    height: 200px;
    overflow-y: auto;
    padding-right: 4px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.reading-body-scroller::-webkit-scrollbar {
    width: 2px;
}
.reading-body-scroller::-webkit-scrollbar-thumb {
    background-color: #33333e;
}

.reading-paragraph {
    margin-bottom: 8px;
}

.arabic-text {
    direction: rtl;
    font-family: serif;
    font-size: 14px;
    color: #eeeeb0;
}

/* Equalizer audio bars */
.eq-container {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 18px;
}

.eq-bar {
    width: 3px;
    background-color: var(--accent-burgundy);
    height: 2px;
    transition: height 0.1s ease;
}

.playing .eq-bar:nth-child(1) { animation: eq-anim 0.8s ease infinite alternate 0.1s; }
.playing .eq-bar:nth-child(2) { animation: eq-anim 0.8s ease infinite alternate 0.4s; }
.playing .eq-bar:nth-child(3) { animation: eq-anim 0.8s ease infinite alternate 0.2s; }
.playing .eq-bar:nth-child(4) { animation: eq-anim 0.8s ease infinite alternate 0.5s; }

@keyframes eq-anim {
    0% { height: 2px; }
    100% { height: 18px; }
}

/* Decorative Background shapes */
.hero-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(141, 27, 36, 0.08) 0%, rgba(197, 160, 89, 0.03) 70%, transparent 100%);
    top: 10%;
    right: 5%;
    z-index: -1;
    pointer-events: none;
}

/* --- Katameros Daily Readings Widget (Web Page version) --- */
.katameros-widget {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--card-shadow);
    margin-top: 40px;
}

.widget-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 24px;
    gap: 24px;
    overflow-x: auto;
}

.widget-tab-btn {
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 12px 4px;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
}

.widget-tab-btn.active {
    color: var(--accent-burgundy);
}

.widget-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-burgundy);
}

.widget-pane {
    display: none;
}

.widget-pane.active {
    display: block;
}

.readings-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
}

@media (max-width: 768px) {
    .readings-split {
        grid-template-columns: 1fr;
    }
}

.bible-text-container {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    max-height: 380px;
    overflow-y: auto;
}

.coptic-reading-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.coptic-reading-meta h4 {
    font-size: 18px;
    color: var(--accent-burgundy);
}

.coptic-reading-meta span {
    font-size: 14px;
    color: var(--text-secondary);
}

.bible-translation-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trans-section h5 {
    font-size: 14px;
    color: var(--accent-gold);
    margin-bottom: 6px;
    text-transform: uppercase;
}

.trans-section p {
    font-size: 15px;
    color: var(--text-primary);
}

.trans-section p.arabic {
    direction: rtl;
    font-family: serif;
    font-size: 18px;
    line-height: 1.5;
}

.coptic-calendar-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
}

.calendar-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.calendar-header h4 {
    font-size: 16px;
}

.calendar-info-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px dashed var(--border-color);
}

.calendar-info-row span:first-child {
    color: var(--text-secondary);
}

.calendar-info-row span:last-child {
    font-weight: 600;
}

.calendar-feast-card {
    background-color: var(--bg-secondary);
    border-left: 3px solid var(--accent-gold);
    padding: 12px 16px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.calendar-feast-card h5 {
    font-size: 13px;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.calendar-feast-card p {
    font-size: 14px;
    font-weight: 500;
}

/* --- Contact & Footer --- */
.contact-section {
    border-top: 1px solid var(--border-color);
}

.contact-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.contact-info p {
    color: var(--text-secondary);
}

.contact-info a {
    color: var(--accent-burgundy);
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-icon {
    font-size: 20px;
    color: var(--text-secondary);
}

.social-icon:hover {
    color: var(--accent-burgundy);
    transform: scale(1.1);
}

.footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-logo img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}
