/* Cascade DTP V4 - Style Sheet */
/* ==========================================
   JOURNAL OF ARTIFICIAL INTELLIGENCE AND MODERN TECHNOLOGY (JAIMT)
   Custom CSS for OJS Journal Website
   ========================================== */

/* ----- GLOBAL STYLES ----- */
body {
  font-family: "Open Sans", Arial, sans-serif;
  background-color: #f7f9fc;
  color: #333;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* ----- HEADER AREA WITH LOGO ----- */
#header {
  background: linear-gradient(90deg, #002b5c, #0059b3);
  color: #fff;
  padding: 15px 0;
  border-bottom: 5px solid #00bcd4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

#header .logo img {
  height: 70px;
  width: auto;
}

#header .title {
  text-align: left;
}

#header .title h1 {
  font-size: 26px;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#header .title h2 {
  font-size: 15px;
  font-weight: 400;
  color: #cce6ff;
  margin: 3px 0 0;
}

/* ----- NAVIGATION BAR ----- */
.navbar {
  background-color: #004080;
  text-align: center;
  padding: 10px 0;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.navbar a:hover {
  background-color: #00bcd4;
  border-radius: 4px;
}

/* ----- MAIN CONTAINER ----- */
.container {
  display: grid;
  grid-template-columns: 70% 28%;
  gap: 2%;
  width: 90%;
  max-width: 1200px;
  margin: 25px auto;
}

/* ----- MAIN CONTENT ----- */
.main-content {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

/* ----- ABOUT JOURNAL SECTION ----- */
.about-journal h2 {
  color: #004080;
  font-size: 22px;
  font-weight: 700;
  border-bottom: 2px solid #00bcd4;
  padding-bottom: 6px;
  margin-bottom: 15px;
}

.about-journal p {
  text-align: justify;
  color: #444;
}

/* ----- SIDEBAR ----- */
.sidebar {
  background-color: #e6f0ff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

/* ----- COVER IMAGE SECTION ----- */
.cover-section {
  text-align: center;
  margin-bottom: 20px;
}

.cover-section img {
  width: 100%;
  max-width: 250px;
  height: auto;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.cover-section h4 {
  font-size: 15px;
  font-weight: 700;
  color: #003366;
  margin-top: 10px;
}

/* ----- SIDEBAR MENU ----- */
.sidebar h3 {
  font-size: 18px;
  font-weight: 700;
  color: #003366;
  border-bottom: 2px solid #00bcd4;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar ul li {
  margin: 8px 0;
}

.sidebar ul li a {
  color: #004080;
  text-decoration: none;
  font-weight: 500;
}

.sidebar ul li a:hover {
  color: #00bcd4;
}

/* ----- BUTTONS AND LINKS ----- */
.button, .pkp_button {
  background-color: #00bcd4;
  color: #fff !important;
  border: none;
  border-radius: 5px;
  padding: 8px 14px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.button:hover, .pkp_button:hover {
  background-color: #0086a3;
}

/* ----- FOOTER ----- */
#footer {
  background-color: #00264d;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
  border-top: 4px solid #00bcd4;
  margin-top: 30px;
}

#footer a {
  color: #00bcd4;
  text-decoration: none;
}

#footer a:hover {
  text-decoration: underline;
}

/* ----- RESPONSIVE DESIGN ----- */
@media (max-width: 900px) {
  .container {
    grid-template-columns: 1fr;
  }

  #header {
    flex-direction: column;
    text-align: center;
  }

  #header .title h1 {
    font-size: 22px;
  }

  .cover-section img {
    max-width: 180px;
  }
}



body {background-color: rgb(255,255,255)}


