/* Base styles for Supriety™ website */
/* Note: This CSS is minimal and aims for clarity and accessibility.
   It uses the brand purple (#6A0DAD) as the primary accent color.
*/

/* Reset some default margins and paddings */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fdfdff;
}

/* Navigation bar */
header {
  background-color: #6A0DAD;
  color: #fff;
  padding: 1rem;
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 1px;
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.75; }
  100% { opacity: 1; }
}

.nav-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
}

.nav-links a:hover,
.nav-links a:focus {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Hero section */
.hero {
  text-align: center;
  padding: 4rem 1rem 2.5rem;
  background: linear-gradient(180deg, #f7f2fc 0%, #fff 100%);
}

.hero h1 {
  font-size: 2.6rem;
  margin: 0;
  color: #6A0DAD;
}

.hero p {
  margin: 0.75rem 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.stats {
  font-weight: 600;
  margin-top: 1rem;
}

.cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn.primary {
  background-color: #6A0DAD;
  color: #fff;
}

.btn.primary:hover,
.btn.primary:focus {
  background-color: #580a8f;
}

.btn.secondary {
  background-color: #fff;
  color: #6A0DAD;
  border: 2px solid #6A0DAD;
}

.btn.secondary:hover,
.btn.secondary:focus {
  background-color: #6A0DAD;
  color: #fff;
}

.btn.tertiary {
  background-color: #f3eafc;
  color: #6A0DAD;
}

.btn.tertiary:hover,
.btn.tertiary:focus {
  background-color: #e4d5f9;
}

/* Card container for sneak peek or info lists */
.cards-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.card h3 {
  margin-top: 0;
  color: #6A0DAD;
}

/* Section headings */
section h2 {
  text-align: center;
  color: #6A0DAD;
  margin-bottom: 1rem;
}

/* Footer */
footer {
  background-color: #f4f0fa;
  padding: 1.5rem 1rem;
  color: #666;
  font-size: 0.9rem;
  text-align: center;
}

footer a {
  color: #6A0DAD;
  text-decoration: none;
}

footer a:hover,
footer a:focus {
  text-decoration: underline;
}