/* time.css | For Montero Nava Time Apps */

@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;700&display=swap');

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Rubik', sans-serif;
  background-color: #f4f4f9;
  color: #222;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Clock Wrapper */
.center-wrapper {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
}

/* Clock Display */
.clock {
  font-size: clamp(2.5rem, 10vw, 5rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #333;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  animation: none !important; /* Disable pulse */
}

/* Label and Date */
.zone-label {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #666;
}

.date {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #666;
}

/* Buttons */
.toggle-format, .toggle-clock {
  margin-top: 1rem;
  font-size: 0.9rem;
  background: #c8a2c8;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
  display: inline-block;
  margin-right: 0.5rem;
}

.toggle-format:hover, .toggle-clock:hover {
  background: #b28cb2;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background-color: #ffffff;
  font-size: 1rem;
  border-top: 1px solid #e0e0e0;
  flex-shrink: 0;
}

footer a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

footer a:hover {
  color: #c8a2c8;
  font-weight: bold;
}