/* ==========================================================================
   المتغيرات الأساسية والألوان
   ========================================================================== */
:root {
    --bg-main: #f9f6f0;           /* اللون الفاتح الأساسي (أوف وايت) */
    --bg-secondary-sand: #ede5d8;  /* اللون الثانوي الرملي الدافئ */
    --bg-dark-section: #33302e;   /* اللون الداكن الأساسي */
    --card-bg-light: #F9F6F0;     /* خلفية البطاقات */
    
    /* ألوان النصوص المخصصة لتسلسل بصري ممتاز */
    --text-dark-title: #33302e;   /* نص عنوان داكن */
    --text-dark-sub: #6e6660;     /* نص فرعي داكن دافئ */
    --text-light-title: #f9f6f0;  /* نص عنوان فاتح */
    
    --accent-gold: #c0aa86;      /* لون التمييز الفاخر */
    --accent-hover: #aa9370;
    
    --border-light: rgba(51, 48, 46, 0.08);
    --border-dark: rgba(192, 170, 134, 0.15);
    
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-dark-card: 0 12px 32px rgba(0, 0, 0, 0.25);
    --shadow-dark-hover: 0 20px 45px rgba(0, 0, 0, 0.4);
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --font-family: 'IBM Plex Sans Arabic', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ==========================================================================
   إعدادات الصفحة العامة (مع منع أي شريط تمرير أفقي على اللابتوب)
   ========================================================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--bg-main);
    color: var(--text-dark-title);
    font-family: var(--font-family);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

/* إصلاح إزاحة التمرير لمنع اختفاء عناوين الأقسام خلف الهيدر */
section, footer {
    scroll-margin-top: 90px;
    transition: filter 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* تأثير ضبابية خفيف وناعم على خلفية محتوى الصفحة عند فتح القائمة أو البحث */
body.menu-open section,
body.menu-open footer,
body.search-open section,
body.search-open footer {
    filter: blur(4px);
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* ==========================================================================
   شريط التنقل (Navbar)
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(249, 246, 240, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(51, 48, 46, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 12px;
}

.brand-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: nowrap;
}

/* تأثير المربع لروابط التصفح في اللابتوب */
.nav-link {
    font-size: 0.88rem; 
    font-weight: 600;
    color: var(--text-dark-title);
    position: relative;
    padding: 6px 12px;
    border-radius: 8px;
    transition: var(--transition);
    opacity: 0.85;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
    background-color: var(--accent-gold);
    color: #33302e;
    box-shadow: 0 4px 12px rgba(192, 170, 134, 0.25);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* زر البحث في شريط التنقل */
.search-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid rgba(51, 48, 46, 0.15);
    color: var(--text-dark-title);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #ffffff;
    transform: scale(1.05);
}

/* زر القائمة للشاشات الصغيرة والجوال (مُعدّل لمنع التشوهات والنقاط) */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    width: 28px;
    height: 24px;
    cursor: pointer;
    position: relative;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-btn span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: var(--text-dark-title);
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                top 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 0.2s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.mobile-menu-btn span:nth-child(1) {
    top: 3px;
}

.mobile-menu-btn span:nth-child(2) {
    top: 11px;
}

.mobile-menu-btn span:nth-child(3) {
    top: 19px;
}

/* حركة التفاعل عند فتح القائمة */
.mobile-menu-btn.active span:nth-child(1) {
    top: 11px;
    transform: rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    visibility: hidden;
}

.mobile-menu-btn.active span:nth-child(3) {
    top: 11px;
    transform: rotate(-45deg);
}

/* ==========================================================================
   نافذة البحث المباشر السريعة (Live Search Overlay)
   ========================================================================== */
.search-overlay {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 2000;
    background-color: rgba(51, 48, 46, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 90px 20px 30px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-modal {
    width: 100%;
    max-width: 720px;
    background-color: var(--bg-main);
    border-radius: 20px;
    border: 1px solid var(--accent-gold);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transform: translateY(-20px);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    max-height: 80vh;
}

.search-overlay.active .search-modal {
    transform: translateY(0);
}

.search-header {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    gap: 14px;
    border-bottom: 1px solid var(--border-light);
    background-color: #ffffff;
}

.search-input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    right: 14px;
    color: var(--text-dark-sub);
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 12px 46px 12px 40px;
    font-family: var(--font-family);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-dark-title);
    background-color: var(--bg-main);
    border: 1px solid rgba(51, 48, 46, 0.12);
    border-radius: 12px;
    outline: none;
    transition: var(--transition);
}

.search-input:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(192, 170, 134, 0.2);
}

.search-clear-btn {
    position: absolute;
    left: 12px;
    background: none;
    border: none;
    color: var(--text-dark-sub);
    cursor: pointer;
    display: none;
    padding: 4px;
}

.search-clear-btn:hover {
    color: var(--text-dark-title);
}

.search-close-btn {
    background-color: rgba(51, 48, 46, 0.08);
    border: none;
    padding: 10px 18px;
    border-radius: 10px;
    font-family: var(--font-family);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-dark-title);
    cursor: pointer;
    transition: var(--transition);
}

