/* Global site styling for SDPJSS */
body {
  background-color: #ffffff;
  color: #202124;
  font-family: 'Product Sans', Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Logo styling */
.logo {
  text-align: center;
  font-size: 3rem;
  margin: 2rem 0;
}
.logo span:nth-child(1){color:#4285F4;} /* Blue */
.logo span:nth-child(2){color:#DB4437;} /* Red */
.logo span:nth-child(3){color:#F4B400;} /* Yellow */
.logo span:nth-child(4){color:#4285F4;} /* Blue */
.logo span:nth-child(5){color:#0F9D58;} /* Green */
.logo span:nth-child(6){color:#DB4437;} /* Red */

/* Content container */
.container {
  max-width: 900px;
  margin: auto;
  padding: 2rem;
  line-height: 1.6;
}

/* Language toggle */
.lang-toggle {
  text-align: center;
  margin-bottom: 1rem;
}
.lang-toggle a {
  margin: 0 0.5rem;
  color: #4285F4;
  text-decoration: none;
  font-weight: bold;
}
.lang-toggle a:hover {
  text-decoration: underline;
}

/* Search box */
.search-box {
  max-width: 600px;
  width: 100%;
  margin: 1rem auto;
}
.search-box input {
  background: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 25px;
  padding: 0.75rem 1rem;
  width: 100%;
  font-size: 1rem;
  box-shadow: 0 1px 6px rgba(32,33,36,0.28);
}

/* Buttons */
.buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.buttons button {
  background: #f8f9fa;
  border: 1px solid #f8f9fa;
  border-radius: 4px;
  padding: 0.5rem 1.25rem;
  cursor: pointer;
  font-size: 0.95rem;
}
.buttons button:hover {
  background: #f1f3f4;
  border-color: #dadce0;
}

/* Options links */
.options {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.85rem;
}
.options a {
  color: #5f6368;
  text-decoration: none;
}
.options a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #f2f2f2;
  border-top: 1px solid #dadce0;
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: #5f6368;
}
footer a {
  color: #5f6368;
  text-decoration: none;
  margin: 0 0.5rem;
}
footer a:hover {
  text-decoration: underline;
}

/* ------------------- Responsive Design ------------------- */

/* Tablets */
@media (max-width: 992px) {
  .logo { font-size: 2.5rem; }
  .container { padding: 1.5rem; }
  .buttons { flex-direction: column; align-items: center; }
  footer { flex-direction: column; align-items: center; text-align: center; }
}

/* Mobile phones */
@media (max-width: 576px) {
  .logo { font-size: 2rem; margin: 1rem 0; }
  .search-box input { font-size: 0.9rem; padding: 0.5rem 0.75rem; }
  .buttons button { font-size: 0.85rem; padding: 0.4rem 1rem; }
  .options { font-size: 0.8rem; gap: 0.5rem; }
  footer { font-size: 0.75rem; padding: 0.5rem; }
}
