/* =========================================================
   GLOBAL-EN.CSS
   Base layout and reusable styles for the English version
   ========================================================= */

body {
  font-family: Arial, sans-serif;
  background-color: #f5f0e1;
  color: #111;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ----------------- Links ----------------- */
a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

/* ----------------- Headings ----------------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

/* ----------------- Buttons ----------------- */
.button, .detail-back a {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  background: #fff176;
  color: #111;
  font-weight: bold;
  transition: all 0.3s ease;
}

.button:hover, .detail-back a:hover {
  background: #fdd835;
  transform: scale(1.05);
}

/* ----------------- Responsive ----------------- */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.2rem; }
}
#counter-box {
  position: fixed;
  bottom: 10px;
  left: 15px;
  background: rgba(255, 255, 255, 0.8);
  padding: 5px 10px;
  border-radius: 10px;
  font-size: 0.9rem;
  color: #111;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

