/* Main stylesheet for crushon-ai.site */
:root {
  --primary: #ff4d6d;
  --primary-dark: #c9184a;
  --secondary: #590d22;
  --light: #ffccd5;
  --dark: #1a1a2e;
  --text: #333333;
  --background: #fff0f3;
  --card-bg: #ffffff;
  --gradient: linear-gradient(45deg, var(--primary-dark), var(--primary));
  --shadow: 0 5px 20px rgba(201, 24, 74, 0.2);
  --border-radius: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
}

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

.section {
  padding: 80px 0;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
}

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

a:hover {
  color: var(--primary-dark);
}

.btn {
  display: inline-block;
  background: var(--gradient);
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  box-shadow: var(--shadow);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201, 24, 74, 0.3);
  color: white;
}

/* Header */
.header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

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

.logo-icon {
  width: 35px;
  height: 35px;
}

.logo-text {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-dark);
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-link {
  font-weight: 600;
  font-size: 15px;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary-dark);
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 160px 0 100px;
  background-color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--light);
  top: -300px;
  right: -200px;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-text {
  max-width: 550px;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 25px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #666;
  line-height: 1.7;
}

.hero-image {
  flex: 0 0 45%;
  position: relative;
}

.shape {
  position: absolute;
  z-index: -1;
}

.shape-1 {
  top: -50px;
  right: 0;
}

.shape-2 {
  bottom: -30px;
  left: -20px;
}

/* Features Section */
.features {
  background-color: white;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-dark);
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
}

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

.feature-card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 25px;
  color: var(--primary);
}

.feature-title {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

/* How It Works Section */
.how-it-works {
  background-color: var(--background);
  position: relative;
  overflow: hidden;
}

.how-it-works::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-color: rgba(255, 77, 109, 0.1);
  bottom: -200px;
  left: -200px;
  z-index: 0;
}

.steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.step {
  flex: 0 0 30%;
  text-align: center;
  padding: 20px;
  position: relative;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 auto 20px;
}

.step-title {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 25px;
  right: -15%;
  width: 30%;
  height: 2px;
  background: var(--light);
}

/* Testimonials Section */
.testimonials {
  background-color: white;
  text-align: center;
}

.testimonial {
  max-width: 700px;
  margin: 0 auto;
  padding: 30px;
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 20px;
  color: #555;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-dark);
}

/* CTA Section */
.cta {
  background: var(--gradient);
  color: white;
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta::before,
.cta::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}

.cta::before {
  top: -150px;
  right: -100px;
}

.cta::after {
  bottom: -150px;
  left: -100px;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta-btn:hover {
  color: var(--primary-dark);
}

/* Footer */
.footer {
  background-color: var(--dark);
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-info .logo {
  margin-bottom: 20px;
}

.footer-info p {
  opacity: 0.8;
  margin-bottom: 25px;
}

.footer-info .logo-text {
  color: white;
}

.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .hero-image {
    order: -1;
  }
  
  .steps {
    flex-direction: column;
    gap: 40px;
  }
  
  .step {
    flex: 0 0 100%;
  }
  
  .step:not(:last-child)::after {
    display: none;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-info {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  
  .hero {
    padding: 130px 0 60px;
  }
  
  .hero-title {
    font-size: 2.3rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .menu-btn {
    display: block;
  }
  
  .nav-list {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px 0;
    box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 999;
    align-items: center;
  }
  
  .nav-list.active {
    transform: translateY(0);
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .cta-title {
    font-size: 2rem;
  }
}