.search-close-btn:hover {
    background-color: var(--accent-gold);
    color: #ffffff;
}

.search-results-wrapper {
    overflow-y: auto;
    padding: 12px 16px;
    flex: 1;
}

.search-results-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.search-result-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 18px;
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(51, 48, 46, 0.06);
    cursor: pointer;
    transition: var(--transition);
}

.search-result-item:hover {
    background-color: var(--bg-secondary-sand);
    border-color: var(--accent-gold);
    transform: translateX(-4px);
}

.search-result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.search-badge {
    display: inline-block;
    padding: 3px 10px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #ffffff;
    background-color: var(--accent-gold);
    border-radius: 20px;
}

.search-item-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark-title);
}

.search-item-desc {
    font-size: 0.88rem;
    color: var(--text-dark-sub);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.search-match-text {
    background-color: rgba(192, 170, 134, 0.35);
    color: #000000;
    font-weight: bold;
    border-radius: 2px;
    padding: 0 2px;
}

.search-empty-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-dark-sub);
    font-size: 0.98rem;
    font-weight: 500;
}

.highlight-card {
    animation: highlightPulse 2s ease-in-out;
}

@keyframes highlightPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(192, 170, 134, 0.8);
        border-color: var(--accent-gold);
    }
    50% {
        box-shadow: 0 0 25px 6px rgba(192, 170, 134, 0.6);
        border-color: var(--accent-gold);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transform: scale(1);
    }
}

/* ==========================================================================
   القسم الرئيسي (Hero Section) - تم إصلاح الإزاحة للابتوب
   ========================================================================== */
.hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 130px 0 80px;
    position: relative;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

/* صورة الشاعر */
.hero-image-wrapper {
    flex: 0 1 420px;
    max-width: 420px;
    position: relative;
}

.hero-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border: none;
    outline: none;
    box-shadow: none;
    border-radius: 0;
    display: block;
    transition: var(--transition);
}

.hero-img:hover {
    transform: translateY(-3px);
}

/* محتوى النص */
.hero-content {
    flex: 1;
    text-align: right;
}

.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
    color: var(--text-dark-title);
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--text-dark-sub);
    margin-bottom: 35px;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    align-items: center;
}

.hero-social-links {
    display: flex;
    gap: 20px;
    margin-top: 26px;
    justify-content: flex-start;
    align-items: center;
}

.social-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
}

.social-icon svg {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-icon.instagram {
    background-color: rgba(155, 48, 130, 0.08);
    border: 1px solid rgba(155, 48, 130, 0.28);
    color: #9b3082;
}

.social-icon.instagram:hover {
    background-color: rgba(155, 48, 130, 0.18);
    border-color: rgba(155, 48, 130, 0.5);
    color: #82206d;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(155, 48, 130, 0.18);
}

.social-icon.youtube {
    background-color: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.28);
    color: #dc2626;
}

.social-icon.youtube:hover {
    background-color: rgba(220, 38, 38, 0.18);
    border-color: rgba(220, 38, 38, 0.5);
    color: #b91c1c;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.18);
}

.social-icon.facebook {
    background-color: rgba(24, 119, 242, 0.08);
    border: 1px solid rgba(24, 119, 242, 0.28);
    color: #1877f2;
}

.social-icon.facebook:hover {
    background-color: rgba(24, 119, 242, 0.18);
    border-color: rgba(24, 119, 242, 0.5);
    color: #0e62d4;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.18);
}

.social-icon:hover svg {
    transform: scale(1.12);
}

.scroll-hint-wrapper {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}

.scroll-hint-text {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-dark-sub);
    opacity: 0.8;
    transition: var(--transition);
    white-space: nowrap;
}

.btn {
    padding: 14px 34px;
    border-radius: 50px;
    font-size: 0.98rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background-color: var(--text-dark-title);
    color: var(--bg-main);
    border: 1px solid var(--text-dark-title);
}

.btn-primary:hover {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(192, 170, 134, 0.25);
}

/* ==========================================================================
   شبكة البطاقات العامة للأقسام (Content Grid & Cards)
   ========================================================================== */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.custom-card {
    background-color: #F9F6F0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(51, 48, 46, 0.12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    color: #000000;
}

.custom-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
    border-color: var(--accent-gold);
}

.card-image-wrapper {
    width: 100%;
    height: 220px;
    background-color: rgba(51, 48, 46, 0.04);
    position: relative;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.custom-card:hover .card-img {
    transform: scale(1.05);
}

.custom-card .card-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #000000;
    border-bottom: 1px solid rgba(51, 48, 46, 0.08);
    transition: var(--transition);
}

