/* Import Latin Modern (Computer Modern clone) fonts */
@import url('../assets/external/cdn.jsdelivr.net/gh/sugina-dev/latin-modern-web@1.0.1/style/latinmodern-roman.css');

/* Landing page specific styles */
.landing-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-image: url('../assets/background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  font-family: 'Latin Modern Roman', 'Computer Modern', Georgia, serif;
}

/* Central white div */
/* .landing-content {
  background-color: #ffffffff;
  max-width: 850px;
  width: 100%;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  text-align: center;
} */

/* Logo styling */
.landing-logo {
  max-width: 300px;
  width: 100%;
  height: auto;
  margin: 0 auto 3rem;
  display: block;
}

/* Override default MkDocs styles for landing page */
.landing-container .md-typeset {
  font-size: 1.1rem;
  line-height: 1.6;
}

.landing-container h1 {
  font-family: 'Latin Modern Roman', 'Computer Modern', Georgia, serif;
  font-weight: normal;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.landing-container h2 {
  font-family: 'Latin Modern Roman', 'Computer Modern', Georgia, serif;
  font-weight: normal;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #444;
}

.landing-container p {
  font-family: 'Latin Modern Roman', 'Computer Modern', Georgia, serif;
  margin-bottom: 1.5rem;
  color: #555;
}

/* Style the enter-left divs from index.md */
.landing-container .enter-left {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 2rem;
  margin: 2rem 0;
  text-align: left;
  opacity: 1;
  transform: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.landing-container .call-to-action {
  text-align: center;
  margin: 1rem 0;
}

.landing-container h1.call-to-action {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.landing-container p.call-to-action {
  font-size: 1.1rem;
  color: #7f8c8d;
  opacity: 1;
  font-weight: normal;
}

/* Button styling */
.landing-container .md-button {
  background-color: #2196F3;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
  transition: background-color 0.3s ease;
  font-family: 'Latin Modern Roman', 'Computer Modern', Georgia, serif;
}

.landing-container .md-button:hover {
  background-color: #1976D2;
}

.landing-container .md-button.right {
  float: right;
  margin-top: 0;
  opacity: 1;
}

/* Responsive design */
@media (max-width: 768px) {
  .landing-content {
    padding: 2rem;
  }

  .landing-logo {
    max-width: 200px;
  }

  .landing-container h1 {
    font-size: 2rem;
  }

  .landing-container .enter-left {
    padding: 1.5rem;
    margin: 1rem 0;
  }
}

/* Dark mode support */
[data-md-color-scheme="slate"] .landing-content {
  background-color: #2d2d2d;
  color: #e0e0e0;
}

[data-md-color-scheme="slate"] .landing-container h1,
[data-md-color-scheme="slate"] .landing-container h2 {
  color: #e0e0e0;
}

[data-md-color-scheme="slate"] .landing-container p {
  color: #b0b0b0;
}

[data-md-color-scheme="slate"] .landing-container .enter-left {
  background-color: #1f1f1f;
  border-color: #3a3a3a;
}

[data-md-color-scheme="slate"] .landing-container h1.call-to-action {
  color: #e0e0e0;
}

[data-md-color-scheme="slate"] .landing-container p.call-to-action {
  color: #a0a0a0;
}