/* EMBLE Service End Notice - Static Site Styles */

:root {
  --primary-color: #1976d2;
  --warning-color: #dc3545;
  --warning-bg: #fff3cd;
  --warning-border: #ffc107;
  --text-primary: #333;
  --text-secondary: #666;
  --bg-light: #f8f9fa;
  --border-color: #e0e0e0;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: #f5f5f5;
  min-height: 100vh;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

/* Header */
.header {
  background-color: var(--warning-color);
  color: white;
  text-align: center;
  padding: 40px 20px;
}

.header-icon {
  font-size: 48px;
  margin-bottom: 10px;
}

.header h1 {
  font-size: 1.8rem;
  font-weight: bold;
}

/* Main content */
.main-content {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin: 20px auto;
  overflow: hidden;
}

.section {
  padding: 30px;
  border-bottom: 1px solid var(--border-color);
}

.section:last-child {
  border-bottom: none;
}

.section-alt {
  background-color: var(--bg-light);
}

.section h2 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.section p {
  margin-bottom: 15px;
  color: var(--text-secondary);
}

/* End date box */
.end-date-box {
  background: white;
  border-left: 4px solid var(--warning-color);
  padding: 20px;
  margin: 20px 0;
}

.end-date {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--warning-color);
}

/* Info box */
.info-box {
  background-color: #fef3f3;
  border: 1px solid var(--warning-color);
  border-radius: 6px;
  padding: 20px;
  margin: 20px 0;
}

.info-box-title {
  font-weight: bold;
  color: var(--warning-color);
  margin-bottom: 10px;
}

/* Contact section */
.contact-box {
  background-color: var(--bg-light);
  border-radius: 6px;
  padding: 20px;
  margin-top: 15px;
}

.contact-box p {
  margin-bottom: 8px;
}

.contact-box strong {
  color: var(--text-primary);
}

/* Footer message */
.footer-message {
  text-align: center;
  padding: 30px;
}

.footer-message p {
  margin-bottom: 10px;
}

.signature {
  margin-top: 30px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* Language switcher */
.lang-switch {
  text-align: right;
  padding: 15px 20px;
  background: white;
  border-bottom: 1px solid var(--border-color);
}

.lang-switch a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.9rem;
}

.lang-switch a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
  .header {
    padding: 30px 15px;
  }

  .header h1 {
    font-size: 1.4rem;
  }

  .section {
    padding: 20px 15px;
  }

  .end-date {
    font-size: 1.1rem;
  }

  .container {
    padding: 10px;
  }
}
