/* Main Styles for Webinest */

/* Import Inter Tight font */
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@300;400;500;600;700&display=swap');

/* Global styles */
body {
  font-family: 'Inter Tight', sans-serif;
  min-height: 100vh;
  background-color: #f9fafb;
  color: #1f2937;
  line-height: 1.5;
  margin: 0;
}

/* Header and Navigation */
.header-logo {
  width: 160px;
  height: auto;
}

/* Hero Section */
.hero-section {
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.hero-background {
  background: url(../img/wbg.jpg) center center;
  background-size: cover;
  border-bottom: 1px solid #95aeb2;
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  letter-spacing: -0.025em;    
  line-height: 1.33 !important;
}


/* Feature Sections */
.feature-icon {
  background-color: #eff6ff;
  color: #3b82f6;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  width: 2.5rem;
  height: 2.5rem;
}

.feature-title {
  font-weight: 600;
  color: #111827;
}

.feature-description {
  color: #6b7280;
}

/* CTA Section */
.cta-section {
  background-color: #3b82f6;
}

.cta-title {
  font-weight: 700;
  color: white;
}

.cta-description {
  color: #bfdbfe;
}

.cta-button {
  background-color: white;
  color: #3b82f6;
  font-weight: 600;
  transition: all 0.2s ease;
}

.cta-button:hover {
  background-color: #f9fafb;
}

/* Footer */
.footer {
  background-color: #1f2937;
  color: #9ca3af;
}

.footer-title {
  color: white;
  font-weight: 600;
}

.footer-link {
  color: #9ca3af;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: white;
}

.footer-copyright {
  border-top: 1px solid #374151;
}