/* desktop-style.css */

body, html, .site, .page, main, footer {
  background-color: #ffffff !important;
  box-shadow: none !important;
  border: none !important;
  margin: 0;
  padding: 0;
}

.aiwja-header {
  background-color: #fdf2e6;
  padding: 0;
  border-bottom: 1px solid #ccc;
  position: relative;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  padding: 0 20px;
}

.logo-title-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  width: 100%;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.aiwja-logo {
  height: 220px;
  width: auto;
}

.title-and-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.mini-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 8px;
}

.mini-link {
  font-size: 14px;
  color: #1a237e;
  text-decoration: none;
  font-weight: 600;
}

.mini-link:hover {
  text-decoration: underline;
}

.site-title {
  font-size: 32px;
  font-weight: bold;
  color: #000;
  text-transform: uppercase;
}

.header-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

@keyframes blink-join {
  0%, 100% {
    background-color: #f44336;
    color: white;
  }
  50% {
    background-color: transparent;
    color: #f44336;
    border: 2px solid #f44336;
  }
}

.btn-join {
  background-color: #f44336;
  color: white;
  padding: 10px 16px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s ease;
  animation: blink-join 1.2s infinite;
}

.btn-donate {
  background-color: #4CAF50;
  color: white;
  padding: 10px 16px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.btn-donate:hover {
  background-color: #388E3C;
}

.header-search {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
}

.header-search form {
  display: flex;
}

.header-search input[type="search"] {
  padding: 8px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px 0 0 4px;
  outline: none;
  width: 180px;
}

.header-search input[type="submit"] {
  padding: 8px 14px;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

.header-search input[type="submit"]:hover {
  background-color: #555;
}

.aiwja-submenu {
  background-color: #000;
  padding: 10px 0;
}

.submenu-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.submenu-container a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  padding: 5px 10px;
  transition: color 0.3s;
}

.submenu-container a:hover {
  color: #ffd700;
}

main.main-home {
  background: #ffffff;
  padding: 40px 20px;
  text-align: center;
}
.a-content-box {
  background: #ffffff;
  padding: 30px;
  max-width: 900px;
  margin: 40px auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  font-family: 'Roboto', sans-serif;
  line-height: 1.7;
  font-size: 16px;
}

.a-content-box h1 {
  font-size: 28px;
  font-weight: bold;
  color: #0056b3;
  margin-bottom: 10px;
}
/* Universal clean layout for all inside pages */
.a-layout-wrapper {
  background: #ffffff;
  padding: 40px 30px;
  max-width: 960px;
  margin: 50px auto;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  font-family: 'Roboto', sans-serif;
}

.a-layout-wrapper h1 {
  font-size: 32px;
  font-weight: bold;
  color: #1a237e;
  margin-bottom: 20px;
  border-bottom: 2px solid #ddd;
  padding-bottom: 8px;
}

.a-layout-wrapper h2 {
  color: #004ba0;
  font-size: 22px;
  margin-top: 30px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
}

.a-layout-wrapper p {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
}

body.page,
body.single,
body.category,
body.archive {
  background-color: #f5f5f5;
}
