/*
 * ORLANTIS INC. simple website styles
 *
 * Inspired by minimalist product sites, this stylesheet aims for a clean,
 * modern look with plenty of white space and responsive layouts. A subtle
 * accent colour is used to highlight key actions and lists without
 * overwhelming the content. The design adapts gracefully to smaller
 * screens by stacking columns and reducing font sizes.
 */

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: #111;
  line-height: 1.5;
  background-color: #fafafa;
}

/* Navigation */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
}

.logo {
  font-weight: 700;
  font-size: 20px;
  color: #111;
}

.nav-links a {
  margin-left: 24px;
  text-decoration: none;
  color: #555;
  font-size: 16px;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #e60050;
}

/* Hero section */
.hero {
  max-width: 1200px;
  margin: 60px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 20px;
}

.hero-text {
  flex: 1 1 500px;
  padding-right: 40px;
}

.hero-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #333;
  font-weight: 700;
}

.hero-text p {
  font-size: 20px;
  margin-bottom: 30px;
  color: #555;
  max-width: 600px;
}

.cta {
  display: inline-block;
  background-color: #e60050;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.cta:hover {
  background-color: #cc0044;
}

.hero-image {
  flex: 1 1 400px;
  text-align: center;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Generic section styling */
.section {
  max-width: 1200px;
  margin: 80px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 20px;
}

/* Alternate sections reverse content for variety */
.section:nth-of-type(even) {
  flex-direction: row-reverse;
}

.section-content {
  flex: 1 1 500px;
  padding: 20px;
}

.section-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #333;
  font-weight: 700;
}

.section-content p {
  font-size: 18px;
  color: #555;
  margin-bottom: 16px;
}

.section-content ul {
  list-style: none;
  margin-bottom: 20px;
}

.section-content ul li {
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
  font-size: 18px;
  color: #444;
}

/* Custom bullet for lists */
.section-content ul li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  top: 0;
  color: #e60050;
  font-size: 20px;
  line-height: 1;
}

.section-image {
  flex: 1 1 400px;
  text-align: center;
}

.section-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Contact section */
.contact {
  background-color: #ffffff;
  padding: 40px 20px;
  margin-top: 80px;
}

.contact h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
  font-weight: 700;
}

.contact p {
  font-size: 18px;
  color: #555;
  margin-bottom: 10px;
}

.contact a {
  color: #e60050;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background-color: #f5f5f5;
  padding: 20px 10px;
  text-align: center;
  font-size: 14px;
  color: #777;
}

footer a {
  color: #555;
  margin: 0 8px;
  text-decoration: none;
  transition: color 0.2s ease;
}

footer a:hover {
  color: #e60050;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero {
    margin: 40px auto;
    flex-direction: column;
    text-align: center;
  }
  .hero-text {
    padding-right: 0;
  }
  .hero-text h1 {
    font-size: 36px;
  }
  .hero-text p {
    font-size: 18px;
  }
  .section {
    margin: 60px auto;
    flex-direction: column;
  }
  .section:nth-of-type(even) {
    flex-direction: column;
  }
  .section-content h2 {
    font-size: 28px;
  }
  .section-content p,
  .section-content ul li {
    font-size: 16px;
  }
}