/* General Page Styling */
body {
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #fff;
  font-family: "Aptos", Arial, sans-serif;
  font-size: 12px;
  display: flex;
  height: 100vh;
}

/* Left Menu Panel */
.sidebar {
  width: 20%;
  background-color: #111;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: 250px;
  height: auto;
  margin-bottom: 30px;
}
.logo2 {
  width: 250px;
  height: auto;
  margin-bottom: 30px;
  text-align: center;
  
}/* =========================================================
   GLOBAL STYLING
   ========================================================= */
body {
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #fff;
  font-family: "Aptos", Arial, sans-serif;
  font-size: 12px;
  display: flex;
  min-height: 100vh;
  flex-direction: row; /* Desktop default */
}

/* =========================================================
   SIDEBAR (LEFT MENU)
   ========================================================= */
.sidebar {
  width: 20%;
  background-color: #111;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo,
.logo2 {
  width: 250px;
  height: auto;
  margin-bottom: 30px;
  text-align: center;
}

/* =========================================================
   MENU LINKS
   ========================================================= */
.menu {
  width: 100%;
}

.menu a,
.menu a2 {
  display: block;
  color: #fff;
  text-decoration: none;
  font-family: "Constantia", serif;
  font-size: 16px;
  padding: 10px 0;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #ffcc00;
}

/* Submenu */
.submenu {
  padding-left: 15px;
  margin-top: 5px;
}

.submenu a {
  font-size: 14px;
  color: #ccc;
}

.submenu a:hover {
  color: #ffcc00;
}

/* =========================================================
   CONTENT AREA (RIGHT SIDE)
   ========================================================= */
.content {
  width: 80%;
  max-width: 80%;
  margin-right: 10%;
  margin-top: 3%;
  padding: 30px;
  box-sizing: border-box;
}

.content h1 {
  font-family: "Constantia", serif;
  font-size: 16px;
  margin-bottom: 15px;
}

.content p {
  font-family: "Aptos", Arial, sans-serif;
  font-size: 12px;
  line-height: 1.5;
  margin-left: 40px;
}

.content p2 {
  font-family: "Aptos", Arial, sans-serif;
  font-size: 10px;
  line-height: 1.5;
  margin-left: 40px;
  text-indent: 40px;
}

/* =========================================================
   RESPONSIVE DESIGN
   ========================================================= */

/* --- Small screens (tablets, large phones) --- */
@media (max-width: 1024px) {
  body {
    flex-direction: column; /* Stack sidebar on top */
  }

  .sidebar {
    width: 100%;
    padding: 15px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  /* Logo smaller on tablets */
  .logo, .logo2 {
    width: 180px;
    margin-bottom: 0;
  }

  /* Menu switches to horizontal layout */
  .menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .menu a,
  .menu a2 {
    padding: 8px 12px;
    font-size: 14px;
  }

  /* Content area full width */
  .content {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 20px;
  }

  .content p {
    margin-left: 20px;
  }
}

/* --- Extra small screens (phones under 600px) --- */
@media (max-width: 600px) {
  body {
    font-size: 14px;
  }

  .sidebar {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo,
  .logo2 {
    width: 140px;
    margin-bottom: 10px;
  }

  /* Menu stacks vertically on phones */
  .menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
  }

  .menu a,
  .menu a2 {
    font-size: 14px;
    padding: 8px 0;
    width: 100%;
  }

  /* Content padding reduced for small screens */
  .content {
    padding: 15px;
  }

  .content p,
  .content p2 {
    margin-left: 10px;
    font-size: 13px;
  }
}

/* Navigation Links */
.menu {
  width: 100%;
}

.menu a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-family: "Constantia", serif;
  font-size: 16px;
  padding: 10px 0;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #ffcc00;
}

/* Custom tag <a2> for non-clickable headers */
.menu a2 {
  display: block;
  color: #fff;
  text-decoration: none;
  font-family: "Constantia", serif;
  font-size: 16px;
  padding: 10px 0;
  transition: color 0.3s ease;
}

/* Subheader Menu Styling */
.submenu {
  padding-left: 15px;
  margin-top: 5px;
}

.submenu a {
  font-size: 14px;
  color: #ccc;
}

.submenu a:hover {
  color: #ffcc00;
}

/* Right Content Area */
.content {
  width: 80%;
  max-width: 80%;
  margin-right: 10%; 
  margin-top:3%;
  padding: 30px;
  box-sizing: border-box;
}

.content h1 {
  font-family: "Constantia", serif;
  font-size: 16px;
  margin-bottom: 15px;
}

.content p {
  font-family: "Aptos", Arial, sans-serif;
  font-size: 12px;
  line-height: 1.5;
  margin-left: 40px;
}
.content p2 {
  font-family: "Aptos", Arial, sans-serif;
  font-size: 10px;
  line-height: 1.5;
  margin-left: 40px;
text-indent: 40px;

}