/*
  Neubrutalism Theme for DevHive Landing Page
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #e0f7fa;
  color: #000000;
  overflow-x: hidden;
}

/* Navigation */
.navbar {
  background: #ffffff;
  border-bottom: 3px solid #000000;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar img {
  height: 50px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #00FFFF;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-buttons {
  display: flex;
  gap: 15px;
  margin-left: 20px;
}

/* Hero Section */
.hero {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: #ffffff;
  border: 2px solid #000000;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
  box-shadow: 3px 3px 0px #000000;
}

.hero h1 {
  font-family: 'Coda Caption', sans-serif;
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 32px;
  color: #333333;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  border: 2.5px solid #000000;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  color: #000000;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.signup-btn {
  background-color: #00FFFF;
  box-shadow: 6px 6px 0px #000000;
}

.signup-btn:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0px #000000;
  background-color: #00E0E0;
}

.login-btn {
  background-color: #ffffff;
  box-shadow: 6px 6px 0px #000000;
}

.login-btn:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0px #000000;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: 'Coda Caption', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #000000;
}

.stat-label {
  font-size: 14px;
  color: #666666;
}

.mockup-wrapper {
  position: relative;
}

.laptop-mockup img {
  width: 100%;
  height: auto;
  border: 3px solid #000000;
  box-shadow: 12px 12px 0px #000000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.laptop-mockup:hover img {
  transform: translate(-6px, -6px);
  box-shadow: 18px 18px 0px #000000;
}

/* Section Styles */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.section-header h2 {
  font-family: 'Coda Caption', sans-serif;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: #666666;
  line-height: 1.6;
}

/* Platform Grid */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 300px));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  justify-content: center;
}

.platform-card {
  background: #ffffff;
  border: 3px solid #000000;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 6px 6px 0px #000000;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.platform-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0px #000000;
  background-color: #f8f9fa;
}

.platform-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2.5px solid #000000;
  padding: 5px;
  background: #ffffff;
  transition: transform 0.3s ease;
}

.platform-card:hover img {
  transform: scale(1.1) rotate(5deg);
}

.platform-card span {
  font-weight: 700;
  font-size: 18px;
  color: #000000;
}

/* Social Section specific styles */
.social-section {
  padding: 80px 0;
  background: #e0f7fa;
}

/* Features Section */
.features {
  padding: 100px 0;
  background: #ffffff;
  border-top: 3px solid #000000;
  border-bottom: 3px solid #000000;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.feature-card {
  background: #ffffff;
  border: 3px solid #000000;
  padding: 30px;
  box-shadow: 8px 8px 0px #000000;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0px #000000;
}

.feature-icon {
  background: #e0f7fa;
  width: 70px;
  height: 70px;
  border: 2.5px solid #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon img {
  width: 35px;
  height: 35px;
}

.feature-card h3 {
  font-family: 'Coda Caption', sans-serif;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #666666;
}

/* CTA Section */
.cta-section {
  padding: 100px 20px;
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: 'Coda Caption', sans-serif;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 18px;
  color: #666666;
  margin-bottom: 32px;
}

/* Footer */
.devhive-footer {
  background: #ffffff;
  border-top: 3px solid #000000;
  padding: 60px 20px 30px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-brand img {
  height: 40px;
}

.footer-brand span {
  font-weight: 600;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-column h4 {
  font-family: 'Coda Caption', sans-serif;
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-column a {
  display: block;
  color: #666666;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: #000000;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #e0e0e0;
}

.footer-bottom p {
  color: #666666;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 20px;
  }

  .hero-subtitle, .hero-stats {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 48px;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
    gap: 30px;
  }

  .footer-brand {
    align-items: center;
  }

  .platform-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
  }

  .platform-card {
    padding: 30px 20px;
  }

  .platform-card img {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 36px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
}
