/* Home Section - Modern Hero */
.home {
  margin-left: var(--sidebar-width);
  min-height: 100vh;
  width: calc(100% - var(--sidebar-width));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  background: linear-gradient(135deg, #0f172a 0%, #1e40af 30%, #3b82f6 70%, #14b8a6 100%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.3);
}

.home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.4) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(20, 184, 166, 0.4) 0%, transparent 50%),
              radial-gradient(circle at 50% 20%, rgba(147, 197, 253, 0.2) 0%, transparent 70%);
  pointer-events: none;
  animation: gradientShift 20s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

.hello {
  color: rgba(255, 255, 255, 0.95);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--font-primary);
  margin-bottom: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.me {
  color: var(--text-light);
  font-size: 72px;
  font-family: var(--font-heading);
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.1;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  letter-spacing: -0.02em;
}

.tagline {
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font-primary);
  margin-bottom: 25px;
  max-width: 600px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.flex {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.header-sub-title {
  color: rgba(255, 255, 255, 0.95);
  font-family: var(--font-primary);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-right: 5px;
}

.icons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.icons a {
  color: var(--text-light);
  font-size: 28px;
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transition: all var(--transition-speed);
  backdrop-filter: blur(10px);
}

.icons a:hover {
  background: var(--text-light);
  color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.learn {
  position: relative;
  z-index: 1;
}

.btn {
  border: none;
  background: var(--text-light);
  color: var(--primary-color);
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border-radius: var(--border-radius);
  transition: all var(--transition-speed);
  font-family: var(--font-primary);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.3px;
}

.default {
  background: var(--text-light);
  color: var(--primary-color);
}

.default:hover {
  background: var(--accent-color);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
}