.custom-card:hover .card-image-placeholder {
    background-color: rgba(192, 170, 134, 0.12);
    transform: scale(1.02);
}

.card-content {
    padding: 28px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-item-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
    transition: var(--transition);
}

.custom-card:hover .card-item-title {
    color: var(--accent-hover);
}

.card-item-description {
    font-size: 1.02rem;
    font-weight: 600;
    color: #000000;
    line-height: 1.85;
    letter-spacing: 0.1px;
    text-align: right;
    word-wrap: break-word;
}

/* ==========================================================================
   محتوى "قريباً" للأقسام غير المتاحة
   ========================================================================== */
.coming-soon-content {
    text-align: center;
    padding: 40px 20px;
    margin: 0 auto;
}

.coming-soon-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark-title);
    margin-bottom: 10px;
}

.coming-soon-text {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark-sub);
}

.studies-section .coming-soon-title {
    color: #ffffff;
}

.studies-section .coming-soon-text {
    color: rgba(249, 246, 240, 0.85);
}

/* الأقسام المختلفة */
.diwans-section {
    padding: 110px 0 140px;
    background-color: var(--bg-dark-section);
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}

.diwans-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-light-title);
    letter-spacing: -0.5px;
    margin-bottom: 14px;
    text-align: center;
}

.poems-section {
    padding: 110px 0 140px;
    background-color: var(--bg-secondary-sand);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark-title);
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}

.title-line {
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
    margin: 0 auto;
    border-radius: 2px;
}

.shawakhis-section {
    padding: 110px 0 140px;
    background-color: #423b36;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.shawakhis-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
    text-align: center;
}

.video-section {
    padding: 110px 0 140px;
    background-color: var(--bg-main);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.video-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark-title);
    letter-spacing: -0.5px;
    margin-bottom: 14px;
    text-align: center;
}

.novels-section {
    padding: 110px 0 140px;
    background-color: var(--bg-dark-section);
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}

.novels-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-light-title);
    letter-spacing: -0.5px;
    margin-bottom: 14px;
    text-align: center;
}

.interviews-section {
    padding: 110px 0 140px;
    background-color: var(--bg-secondary-sand);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.interviews-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark-title);
    letter-spacing: -0.5px;
    margin-bottom: 14px;
    text-align: center;
}

.studies-section {
    padding: 110px 0 140px;
    background-color: #534b45;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.studies-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
    text-align: center;
}

/* ==========================================================================
   التذييل (Footer & Tech Text)
   ========================================================================== */
.site-footer {
    background-color: #202123;
    padding: 45px 0 50px;
    color: var(--text-light-title);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.copyright-text {
    text-align: center;
    font-size: 0.98rem;
    font-weight: 500;
    opacity: 0.85;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
    margin: 35px 0 45px;
}

.project-manager-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    text-align: right;
    margin-bottom: 30px;
}

.manager-info {
    flex: 1;
}

.manager-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.manager-subtitle {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 14px;
}

.manager-description {
    font-size: 1.08rem;
    font-weight: 400;
    color: rgba(249, 246, 240, 0.78);
    line-height: 1.8;
}

.manager-photo-wrapper {
    flex: 0 0 auto;
}

.manager-img {
    width: 220px;
    height: auto;
    object-fit: contain;
    display: block;
    border: none;
    outline: none;
    box-shadow: none;
    border-radius: 0;
}

.tech-text {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.92rem;
    color: rgba(249, 246, 240, 0.7);
    direction: ltr;
    font-weight: 500;
}

/* ==========================================================================
   حركات الظهور (Scroll Animations)
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   تنسيق الشاشات والمتجاوب (تغطية الجوال والآيباد واللابتوب بكفاءة)
   ========================================================================== */

/* تحويل الهيدر للقائمة المنسدلة عند الشاشات أقل من 1150px لشاشات اللابتوب الصغيرة */
@media (max-width: 1150px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 73px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 73px);
        background-color: rgba(249, 246, 240, 0.96);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
        border-top: 1px solid var(--border-light);
        z-index: 999;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        gap: 16px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 10px 24px;
    }
}

@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 36px;
    }

    .hero-image-wrapper {
        flex: none;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-content {
        text-align: center;
    }

    .hero-actions,
    .hero-social-links {
        justify-content: center;
    }

    .btn {
        width: 100%;
    }

    .section-title,
    .diwans-title,
    .shawakhis-title,
    .video-title,
    .novels-title,
    .interviews-title,
    .studies-title {
        font-size: 2.2rem;
    }

    .project-manager-wrapper {
        flex-direction: column-reverse;
        text-align: center;
        gap: 28px;
    }

    .manager-img {
        width: 180px;
        margin: 0 auto;
    }

    .manager-title {
        font-size: 1.8rem;
    }
}