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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    /* Light Mode Colors - بيج فاتح */
    --primary: #eae3da;
    --secondary: #d9cfc2;
    --accent: #0f172a;
    --orange: #ff6b35;
    --red: #ef4444;
    --blue: #3b82f6;
    --text-dark: #0f172a;
    --text-gray: #4a4a4a;
    --text-light: #6b6b6b;
    --border: rgba(15, 23, 42, 0.15);
    --bg-hover: rgba(15, 23, 42, 0.05);
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.08);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

[data-theme="dark"] {
    /* Dark Mode Colors */
    --primary: #0f172a;
    --secondary: #1e293b;
    --accent: #f1f5f9;
    --text-dark: #f1f5f9;
    --text-gray: #cbd5e1;
    --text-light: #94a3b8;
    --border: rgba(255, 255, 255, 0.1);
    --bg-hover: rgba(255, 255, 255, 0.05);
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.6);
}

body {
    font-family: 'Cairo', 'Tajawal', -apple-system, sans-serif;
    background: var(--secondary);
    color: var(--text-dark);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========= CONTAINER - RESPONSIVE ========= */
.container {
    max-width: 480px;           /* جوال: 480px */
    margin: 0 auto;
    min-height: 100vh;
    background: var(--primary);
    position: relative;
    box-shadow: var(--shadow-lg);
}

/* تابلت: 768px */
@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}

/* لابتوب: 1200px */
@media (min-width: 1024px) {
    .container {
        max-width: 1200px;
    }
}

/* ديسكتوب كبير: 1400px */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
}

