/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/* Mobile-first responsive styles */
.main-container {
  background: #f8f9fa;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
}

.logo-container {
  text-align: center;
  padding: 15px 0;
}

.logo-container img {
  height: 60px;
  width: auto;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.text-content {
  flex: 1;
  text-align: center;
  order: 2;
}

.main-heading {
  color: #2c3e50;
  font-size: 2.5em;
  font-weight: 800;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.main-description {
  font-size: 1.1em;
  color: #495057;
  line-height: 1.6;
  margin-bottom: 30px;
}

.quotes-section {
  margin-top: 30px;
}

.quote {
  font-size: 1em;
  color: #6c757d;
  margin: 10px 0;
  font-style: italic;
}

.coming-soon {
  margin-top: 40px;
  text-align: center;
}

.coming-soon p {
  font-size: 1.2em;
  color: #6c757d;
  font-style: italic;
  margin: 0;
}

.image-container {
  flex: 1;
  text-align: center;
  width: 100%;
  display: block;
  order: 1;
}

.image-container img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 15px;
  display: block;
  margin: 0 auto;
}

/* Tablet styles */
@media (min-width: 768px) {
  .logo-container {
    padding: 20px 0;
  }
  
  .logo-container img {
    height: 80px;
  }
  
  .content-wrapper {
    padding: 40px;
    gap: 50px;
  }
  
  .main-heading {
    font-size: 3.5em;
  }
  
  .main-description {
    font-size: 1.15em;
  }
  
  .image-container img {
    max-width: 450px;
  }
}

/* Desktop styles */
@media (min-width: 1024px) {
  .logo-container {
    padding: 20px 0;
  }
  
  .logo-container img {
    height: 100px;
  }
  
  .content-wrapper {
    flex-direction: row;
    padding: 60px;
    gap: 80px;
  }
  
  .text-content {
    text-align: left;
    order: 1;
  }
  
  .main-heading {
    font-size: 4em;
    margin-bottom: 30px;
  }
  
  .main-description {
    font-size: 1.2em;
    margin-bottom: 40px;
  }
  
  .quotes-section {
    margin-top: 40px;
  }
  
  .quote {
    font-size: 1.1em;
    margin: 15px 0;
  }
  
  .coming-soon {
    margin-top: 60px;
  }
  
  .coming-soon p {
    font-size: 1.3em;
  }
  
  .image-container {
    order: 2;
  }
  
  .image-container img {
    max-width: 500px;
  }
}