/* Global Reset & Typography */
body {
  font-family: 'Inter', sans-serif;
  color: #333;
}

/* Navbar */
.main.menu {
  border-radius: 0;
  border: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  background: #fff;
}

.logo-text {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -1px;
  color: #1b1c1d !important;
}

.logo-text span {
  color: #2185d0;
}

.logo-text.inverted {
  color: #fff !important;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

/* Sections */
.section-padding {
  padding: 80px 0 !important;
}

.section-title {
  margin-bottom: 40px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Section */
.hero-bg {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  background-size: cover;
  min-height: 500px;
  display: flex !important;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem !important;
  font-weight: 700 !important;
  margin-bottom: 20px !important;
}

.hero-subtext {
  font-size: 1.3rem;
  opacity: 0.9;
  margin-bottom: 30px !important;
}

/* Cards & Icons */
.icon-wrapper {
  padding: 30px 0;
}

.ui.card {
  box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
  border: none !important;
  transition: transform 0.3s ease;
}

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

.shadow-effect {
  box-shadow: 0 15px 45px rgba(0,0,0,0.15);
}

/* Email Badge */
.email-badge {
  font-size: 1.1rem !important;
  padding: 15px 25px !important;
}

/* Failed Experiments */
.fail-card {
  border-top: 4px solid #db2828 !important;
}

.parts-labels {
  margin-top: 30px !important;
}

.parts-labels .label {
  margin-bottom: 10px !important;
  font-weight: 400 !important;
}

/* Mobile Optimizations */
@media only screen and (max-width: 767px) {
  .hero-content h1 {
    font-size: 2.2rem !important;
  }
  
  .hero-subtext {
    font-size: 1.1rem;
  }
  
  .section-padding {
    padding: 40px 0 !important;
  }

  .hero-bg {
    min-height: 400px;
  }

  .main.menu .logo-text {
    font-size: 1.2rem;
  }

  .ui.stackable.menu .item {
    text-align: center !important;
  }
}

/* Sticky behavior */
.border-less-sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
}
