/*!
Theme Name: ABS
Theme URI: http://absshamim.com/
Author: absshamim.com
Author URI: http://absshamim.com/
Description: Description
Version: 1.2.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: abs
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

ABS is based on absshamim.com https://absshamim.com/, (C) 2012-2020 Automattic, Inc.
absshamim.com is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/


:root {
  --notice-bg: #1976d2;
  --notice-color: #ffffff;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.main-header {
  background: #24344d;
  color: white;
  padding: 10px 0;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.site-logo img {
  max-height: 60px;
}
.site-title {
  font-size: 24px;
  color: white;
  text-decoration: none;
}

.main-nav {
  flex-grow: 1;
  text-align: right;
}

.primary-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.primary-menu li {
  list-style: none;
}

.primary-menu li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.primary-menu li a:hover {
  color: #ffcc00;
}

.header-notice-wrapper {
  background-color: var(--notice-bg);
  color: var(--notice-color);
  text-align: center;
  padding: 10px;
}

.notice-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  font-size: 14px;
  line-height: 1.6;
}

/* Mobile Styles */
.mobile-menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  background-color: #24344d;
}
.mobile-menu.active {
  display: block;
}
.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-menu-list li a {
  display: block;
  padding: 12px;
  border-bottom: 1px solid #3c4d66;
  color: white;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}






