
/* AuraOnAI Landing Page Styles */

:root {
  --primary: #091838;
  --accent: #5CE1E6;
  --secondary: #7A5CFA;
  --background: #F6F7FA;
  --text-light: #FFFFFF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: var(--background);
  color: var(--primary);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 80px 20px;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 40px;
}

.hero-text {
  flex: 1;
  min-width: 300px;
}

.hero .logo {
  width: 260px;
  margin-bottom: 30px;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--text-light);
}

.hero .tagline {
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 24px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.btn {
  padding: 12px 24px;
  font-weight: bold;
  border-radius: 6px;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn.primary {
  background-color: var(--accent);
  color: var(--primary);
}

.btn.secondary {
  background-color: var(--secondary);
  color: white;
}

.btn.accent {
  background-color: var(--accent);
  color: var(--primary);
}

.btn:hover {
  opacity: 0.85;
}

.hero-image {
  flex: 1;
  text-align: center;
  min-width: 280px;
}

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

.product-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
  background-color: white;
}

.product {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  max-width: 400px;
  text-align: center;
}

.product img {
  max-width: 100px;
  margin-bottom: 20px;
}

.product h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.product ul {
  text-align: left;
  padding-left: 20px;
  margin-top: 10px;
  margin-bottom: 20px;
}

footer {
  background-color: var(--primary);
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

footer a {
  color: var(--accent);
}

/* Two Column Section: Why AuraonAI + Contact */

.info-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: var(--background);
  padding: 60px 20px;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.info-columns .column {
  flex: 1;
  min-width: 300px;
}

.info-columns h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--primary);
}

.info-columns ul {
  list-style: none;
  padding-left: 0;
}

.info-columns li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.info-columns form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-columns input,
.info-columns textarea {
  padding: 12px;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.info-columns button {
  background-color: var(--accent);
  color: var(--primary);
  padding: 12px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.info-columns .column:last-child {
  max-width: 500px;
  width: 100%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .info-columns {
    flex-direction: column;
    align-items: center;
  }

  .info-columns .column {
    max-width: 100%;
  }
}
