/* ==========================================
   التنسيقات الشاملة للهيدر والفوتر - جامعة البطانة
   ملف: albutana.css (OJS 3.3)
   تحديث: تصميم nav احترافي متطور
   ========================================== */

/* ------------------------------------------
   0. Import الخط العربي
   ------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800&display=swap');

/* ------------------------------------------
   1. إعدادات عامة للخطوط والهيكلة
   ------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

.custom-albutana-header,
.custom-albutana-header *,
.custom-ojs-footer,
.custom-ojs-footer * {
  font-family: 'Cairo', 'Segoe UI', Tahoma, sans-serif;
  box-sizing: border-box;
}

/* ------------------------------------------
   2. الشريط العلوي المؤسسي (Top Bar)
   ------------------------------------------ */
.albutana-top-bar {
  background-color: #040e18;
  color: #c59b27;
  padding: 7px 20px;
  font-size: 12.5px;
  font-weight: 600;
  border-bottom: 1px solid rgba(197, 155, 39, 0.15);
  width: 100%;
}

.albutana-top-bar-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.albutana-top-bar .university-title {
  width: 100%;
  text-align: center;
  color: #c59b27;
  letter-spacing: 0.5px;
}

/* ------------------------------------------
   3. الهيدر الرئيسي - الشعار
   ------------------------------------------ */
