/* Base Styles */
:root {
  --primary-color: #6D4C9C;
  --secondary-color: #FF5E94;
  --accent-color: #56AB2F;
  --background-color: #F9F7FF;
  --text-color: #333333;
  --light-text: #FFFFFF;
  --dark-text: #222222;
  --border-radius: 12px;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

.cta-button {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--light-text);
  font-weight: 600;
  border-radius: 50px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  text-align: center;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  color: var(--light-text);
}

.cta-button.large {
  padding: 16px 36px;
  font-size: 1.2rem;
}

.cta-button.small {
  padding: 8px 20px;
  font-size: 0.9rem;
}

/* Header Styles */
header {
  background-color: #fff;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-svg {
  width: 40px;
  height: 40px;
}

.logo h1 {
  font-size: 1.5rem;
  margin-bottom: 0;
  color: var(--primary-color);
}

.logo h1 span {
  color: var(--secondary-color);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

nav a {
  font-weight: 500;
  padding: 5px;
}

/* Hero Section */
.hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  z-index: 1;
}

.hero h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--dark-text);
}

.hero-visual {
  position: relative;
}

.hero-svg {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

/* About Section */
.about {
  padding: 80px 0;
  background-color: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.about-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: var(--border-radius);
  transition: var(--transition);
  background-color: var(--background-color);
  box-shadow: var(--box-shadow);
}

.about-item:hover {
  transform: translateY(-10px);
}

.icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

/* Features Section */
.features {
  padding: 80px 0;
  background: linear-gradient(135deg, #E0C3FC, #8EC5FC);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature {
  background-color: #fff;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.feature:hover {
  transform: translateY(-5px);
}

.feature h3 {
  color: var(--primary-color);
}

/* Generator Section */
.generator {
  padding: 80px 0;
  background-color: #fff;
  text-align: center;
}

.cta-container {
  margin-top: 40px;
}

.cta-subtext {
  margin-top: 15px;
  font-style: italic;
  color: #666;
}

/* Footer */
footer {
  background-color: #2c2c2c;
  color: #fff;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo .logo-svg {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.footer-links h4,
.footer-contact h4 {
  color: #fff;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact p {
  margin-bottom: 20px;
  color: #ccc;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr;
  }
  
  .hero-content {
    text-align: center;
    order: 1;
  }
  
  .hero h2 {
    font-size: 2rem;
    text-align: center;
  }
  
  .hero-visual {
    order: 0;
    margin-bottom: 30px;
  }
  
  header .container {
    flex-direction: column;
    gap: 15px;
  }
  
  nav ul {
    gap: 15px;
  }
  
  .about-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero h2 {
    font-size: 1.8rem;
  }
  
  .cta-button.large {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}