/* ========= MODERN HEADER ========= */
.header-home {
    background: linear-gradient(135deg, #0d1f3d 0%, #1f2c47 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 20px !important;
    position: sticky !important;
    top: 50px !important;
    z-index: 99 !important;
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* 🌞 Light Mode: index.html يتغير للبيج */
[data-theme="light"] .header-home {
    background: var(--primary);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

/* لابتوب: توسيع الرأس */
@media (min-width: 1024px) {
    .header-home {
        padding: 24px 40px !important;
    }
}

.header-content {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-logo {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

/* لابتوب: لوجو أكبر */
@media (min-width: 1024px) {
    .header-logo {
        width: 64px;
        height: 64px;
    }
}

.header-logo img {
    width: 65%;
    height: 65%;
    object-fit: contain;
}

.header-text {
    flex: 1;
}

.header-home .brand-name {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2px;
    letter-spacing: -0.02em;
}

/* Light Mode: النص يصير داكن */
[data-theme="light"] .header-home .brand-name {
    color: var(--text-dark);
}

/* لابتوب: خط أكبر */
@media (min-width: 1024px) {
    .header-home .brand-name {
        font-size: 1.8rem;
    }
}

.header-home .tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.65rem;
    font-weight: 400;
}

/* Light Mode: النص يصير رمادي */
[data-theme="light"] .header-home .tagline {
    color: var(--text-gray);
}

/* لابتوب: tagline أكبر */
@media (min-width: 1024px) {
    .header-home .tagline {
        font-size: 1rem;
    }
}
/* ========= MENU PAGES HEADER - MORE VERTICAL SPACE ========= */
.header {
    position: sticky !important;
    top: 50px !important;
    z-index: 99 !important;
    background: linear-gradient(135deg, #0d1f3d 0%, #1f2c47 100%);
    padding: 8px 20px !important;    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    margin: 0 !important;
}

/* 🌞 Light Mode */
[data-theme="light"] .header {
    background: linear-gradient(135deg, #0d1f3d 0%, #1f2c47 100%);
}

/* لابتوب: رأس أكبر */
@media (min-width: 1024px) {
    .header {
        padding: 24px 40px;
        padding-top: 80px;
    }
}

.header .header-content {
    display: flex;
    align-items: center;
    gap: 14px;
}
.header .header-logo {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

/* Light Mode: اللوقو يصير بيج */
[data-theme="light"] .header-home .header-logo {
    background: var(--secondary);
    box-shadow: var(--shadow-sm);
}

@media (min-width: 1024px) {
    .header .header-logo {
        width: 64px;
        height: 64px;
    }
}

.header .header-logo img {
    width: 65%;
    height: 65%;
    object-fit: contain;
}

.header .header-text {
    flex: 1;
}

[dir="rtl"] .header .header-text {
    text-align: right;
}

[dir="ltr"] .header .header-text {
    text-align: left;
}

.header .brand-name {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2px;
    letter-spacing: -0.02em;
}

/* لابتوب: عنوان أكبر */
@media (min-width: 1024px) {
    .header .brand-name {
        font-size: 1.8rem;
    }
}

.header .tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.65rem;
    font-weight: 400;
}

/* لابتوب: نص أكبر */
@media (min-width: 1024px) {
    .header .tagline {
        font-size: 1rem;
    }
}

/* ========= THEME TOGGLE ========= */
.theme-toggle {
    position: fixed;
    top: 16px;
    left: 16px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.2s ease;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
}

/* لابتوب: زر أكبر */
@media (min-width: 1024px) {
    .theme-toggle {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
}

.theme-toggle:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* ========= BRANCH SELECTION ========= */
.branch-selection {
    padding: 24px 20px;
}

/* لابتوب: padding أكبر */
@media (min-width: 1024px) {
    .branch-selection {
        padding: 40px 60px;
    }
}

.branch-selection h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

/* لابتوب: عنوان أكبر */
@media (min-width: 1024px) {
    .branch-selection h2 {
        font-size: 1.6rem;
        margin-bottom: 24px;
    }
}

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

/* تابلت: صفوف 2x1 */
@media (min-width: 768px) {
    .branches {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* لابتوب: صف واحد أفقي */
@media (min-width: 1024px) {
    .branches {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

.branch-card {
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 18px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* لابتوب: بطاقات أكبر */
@media (min-width: 1024px) {
    .branch-card {
        padding: 28px 24px;
        gap: 18px;
    }
}

.branch-card:hover {
    transform: translateX(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

/* لابتوب: حركة أكبر عند hover */
@media (min-width: 1024px) {
    .branch-card:hover {
        transform: translateY(-5px);
    }
}

.branch-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

/* لابتوب: أيقونة أكبر */
@media (min-width: 1024px) {
    .branch-icon {
        font-size: 2rem;
    }
}

.branch-card h3 {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: right;
}

/* لابتوب: نص أكبر */
@media (min-width: 1024px) {
    .branch-card h3 {
        font-size: 1.3rem;
    }
}

.arrow {
    color: var(--orange);
    font-size: 1.2rem;
}

/* لابتوب: سهم أكبر */
@media (min-width: 1024px) {
    .arrow {
        font-size: 1.6rem;
    }
}

/* ========= CATEGORY TABS ========= */
.category-tabs {
    display: flex;
    gap: 8px;
    padding: 16px 20px;
    overflow-x: auto;
    scrollbar-width: none;
    background: var(--primary);
    border-bottom: 1px solid var(--border);
}

/* لابتوب: tabs أوسع */
@media (min-width: 1024px) {
    .category-tabs {
        padding: 20px 40px;
        gap: 12px;
        justify-content: center;
    }
}

.category-tabs::-webkit-scrollbar {
    display: none;
}

.category-tab {
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

/* لابتوب: tabs أكبر */
@media (min-width: 1024px) {
    .category-tab {
        padding: 12px 24px;
        font-size: 1rem;
        border-radius: 30px;
    }
}

.category-tab.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

/* إصلاح: Dark Mode - التبويب النشط */
[data-theme="dark"] .category-tab.active {
    background: #34353b;  /* أزرق داكن */
    color: white;
    border-color: #1e40af;
}

.category-tab:hover:not(.active) {
    background: var(--border);
}

/* ========= MENU CONTAINER ========= */
.menu-container {
    background: var(--secondary);
}
.menu-header {
    text-align: center;
    padding: 10px 20px;
    background: var(--primary);
    border-bottom: 1px solid var(--border);
}

/* لابتوب: header أكبر */
@media (min-width: 1024px) {
    body:not([data-branch]) .menu-header {
        padding: 32px;
    }
}

body:not([data-branch]) .menu-header h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

/* لابتوب: عنوان أكبر */
@media (min-width: 1024px) {
    .menu-header h2 {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
}

.menu-header p {
    color: var(--text-gray);
    font-size: 0.8rem;
}

/* لابتوب: نص أكبر */
@media (min-width: 1024px) {
    .menu-header p {
        font-size: 1.1rem;
    }
}

.category {
    padding: 20px 16px 30px;
}

/* لابتوب: padding أكبر */
@media (min-width: 1024px) {
    .category {
        padding: 32px 40px 48px;
    }
}

.category-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    padding-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* لابتوب: عنوان أكبر */
@media (min-width: 1024px) {
    .category-title {
        font-size: 1.6rem;
        padding-bottom: 20px;
        gap: 12px;
    }
}

.category-icon {
    font-size: 1.3rem;
}

/* لابتوب: أيقونة أكبر */
@media (min-width: 1024px) {
    .category-icon {
        font-size: 2rem;
    }
}

/* ========= MENU GRID - RESPONSIVE ========= */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);  /* جوال: عمودين */
    gap: 12px;
    grid-auto-rows: max-content;
}

/* تابلت: 3 أعمدة */
@media (min-width: 768px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

/* لابتوب: 4 أعمدة */
@media (min-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

/* ديسكتوب كبير: 5 أعمدة */
@media (min-width: 1440px) {
    .menu-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 24px;
    }
}

.menu-item {
    background: var(--primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: var(--shadow-xs);
}

.menu-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange);
}

/* لابتوب: حركة أكبر */
@media (min-width: 1024px) {
    .menu-item:hover {
        transform: translateY(-8px);
    }
}

.item-image {
    width: 100%;
    height: 140px;
    object-fit: cover;
    background: var(--secondary);
}

/* تابلت: صور أكبر */
@media (min-width: 768px) {
    .item-image {
        height: 180px;
    }
}

/* لابتوب: صور أكبر */
@media (min-width: 1024px) {
    .item-image {
        height: 220px;
    }
}

/* 🔧 إصلاح: البطاقات بدون صور */
.menu-item.no-image {
    height: fit-content;
}

.menu-item.no-image .menu-item-content {
    padding: 20px 16px;
}

@media (min-width: 1024px) {
    .menu-item.no-image .menu-item-content {
        padding: 24px 20px;
    }
}
.menu-item-content {
    padding: 12px 10px;
}

/* لابتوب: padding أكبر */
@media (min-width: 1024px) {
    .menu-item-content {
        padding: 16px 14px;
    }
}

.item-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* لابتوب: نص أكبر */
@media (min-width: 1024px) {
    .item-name {
        font-size: 1rem;
        margin-bottom: 8px;
    }
}

.item-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--orange);
}

/* لابتوب: سعر أكبر */
@media (min-width: 1024px) {
    .item-price {
        font-size: 1.4rem;
    }
}

[data-theme="light"] .item-price {
    color: var(--red);
}

.price-unit {
    font-size: 0.65rem;
    font-weight: 500;
    opacity: 0.9;
}

/* لابتوب: وحدة السعر أكبر */
@media (min-width: 1024px) {
    .price-unit {
        font-size: 0.8rem;
    }
}

/* ========= BACK BUTTON ========= */
.back-button {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.2s ease;
    z-index: 1000;
}
/* 🌙 Dark Mode: إصلاح زر العودة */
[data-theme="dark"] .back-button {
    background: #3f4457;  /* أزرق داكن */
    color: white;
}

[data-theme="dark"] .back-button:hover {
    background: #1e3a8a;  /* أزرق أغمق عند hover */
}
/* لابتوب: زر أكبر */
@media (min-width: 1024px) {
    .back-button {
        padding: 16px 40px;
        font-size: 1.1rem;
        bottom: 32px;
    }
}

.back-button:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

/* لابتوب: حركة أكبر */
@media (min-width: 1024px) {
    .back-button:hover {
        transform: translateX(-50%) translateY(-4px);
    }
}

.footer {
    text-align: center;
    padding: 24px 20px;
    color: var(--text-gray);
    font-size: 0.75rem;
}

/* لابتوب: footer أكبر */
@media (min-width: 1024px) {
    .footer {
        padding: 40px 20px;
        font-size: 0.95rem;
    }
}

/* ========= MOBILE ADJUSTMENTS ========= */
@media (max-width: 380px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .item-image {
        height: 160px;
    }
}


/* Heritage section styles are now in index.html inline styles */

.branch-card-final {
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-xs);
}

.branch-card-final:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--orange);
}

.branch-title-row {
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--border);
}

.branch-title-row h3 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 2px 0;
}

.branch-subtitle {
    font-size: 0.65rem;
    color: var(--text-gray);
    font-weight: 500;
}

.branch-actions {
    display: flex;
    gap: 6px;
}

.action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 7px 8px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    border: none;
    font-family: 'Cairo', 'Tajawal', -apple-system, sans-serif;
}

.primary-btn {
    background: var(--accent);
    color: white;
}

.primary-btn:hover {
    background: #1e293b;
    transform: translateY(-1px);
}

[data-theme="dark"] .primary-btn {
    background: #475569;
    color: white;
}

[data-theme="dark"] .primary-btn:hover {
    background: #64748b;
}

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

.secondary-btn:hover {
    background: var(--secondary);
    border-color: var(--orange);
}

[data-theme="dark"] .secondary-btn {
    background: var(--secondary);
    color: var(--text-dark);
}

[data-theme="dark"] .secondary-btn:hover {
    background: rgba(255, 255, 255, 0.05);
}

.global-nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    z-index: 10000;
    pointer-events: none;
}

.nav-buttons-group {
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: auto;
}

.nav-theme-btn,
.nav-lang-btn {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
    pointer-events: auto;
}

.nav-theme-btn:hover,
.nav-lang-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.nav-lang-btn {
    font-size: 0.75rem;
}

@media (min-width: 1024px) {
    .global-nav-header {
        padding: 0 24px;
    }
    
    .nav-theme-btn,
    .nav-lang-btn {
        width: 56px;
        height: 56px;
    }
    
    .nav-theme-btn {
        font-size: 1.4rem;
    }
    
    .nav-lang-btn {
        font-size: 0.85rem;
    }
}

/* ===== إخفاء الأزرار القديمة المكررة ===== */
body > .theme-toggle,
body > .lang-toggle,
.container > .theme-toggle,
.container > .lang-toggle {
    display: none !important;
}




/* ========= MODERN FOOTER ========= */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 48px 20px 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 600;s
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .footer {
        padding: 64px 40px 24px;
    }
}

@media (min-width: 1024px) {
    .footer {
        padding: 80px 60px 28px;
    }
    
    .footer-section h3 {
        font-size: 1.4rem;
    }
}

/* ========= HEADER WELCOME MESSAGE ========= */
.header-welcome {
    display: flex;
    align-items: center;
}

.header-welcome h2 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent);
    margin: 0;
    white-space: nowrap;
}

/* Branch pages - white color for welcome */
.header .header-welcome h2 {
    color: white;
}

@media (min-width: 1024px) {
    .header-welcome h2 {
        font-size: 1.2rem;
    }
}
/* ========= FOOTER ADDITIONS - Add these to your existing footer styles ========= */

/* About Link in Footer */
.about-link {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.about-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateX(-3px);
}

[dir="ltr"] .about-link:hover {
    transform: translateX(3px);
}

/* Footer Heritage Badge */
.footer-heritage {
    margin-top: 12px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 1024px) {
    .about-link {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .footer-heritage {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}