.pkp_structure_head,
.pkp_structure_head.custom-albutana-header {
  background: linear-gradient(135deg, #0a1f36 0%, #0d233a 60%, #0e2a44 100%) !important;
  border-bottom: 3px solid #c59b27 !important;
  padding: 0 !important;
  width: 100% !important;
  overflow-x: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* حاوية الشعار */
.custom-albutana-header .pkp_head_wrapper,
.custom-albutana-header .albutana-logo-area,
.custom-albutana-header .albutana-logo-container {
  width: 100% !important;
  max-width: 880px !important;
  display: block !important;
  margin: 0 auto !important;
  padding: 12px 0 !important;
  text-align: center !important;
}

.custom-albutana-header .albutana-logo-link,
.custom-albutana-header .albutana-logo-image {
  display: block !important;
  margin: 0 auto !important;
}

.custom-albutana-header .albutana-logo-image {
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center center !important;
  transition: opacity 0.3s ease;
}

.custom-albutana-header .albutana-logo-image:hover {
  opacity: 0.9;
}

/* ------------------------------------------
   4. شريط التنقل الرئيسي (Navigation Bar)
   ------------------------------------------ */
.custom-albutana-header .albutana-navigation {
  background: linear-gradient(90deg, #050e1a 0%, #081828 50%, #050e1a 100%) !important;
  border-top: 1px solid rgba(197, 155, 39, 0.25) !important;
  width: 100% !important;
  padding: 0 !important;
  position: relative;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.albutana-navigation-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  min-height: 54px;
  padding: 0 20px;
}

/* ============================================
   4.1 القائمة الرئيسية - Primary Menu
   ============================================ */
.albutana-primary-menu {
  display: flex;
  align-items: stretch;
}

/* القائمة الأفقية */
.albutana-navigation-primary {
  display: flex !important;
  flex-direction: row !important;
  list-style: none !important;
  align-items: stretch !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 0 !important;
}

/* عناصر القائمة الرئيسية */
.albutana-navigation-primary > li {
  display: flex !important;
  align-items: stretch !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative;
}

/* رابط القائمة الرئيسية */
.albutana-navigation-primary > li > a {
  color: #d4dde8 !important;
  font-weight: 600 !important;
  font-size: 13.5px !important;
  padding: 0 16px !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  white-space: nowrap !important;
  position: relative;
  letter-spacing: 0.3px;
  transition: color 0.25s ease, background-color 0.25s ease;
  border-bottom: 3px solid transparent;
}

/* خط سفلي متحرك عند التمرير */
.albutana-navigation-primary > li > a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  right: 16px;
  left: 16px;
  height: 3px;
  background: linear-gradient(90deg, #c59b27, #f0c040);
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px 2px 0 0;
}

.albutana-navigation-primary > li > a:hover,
.albutana-navigation-primary > li > a:focus {
  color: #c59b27 !important;
  background-color: rgba(197, 155, 39, 0.07) !important;
  outline: none;
}

.albutana-navigation-primary > li > a:hover::after,
.albutana-navigation-primary > li > a:focus::after {
  transform: scaleX(1);
}

/* العنصر النشط */
.albutana-navigation-primary > li.current > a,
.albutana-navigation-primary > li.active > a {
  color: #c59b27 !important;
  background-color: rgba(197, 155, 39, 0.1) !important;
}

.albutana-navigation-primary > li.current > a::after,
.albutana-navigation-primary > li.active > a::after {
  transform: scaleX(1);
}

/* ============================================
   4.2 القائمة المنسدلة (Dropdown) للمجلات
   ============================================ */

/* مؤشر السهم للعناصر التي لها قائمة فرعية */
.albutana-navigation-primary > li.has_children > a::before,
.albutana-navigation-primary > li > a[aria-haspopup="true"]::before {
  content: '▾';
  position: absolute;
  left: 5px;
  font-size: 10px;
  color: #c59b27;
  transition: transform 0.3s ease;
}

.albutana-navigation-primary > li.has_children:hover > a::before {
  transform: rotate(180deg);
}

/* القائمة المنسدلة */
.albutana-navigation-primary > li > ul,
.albutana-navigation-primary > li ul {
  position: absolute !important;
  top: 100% !important;
  right: 0 !important;
  left: auto !important;
  min-width: 220px !important;
  background: #0d233a !important;
  border: 1px solid rgba(197, 155, 39, 0.3) !important;
  border-top: 3px solid #c59b27 !important;
  border-radius: 0 0 8px 8px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 6px 0 !important;
  display: none !important;
  z-index: 9999 !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5) !important;
  animation: dropdownFadeIn 0.2s ease;
}

/* إظهار القائمة المنسدلة عند التمرير */
.albutana-navigation-primary > li:hover > ul,
.albutana-navigation-primary > li:focus-within > ul {
  display: block !important;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* عناصر القائمة المنسدلة */
.albutana-navigation-primary > li > ul > li,
.albutana-navigation-primary > li ul > li {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.albutana-navigation-primary > li > ul > li:last-child,
.albutana-navigation-primary > li ul > li:last-child {
  border-bottom: none !important;
}

/* روابط القائمة المنسدلة */
.albutana-navigation-primary > li > ul > li > a,
.albutana-navigation-primary > li ul > li > a {
  display: flex !important;
  align-items: center !important;
  padding: 10px 18px !important;
  color: #c8d6e3 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transition: all 0.2s ease !important;
  border-right: 3px solid transparent !important;
}

.albutana-navigation-primary > li > ul > li > a:hover,
.albutana-navigation-primary > li ul > li > a:hover {
  color: #c59b27 !important;
  background-color: rgba(197, 155, 39, 0.1) !important;
  border-right-color: #c59b27 !important;
  padding-right: 22px !important;
}

/* ============================================
   4.3 قائمة المجلات المتعددة (Multi-Journal Dropdown)
   ============================================ */
.albutana-journals-dropdown {
  position: relative;
  display: flex;
  align-items: stretch;
}

.albutana-journals-btn {
  color: #d4dde8 !important;
  font-weight: 600 !important;
  font-size: 13.5px !important;
  padding: 0 16px !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  white-space: nowrap !important;
  cursor: pointer;
  background: none;
  border: none;
  position: relative;
  transition: color 0.25s ease, background-color 0.25s ease;
  letter-spacing: 0.3px;
  border-bottom: 3px solid transparent;
}

.albutana-journals-btn:hover,
.albutana-journals-dropdown:hover .albutana-journals-btn {
  color: #c59b27 !important;
  background-color: rgba(197, 155, 39, 0.07) !important;
}

.albutana-journals-btn .btn-arrow {
  font-size: 10px;
  color: #c59b27;
  transition: transform 0.3s ease;
  display: inline-block;
}

.albutana-journals-dropdown:hover .btn-arrow {
  transform: rotate(180deg);
}

/* لوحة قائمة المجلات */
.albutana-journals-panel {
  position: absolute;
  top: 100%;
  right: 0;
  left: auto;
  min-width: 280px;
  background: #0d233a;
  border: 1px solid rgba(197, 155, 39, 0.3);
  border-top: 3px solid #c59b27;
  border-radius: 0 0 10px 10px;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  display: none;
  z-index: 9999;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.55);
}

.albutana-journals-dropdown:hover .albutana-journals-panel,
.albutana-journals-dropdown:focus-within .albutana-journals-panel,
.albutana-journals-panel.is-open {
  display: block;
  animation: dropdownFadeIn 0.2s ease;
}

/* عنوان اللوحة */
.albutana-journals-panel .panel-header {
  padding: 8px 16px 10px;
  font-size: 11px;
  font-weight: 700;
  color: #c59b27;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(197, 155, 39, 0.2);
  margin-bottom: 4px;
}

/* عنصر مجلة واحدة */
.albutana-journals-panel li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.albutana-journals-panel li:last-child {
  border-bottom: none;
}

.albutana-journals-panel li a {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 11px 16px !important;
  color: #c8d6e3 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  border-right: 3px solid transparent !important;
}

.albutana-journals-panel li a:hover {
  color: #c59b27 !important;
  background-color: rgba(197, 155, 39, 0.1) !important;
  border-right-color: #c59b27 !important;
}

/* أيقونة المجلة */
.albutana-journals-panel li a .journal-icon {
  width: 32px;
  height: 32px;
  background: rgba(197, 155, 39, 0.15);
  border: 1px solid rgba(197, 155, 39, 0.3);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  color: #c59b27;
  transition: background 0.2s ease;
}

.albutana-journals-panel li a:hover .journal-icon {
  background: rgba(197, 155, 39, 0.25);
}

.albutana-journals-panel li a .journal-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.albutana-journals-panel li a .journal-name {
  font-weight: 600;
  font-size: 13px;
  color: inherit;
}

.albutana-journals-panel li a .journal-abbr {
  font-size: 11px;
  color: #7a95ab;
}

/* ============================================
   4.4 العناصر الجانبية (بحث، مستخدم، لغة)
   ============================================ */
.albutana-nav-right-items {
  display: flex !important;
  align-items: stretch !important;
  flex-direction: row !important;
  margin: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
}

/* قائمة المستخدم أفقياً */
.albutana-navigation-user {
  display: flex !important;
  flex-direction: row !important;
  list-style: none !important;
  align-items: stretch !important;
  margin: 0 !important;
  padding: 0 !important;
}

.albutana-navigation-user > li {
  display: flex !important;
  align-items: stretch !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative;
}

.albutana-navigation-user > li > a {
  color: #b0c4d4 !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  padding: 0 14px !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  gap: 5px !important;
  transition: color 0.25s ease, background-color 0.25s ease;
  white-space: nowrap !important;
}

.albutana-navigation-user > li > a:hover {
  color: #c59b27 !important;
  background-color: rgba(197, 155, 39, 0.07) !important;
}

/* رابط البحث */
.albutana-search {
  display: flex !important;
  align-items: stretch !important;
}

.albutana-search-link {
  color: #b0c4d4 !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  padding: 0 14px !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  transition: color 0.25s ease, background-color 0.25s ease;
  white-space: nowrap !important;
  border-right: 1px solid rgba(255,255,255,0.07);
}

.albutana-search-link:hover {
  color: #c59b27 !important;
  background-color: rgba(197, 155, 39, 0.07) !important;
}

.albutana-search-link .fa-search {
  font-size: 12px;
}

/* ============================================
   4.5 اختيار اللغة (Language Switcher)
   ============================================ */
.albutana-lang-toggle {
  display: flex !important;
  align-items: center !important;
  padding: 0 12px !important;
  border-right: 1px solid rgba(255,255,255,0.07) !important;
}

.albutana-lang-toggle .pkp_block_language {
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
}

.albutana-lang-toggle select,
.albutana-lang-toggle .select-menu {
  background-color: rgba(13, 35, 58, 0.8) !important;
  color: #c8d6e3 !important;
  border: 1px solid rgba(197, 155, 39, 0.35) !important;
  padding: 5px 10px 5px 28px !important;
  border-radius: 5px !important;
  font-size: 12.5px !important;
  cursor: pointer !important;
  display: inline-block !important;
  font-family: 'Cairo', sans-serif !important;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23c59b27'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: left 8px center !important;
}

.albutana-lang-toggle select:hover,
.albutana-lang-toggle select:focus {
  border-color: #c59b27 !important;
  background-color: rgba(13, 35, 58, 1) !important;
  outline: none !important;
}

/* ============================================
   4.6 فاصل عمودي بين عناصر الـ Nav
   ============================================ */
.nav-divider {
  width: 1px;
  background: rgba(255,255,255,0.07);
  margin: 12px 0;
  flex-shrink: 0;
}

/* ============================================
   4.7 زر تسجيل الدخول (CTA Button)
   ============================================ */
.albutana-navigation-user > li.login-btn > a,
.albutana-nav-login-btn {
  background: linear-gradient(135deg, #c59b27, #dbb840) !important;
  color: #0d233a !important;
  font-weight: 700 !important;
  padding: 8px 16px !important;
  border-radius: 5px !important;
  margin: auto 12px !important;
  font-size: 13px !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 2px 8px rgba(197, 155, 39, 0.3) !important;
}

.albutana-navigation-user > li.login-btn > a:hover,
.albutana-nav-login-btn:hover {
  background: linear-gradient(135deg, #dbb840, #f0cc55) !important;
  box-shadow: 0 4px 15px rgba(197, 155, 39, 0.5) !important;
  transform: translateY(-1px) !important;
  color: #0d233a !important;
}

/* ============================================
   5. زر القائمة المتجاوبة (Hamburger)
   ============================================ */
.albutana-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  background: none;
  border: 1px solid rgba(197, 155, 39, 0.3);
  border-radius: 6px;
  padding: 8px;
  transition: all 0.2s ease;
  margin: auto 0;
}

.albutana-hamburger:hover {
  border-color: #c59b27;
  background: rgba(197, 155, 39, 0.1);
}

.albutana-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #c8d6e3;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.albutana-hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: #c59b27;
}
.albutana-hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.albutana-hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: #c59b27;
}

/* ------------------------------------------
   6. إخفاء الشريط الجانبي وتوسيع المحتوى
   ------------------------------------------ */
.pkp_structure_sidebar {
  display: none !important;
}

.pkp_structure_content.has_sidebar,
.pkp_structure_content {
  display: block !important;
  max-width: 1300px !important;
  margin: 35px auto !important;
  padding: 0 24px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.pkp_structure_main {
  width: 100% !important;
  float: none !important;
}

/* ------------------------------------------
   7. الفوتر المخصص (Custom Footer)
   ------------------------------------------ */
.custom-ojs-footer {
  background: linear-gradient(180deg, #0a1f36 0%, #0d233a 100%) !important;
  color: #e0e6ed !important;
  padding: 50px 30px 24px !important;
  margin-top: 60px !important;
  width: 100% !important;
  direction: rtl !important;
  text-align: right !important;
  border-top: 4px solid #c59b27 !important;
}

.custom-ojs-footer .footer-container {
  max-width: 1300px !important;
  margin: 0 auto !important;
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: space-between !important;
  gap: 35px !important;
}

.custom-ojs-footer .footer-col {
  flex: 1 1 220px !important;
  min-width: 200px !important;
}

.custom-ojs-footer .footer-col h3 {
  color: #ffffff !important;
  font-size: 15.5px !important;
  font-weight: 700 !important;
  margin-bottom: 14px !important;
  padding-bottom: 8px !important;
  border-bottom: 2px solid #c59b27 !important;
}

.custom-ojs-footer .footer-col p,
.custom-ojs-footer .footer-col ul li a {
  color: #96afc0 !important;
  font-size: 13.5px !important;
  line-height: 1.85 !important;
  text-decoration: none !important;
}

.custom-ojs-footer .footer-col ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.custom-ojs-footer .footer-col ul li {
  margin-bottom: 7px !important;
}

.custom-ojs-footer .footer-col ul li a:hover {
  color: #c59b27 !important;
  padding-right: 5px !important;
  transition: all 0.2s ease !important;
}

.custom-ojs-footer .issn-badge {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(197, 155, 39, 0.4) !important;
  padding: 8px 14px !important;
  border-radius: 6px !important;
  margin-top: 12px !important;
  display: inline-block !important;
  direction: ltr !important;
  font-size: 12.5px !important;
  color: #c59b27 !important;
}

.custom-ojs-footer .footer-bottom {
  max-width: 1300px !important;
  margin: 35px auto 0 !important;
  padding-top: 18px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  text-align: center !important;
  font-size: 13px !important;
  color: #7a95ab !important;
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 8px 20px !important;
}

.custom-ojs-footer .footer-bottom a {
  color: #c59b27 !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.custom-ojs-footer .footer-bottom a:hover {
  color: #ffffff !important;
}

/* ------------------------------------------
   8. pkp_nav_list من OJS (override موحد)
   ------------------------------------------ */
.pkp_nav_list {
  display: flex !important;
  flex-direction: row !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ------------------------------------------
   9. التصميم المتجاوب (Responsive)
   ------------------------------------------ */
@media (max-width: 900px) {
  .custom-albutana-header .pkp_head_wrapper,
  .custom-albutana-header .albutana-logo-area,
  .custom-albutana-header .albutana-logo-container,
  .custom-albutana-header .albutana-logo-link,
  .custom-albutana-header .albutana-logo-image {
    max-width: 100% !important;
  }
}

@media (max-width: 768px) {
  /* إظهار زر الهامبرغر */
  .albutana-hamburger {
    display: flex;
  }

  /* إخفاء عناصر الـ Nav الرئيسية */
  .albutana-primary-menu,
  .albutana-nav-right-items {
    display: none !important;
  }

  /* الـ Nav في الشاشات الصغيرة */
  .albutana-navigation-inner {
    justify-content: space-between;
    padding: 0 15px;
    min-height: 52px;
  }

  /* القائمة المتجاوبة المفتوحة */
  .albutana-navigation.mobile-open .albutana-primary-menu,
  .albutana-navigation.mobile-open .albutana-nav-right-items {
    display: flex !important;
  }

  .albutana-navigation.mobile-open .albutana-primary-menu {
    width: 100%;
    order: 2;
  }

  .albutana-navigation.mobile-open .albutana-nav-right-items {
    width: 100%;
    order: 3;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 0 10px 0 !important;
  }

  .albutana-navigation.mobile-open .albutana-navigation-inner {
    flex-wrap: wrap;
    padding-bottom: 10px;
  }

  .albutana-hamburger {
    order: 1;
    margin-right: auto;
  }

  .albutana-navigation-primary {
    flex-direction: column !important;
    width: 100%;
    padding: 5px 0 !important;
    border-top: 1px solid rgba(197, 155, 39, 0.15) !important;
  }

  .albutana-navigation-primary > li {
    display: block !important;
    align-items: unset !important;
  }

  .albutana-navigation-primary > li > a {
    padding: 12px 16px !important;
    font-size: 14px !important;
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
    border-right: none !important;
  }

  .albutana-navigation-primary > li > a::after {
    display: none !important;
  }

  /* القائمة المنسدلة في الموبايل */
  .albutana-navigation-primary > li > ul {
    position: static !important;
    box-shadow: none !important;
    border: none !important;
    border-right: 3px solid #c59b27 !important;
    border-top: none !important;
    background: rgba(0,0,0,0.2) !important;
    border-radius: 0 !important;
    display: none !important;
  }

  .albutana-navigation-primary > li.open > ul {
    display: block !important;
  }

  .albutana-navigation-user {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
  }

  .albutana-navigation-user > li > a {
    padding: 8px 12px !important;
    font-size: 13px !important;
  }

  /* الفوتر */
  .custom-ojs-footer {
    padding: 30px 15px 15px !important;
  }

  .custom-ojs-footer .footer-container {
    flex-direction: column !important;
    gap: 20px !important;
  }

  .custom-ojs-footer .footer-col {
    min-width: 100% !important;
  }

  .custom-ojs-footer .footer-bottom {
    flex-direction: column !important;
    gap: 6px !important;
  }
}

@media (max-width: 480px) {
  .albutana-navigation-primary > li > a {
    font-size: 13.5px !important;
    padding: 11px 14px !important;
  }

  .albutana-top-bar {
    font-size: 11.5px;
    padding: 5px 12px;
  }
}
